blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
247
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
4
111
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
58
visit_date
timestamp[ns]date
2015-07-25 18:16:41
2023-09-06 10:45:08
revision_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
committer_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
github_id
int64
3.89k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
25 values
gha_event_created_at
timestamp[ns]date
2012-06-07 00:51:45
2023-09-14 21:58:52
gha_created_at
timestamp[ns]date
2008-03-27 23:40:48
2023-08-24 19:49:39
gha_language
stringclasses
159 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
10.5M
extension
stringclasses
111 values
filename
stringlengths
1
195
text
stringlengths
7
10.5M
799a2f36274ec5ca82a1fe2711a46a156a80bd0a
e06e60fe26547384e78109e71f64faaf3017f55c
/Interface/DialogVnRConfig.h
98ef83c0cfa3b2404aa4655f413ffd2a6342327d
[]
no_license
ybs0111/AMT840_Interface
448f373529d9d544272893d0d542c171e906dfde
deea5cc6e51f887df25fc371bfd3c71482fe061a
refs/heads/master
2021-01-11T17:27:34.106193
2017-01-23T05:37:22
2017-01-23T05:37:22
79,773,395
0
0
null
null
null
null
UHC
C++
false
false
942
h
DialogVnRConfig.h
#pragma once #include ".\\Ctrl\Grid\\GridCtrl.h" #include ".\\Ctrl\\BtnST.h" #include ".\\Ctrl\\GradientStatic.h" // CDialogVnRConfig 대화 상자입니다. class CDialogVnRConfig : public CDialog { DECLARE_DYNAMIC(CDialogVnRConfig) public: CGradientStatic m_msgPort; CGradientStatic m_msgPortData; CGradientStatic m_msgChan; CGradientStatic m_msgChanData; CButtonST m_btnExit; void OnInitButton(); void OnInitLabel(); public: CDialogVnRConfig(CWnd* pParent = NULL); // 표준 생성자입니다. virtual ~CDialogVnRConfig(); // 대화 상자 데이터입니다. enum { IDD = IDD_DIALOG_VNR_CONFIG }; protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원입니다. DECLARE_MESSAGE_MAP() public: virtual BOOL OnInitDialog(); virtual BOOL DestroyWindow(); afx_msg void OnStnClickedMsgPortData(); afx_msg void OnBnClickedBtnExit(); afx_msg void OnStnClickedMsgChanData(); };
7c0c1b26ca49fa9e382b18e5265d51562104fd3b
590ad531651d7f5f5f73baa1b3ac36866877104b
/tuxbox/neutrino/src/driver/lcdd.cpp
f70dd596768dba1392e2b2704a101729a24556c3
[]
no_license
ChakaZulu/tuxbox_apps
1217f53e3adc27227e0ed07de4778120e294f574
1a28fedaecef864ecc7d696b739795321ea3bdb1
refs/heads/master
2021-01-23T17:20:36.229379
2009-12-30T13:38:15
2009-12-30T13:38:15
129,129
10
0
null
null
null
null
UTF-8
C++
false
false
38,341
cpp
lcdd.cpp
/* $Id: lcdd.cpp,v 1.84 2009/10/22 20:07:48 seife Exp $ LCD-Daemon - DBoxII-Project Copyright (C) 2001 Steffen Hehn 'McClean' Homepage: http://dbox.cyberphoria.org/ Copyright (C) 2008 Novell, Inc. Author: Stefan Seyfried (C) 2009 Stefan Seyfried License: GPL This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <driver/lcdd.h> #include <global.h> #include <neutrino.h> #include <system/settings.h> #include <driver/encoding.h> #include <driver/newclock.h> #include <lcddisplay/lcddisplay.h> #include <gui/widget/icons.h> #if defined HAVE_DBOX_HARDWARE || defined HAVE_DREAMBOX_HARDWARE || defined HAVE_IPBOX_HARDWARE #include <dbox/fp.h> #endif #include <fcntl.h> #include <time.h> #include <unistd.h> #include <daemonc/remotecontrol.h> extern CRemoteControl * g_RemoteControl; /* neutrino.cpp */ CLCD::CLCD() : configfile('\t') { #ifdef LCD_UPDATE m_fileList = NULL; m_fileListPos = 0; m_fileListHeader = ""; m_infoBoxText = ""; m_infoBoxAutoNewline = 0; m_progressShowEscape = 0; m_progressHeaderGlobal = ""; m_progressHeaderLocal = ""; m_progressGlobal = 0; m_progressLocal = 0; #endif // LCD_UPDATE muted = false; percentOver = 0; volume = 0; timeout_cnt = 0; } CLCD* CLCD::getInstance() { static CLCD* lcdd = NULL; if(lcdd == NULL) { lcdd = new CLCD(); } return lcdd; } void CLCD::count_down() { if (timeout_cnt > 0) { timeout_cnt--; if (timeout_cnt == 0) { setlcdparameter(); } } } void CLCD::wake_up() { if (atoi(g_settings.lcd_setting_dim_time) > 0) { timeout_cnt = atoi(g_settings.lcd_setting_dim_time); setlcdparameter(); } } #ifndef BOXMODEL_DM500 void* CLCD::TimeThread(void *) { while(1) { sleep(1); struct stat buf; if (stat("/tmp/lcd.locked", &buf) == -1) { CLCD::getInstance()->showTime(); CLCD::getInstance()->count_down(); } else CLCD::getInstance()->wake_up(); } return NULL; } #else // there is no LCD on DM500, so let's use the timethread for blinking the LED during record void* CLCD::TimeThread(void *) { int led = 0; int old_led = 0; int led_fd = open("/dev/dbox/fp0", O_RDWR); if (led_fd < 0) { perror("CLCD::TimeThread: /dev/dbox/fp0"); return NULL; } // printf("CLCD:TimeThread dm500 led_fd: %d\n",led_fd); while(1) { sleep(1); if (CNeutrinoApp::getInstance()->recordingstatus) led = !led; else led = (CLCD::getInstance()->mode == MODE_STANDBY); if (led != old_led) { //printf("CLCD:TimeThread ioctl(led_fd,11, &%d)\n",led); ioctl(led_fd, 11, &led); old_led = led; } } return NULL; } #endif void CLCD::init(const char * fontfile, const char * fontname, const char * fontfile2, const char * fontname2, const char * fontfile3, const char * fontname3) { InitNewClock(); if (!lcdInit(fontfile, fontname, fontfile2, fontname2, fontfile3, fontname3 )) { printf("[lcdd] LCD-Init failed!\n"); #ifndef BOXMODEL_DM500 // on the dm500, we need the timethread for the front LEDs return; #endif } if (pthread_create (&thrTime, NULL, TimeThread, NULL) != 0 ) { perror("[lcdd]: pthread_create(TimeThread)"); return ; } } enum backgrounds { BACKGROUND_SETUP = 0, BACKGROUND_POWER = 1, BACKGROUND_LCD2 = 2, BACKGROUND_LCD3 = 3, BACKGROUND_LCD = 4, BACKGROUND_LCD4 = 5 }; const char * const background_name[LCD_NUMBER_OF_BACKGROUNDS] = { "setup", "power", "lcd2", "lcd3", "lcd", "lcd4" }; #define NUMBER_OF_PATHS 2 const char * const background_path[NUMBER_OF_PATHS] = { LCDDIR_VAR , DATADIR "/lcdd/icons/" }; bool CLCD::lcdInit(const char * fontfile, const char * fontname, const char * fontfile2, const char * fontname2, const char * fontfile3, const char * fontname3) { fontRenderer = new LcdFontRenderClass(&display); const char * style_name = fontRenderer->AddFont(fontfile); const char * style_name2; const char * style_name3; if (fontfile2 != NULL) style_name2 = fontRenderer->AddFont(fontfile2); else { style_name2 = style_name; fontname2 = fontname; } if (fontfile3 != NULL) style_name3 = fontRenderer->AddFont(fontfile3); else { style_name3 = style_name; fontname3 = fontname; } fontRenderer->InitFontCache(); fonts.menu = fontRenderer->getFont(fontname, style_name , 12); fonts.time = fontRenderer->getFont(fontname2, style_name2, 14); fonts.channelname = fontRenderer->getFont(fontname3, style_name3, 15); fonts.menutitle = fonts.channelname; setAutoDimm(g_settings.lcd_setting[SNeutrinoSettings::LCD_AUTODIMM]); if (!display.isAvailable()) { printf("[lcdd] exit...(no lcd-support)\n"); return false; } for (int i = 0; i < LCD_NUMBER_OF_BACKGROUNDS; i++) { for (int j = 0; j < NUMBER_OF_PATHS; j++) { std::string file = background_path[j]; file += background_name[i]; file += ".png"; if (display.load_png(file.c_str())) goto found; } printf("[neutrino/lcd] no valid %s background.\n", background_name[i]); return false; found: display.dump_screen(&(background[i])); } setMode(MODE_TVRADIO); return true; } void CLCD::displayUpdate() { struct stat buf; if (stat("/tmp/lcd.locked", &buf) == -1) display.update(); } #ifndef HAVE_TRIPLEDRAGON void CLCD::setlcdparameter(int dimm, const int contrast, const int power, const int inverse, const int bias) { #if defined HAVE_DBOX_HARDWARE || defined HAVE_DREAMBOX_HARDWARE || defined HAVE_IPBOX_HARDWARE if (!display.isAvailable()) return; int fd; if (power == 0) dimm = 0; if ((fd = open("/dev/dbox/fp0", O_RDWR)) == -1) { perror("[lcdd] open '/dev/dbox/fp0' failed"); } else { if (ioctl(fd, FP_IOCTL_LCD_DIMM, &dimm) < 0) { perror("[lcdd] set dimm failed!"); } close(fd); } if ((fd = open("/dev/dbox/lcd0", O_RDWR)) == -1) { perror("[lcdd] open '/dev/dbox/lcd0' failed"); } else { if (ioctl(fd, LCD_IOCTL_SRV, &contrast) < 0) { perror("[lcdd] set contrast failed!"); } if (ioctl(fd, LCD_IOCTL_ON, &power) < 0) { perror("[lcdd] set power failed!"); } if (ioctl(fd, LCD_IOCTL_REVERSE, &inverse) < 0) { perror("[lcdd] set invert failed!"); } if (g_info.box_Type == CControld::TUXBOX_MAKER_PHILIPS) { if (ioctl(fd, LCD_IOCTL_BIAS, &bias) < 0) { perror("[lcdd] set bias failed!"); } } close(fd); } #endif } #else void CLCD::setlcdparameter(int dimm, const int contrast, const int power, const int inverse, const int bias) { int fd = open("/dev/" DEVICE_NAME_LCD, O_RDWR); if (fd < 0) { perror("CLCD::setlcdparameter open " DEVICE_NAME_LCD); return; } if (ioctl(fd, IOC_LCD_INVERS, inverse & 1) < 0) perror("CLCD::setlcdparameter ioctl IOC_LCD_INVERS"); if (ioctl(fd, IOC_LCD_POTI, contrast) < 0) perror("CLCD::setlcdparameter ioctl IOC_LCD_POTI"); close(fd); } #endif void CLCD::setlcdparameter(void) { last_toggle_state_power = g_settings.lcd_setting[SNeutrinoSettings::LCD_POWER]; int dim_time = atoi(g_settings.lcd_setting_dim_time); int dim_brightness = atoi(g_settings.lcd_setting_dim_brightness); bool timeouted = (dim_time > 0) && (timeout_cnt == 0); int brightness, power = 0; if (timeouted) brightness = dim_brightness; else brightness = g_settings.lcd_setting[SNeutrinoSettings::LCD_BRIGHTNESS]; if (last_toggle_state_power && (!timeouted || dim_brightness > 0)) power = 1; if (mode == MODE_STANDBY) brightness = g_settings.lcd_setting[SNeutrinoSettings::LCD_STANDBY_BRIGHTNESS]; setlcdparameter(brightness, g_settings.lcd_setting[SNeutrinoSettings::LCD_CONTRAST], power, g_settings.lcd_setting[SNeutrinoSettings::LCD_INVERSE], g_settings.lcd_setting[SNeutrinoSettings::LCD_BIAS]); } static std::string removeLeadingSpaces(const std::string & text) { int pos = text.find_first_not_of(" "); if (pos != -1) return text.substr(pos); return text; } static std::string splitString(const std::string & text, const int maxwidth, LcdFont *font, bool dumb, bool utf8) { int pos; std::string tmp = removeLeadingSpaces(text); if (font->getRenderWidth(tmp.c_str(), utf8) > maxwidth) { do { if (dumb) tmp = tmp.substr(0, tmp.length()-1); else { pos = tmp.find_last_of("[ .-]+"); // TODO characters might be UTF-encoded! if (pos != -1) tmp = tmp.substr(0, pos); else // does not fit -> fall back to dumb split tmp = tmp.substr(0, tmp.length()-1); } } while (font->getRenderWidth(tmp.c_str(), utf8) > maxwidth); } return tmp; } /* display "big" and "small" text. TODO: right now, "big" is hardcoded as utf-8, small is not (for EPG) */ void CLCD::showTextScreen(const std::string & big, const std::string & small, const int showmode, const bool perform_wakeup, const bool centered) { /* the "showmode" variable is a bit map: 0x01 show "big" string 0x02 show "small" string 0x04 show separator line if big and small are present / shown 0x08 show only one line of "big" string */ /* draw_fill_rect is braindead: it actually fills _inside_ the described rectangle, so that you have to give it one pixel additionally in every direction ;-( this is where the "-1 to 120" intead of "0 to 119" comes from */ display.draw_fill_rect(-1, 10, LCD_COLS, 51, CLCDDisplay::PIXEL_OFF); bool big_utf8 = false; bool small_utf8 = false; std::string cname[2]; std::string event[4]; int namelines = 0, eventlines = 0, maxnamelines = 2; if (showmode & 8) maxnamelines = 1; if ((showmode & 1) && !big.empty()) { bool dumb = false; big_utf8 = isUTF8(big); while (true) { namelines = 0; std::string title = big; do { // first try "intelligent" splitting cname[namelines] = splitString(title, LCD_COLS, fonts.channelname, dumb, big_utf8); title = removeLeadingSpaces(title.substr(cname[namelines].length())); namelines++; } while (title.length() > 0 && namelines < maxnamelines); if (title.length() == 0) break; dumb = !dumb; // retry with dumb splitting; if (!dumb) // second retry -> get out; break; } } // one nameline => 2 eventlines, 2 namelines => 1 eventline int maxeventlines = 4 - (namelines * 3 + 1) / 2; if ((showmode & 2) && !small.empty()) { bool dumb = false; small_utf8 = isUTF8(small); while (true) { eventlines = 0; std::string title = small; do { // first try "intelligent" splitting event[eventlines] = splitString(title, LCD_COLS, fonts.menu, dumb, small_utf8); title = removeLeadingSpaces(title.substr(event[eventlines].length())); /* DrDish TV appends a 0x0a to the EPG title. We could strip it in sectionsd... ...instead, strip all control characters at the end of the text for now */ if (event[eventlines].length() > 0 && event[eventlines].at(event[eventlines].length() - 1) < ' ') event[eventlines].erase(event[eventlines].length() - 1); eventlines++; } while (title.length() >0 && eventlines < maxeventlines); if (title.length() == 0) break; dumb = !dumb; // retry with dumb splitting; if (!dumb) // second retry -> get out; break; } } /* this values were determined empirically */ int y = 8 + (41 - namelines*14 - eventlines*10)/2; int x = 1; for (int i = 0; i < namelines; i++) { y += 14; if (centered) { int w = fonts.channelname->getRenderWidth(cname[i].c_str(), big_utf8); x = (LCD_COLS - w) / 2; } fonts.channelname->RenderString(x, y, LCD_COLS + 10, cname[i].c_str(), CLCDDisplay::PIXEL_ON, 0, big_utf8); } y++; if (eventlines > 0 && namelines > 0 && showmode & 4) { y++; display.draw_line(0, y, LCD_COLS - 1, y, CLCDDisplay::PIXEL_ON); } if (eventlines > 0) { for (int i = 0; i < eventlines; i++) { y += 10; if (centered) { int w = fonts.menu->getRenderWidth(event[i].c_str(), small_utf8); x = (LCD_COLS - w) / 2; } fonts.menu->RenderString(x, y, LCD_COLS + 10, event[i].c_str(), CLCDDisplay::PIXEL_ON, 0, small_utf8); } } if (perform_wakeup) wake_up(); displayUpdate(); } void CLCD::showServicename(const std::string name, const bool perform_wakeup) { /* 1 = show servicename 2 = show epg title 4 = draw separator line between name and EPG */ int showmode = g_settings.lcd_setting[SNeutrinoSettings::LCD_EPGMODE]; //printf("CLCD::showServicename '%s' epg: '%s'\n", name.c_str(), epg_title.c_str()); if (!name.empty()) servicename = name; if (mode != MODE_TVRADIO) return; showTextScreen(servicename, epg_title, showmode, perform_wakeup, true); return; } void CLCD::setEPGTitle(const std::string title) { if (title == epg_title) { //fprintf(stderr,"CLCD::setEPGTitle: not changed\n"); return; } epg_title = title; showServicename("", false); } void CLCD::setMovieInfo(const AUDIOMODES playmode, const std::string big, const std::string small, const bool centered) { int showmode = g_settings.lcd_setting[SNeutrinoSettings::LCD_EPGMODE]; showmode |= 3; // take only the separator line from the config movie_playmode = playmode; movie_big = big; movie_small = small; movie_centered = centered; if (mode != MODE_MOVIE) return; showAudioPlayMode(movie_playmode); showTextScreen(movie_big, movie_small, showmode, true, movie_centered); } void CLCD::setMovieAudio(const bool is_ac3) { movie_is_ac3 = is_ac3; if (mode != MODE_MOVIE) return; showPercentOver(percentOver, true, MODE_MOVIE); } void CLCD::showTime() { if (showclock) { char timestr[21]; struct timeval tm; struct tm * t; gettimeofday(&tm, NULL); t = localtime(&tm.tv_sec); if (mode == MODE_STANDBY) { display.draw_fill_rect(-1, -1, LCD_COLS, 64, CLCDDisplay::PIXEL_OFF); // clear lcd ShowNewClock(&display, t->tm_hour, t->tm_min, t->tm_sec, t->tm_wday, t->tm_mday, t->tm_mon); } else { if (CNeutrinoApp::getInstance ()->recordingstatus && clearClock == 1) { strcpy(timestr," : "); clearClock = 0; } else { strftime((char*) &timestr, 20, "%H:%M", t); clearClock = 1; } display.draw_fill_rect (77, 50, LCD_COLS, 64, CLCDDisplay::PIXEL_OFF); fonts.time->RenderString(122 - fonts.time->getRenderWidth(timestr), 62, 50, timestr, CLCDDisplay::PIXEL_ON); } displayUpdate(); } } void CLCD::showRCLock(int duration) { std::string icon = DATADIR "/lcdd/icons/rclock.raw"; raw_display_t curr_screen; // Saving the whole screen is not really nice since the clock is updated // every second. Restoring the screen can cause a short travel to the past ;) display.dump_screen(&curr_screen); display.draw_fill_rect (-1, 10, LCD_COLS, 50, CLCDDisplay::PIXEL_OFF); display.paintIcon(icon,44,25,false); wake_up(); displayUpdate(); sleep(duration); display.load_screen(&curr_screen); wake_up(); displayUpdate(); } void CLCD::showVolume(const char vol, const bool perform_update) { volume = vol; if ( ((mode == MODE_TVRADIO) && (g_settings.lcd_setting[SNeutrinoSettings::LCD_SHOW_VOLUME])) || ((mode == MODE_MOVIE) && (g_settings.lcd_setting[SNeutrinoSettings::LCD_SHOW_VOLUME])) || (mode == MODE_SCART) || (mode == MODE_AUDIO) ) { display.draw_fill_rect (11,53,73,61, CLCDDisplay::PIXEL_OFF); //strichlin if ((muted) || (volume==0)) { display.draw_line (12,55,72,59, CLCDDisplay::PIXEL_ON); } else { int dp = vol*61/100+12; display.draw_fill_rect (11,54,dp,60, CLCDDisplay::PIXEL_ON); } if(mode == MODE_AUDIO) { display.draw_fill_rect (-1, 51, 10, 62, CLCDDisplay::PIXEL_OFF); display.draw_rectangle ( 1, 55, 3, 58, CLCDDisplay::PIXEL_ON, CLCDDisplay::PIXEL_OFF); display.draw_line ( 3, 55, 6, 52, CLCDDisplay::PIXEL_ON); display.draw_line ( 3, 58, 6, 61, CLCDDisplay::PIXEL_ON); display.draw_line ( 6, 54, 6, 59, CLCDDisplay::PIXEL_ON); } if (perform_update) displayUpdate(); } wake_up(); } void CLCD::showPercentOver(const unsigned char perc, const bool perform_update, const MODES m) { if (mode != m) return; int left, top, width, height = 5; bool draw = true; percentOver = perc; if (mode == MODE_TVRADIO || mode == MODE_MOVIE) { if (g_settings.lcd_setting[SNeutrinoSettings::LCD_SHOW_VOLUME] == 0) { left = 12; top = 55; width = 60; } else if (g_settings.lcd_setting[SNeutrinoSettings::LCD_SHOW_VOLUME] == 2) { left = 12; top = 3; width = 104; } else if (g_settings.lcd_setting[SNeutrinoSettings::LCD_SHOW_VOLUME] == 3) { left = 12; top = 3; width = 84; if ((g_RemoteControl != NULL && mode == MODE_TVRADIO) || mode == MODE_MOVIE) { bool is_ac3; if (mode == MODE_MOVIE) is_ac3 = movie_is_ac3; else { uint count = g_RemoteControl->current_PIDs.APIDs.size(); if ((g_RemoteControl->current_PIDs.PIDs.selected_apid < count) && (g_RemoteControl->current_PIDs.APIDs[g_RemoteControl->current_PIDs.PIDs.selected_apid].is_ac3)) is_ac3 = true; else is_ac3 = false; } const char * icon; if (is_ac3) icon = DATADIR "/lcdd/icons/dd.raw"; else icon = DATADIR "/lcdd/icons/stereo.raw"; display.paintIcon(icon, 101, 1, false); } } else draw = false; if (draw) { display.draw_fill_rect (left-1, top-1, left+width+1, top+height, CLCDDisplay::PIXEL_OFF); if (perc == (unsigned char) -1) { display.draw_line (left, top, left+width, top+height-1, CLCDDisplay::PIXEL_ON); } else { int dp; if (perc == (unsigned char) -2) dp = width+1; else dp = perc * (width + 1) / 100; display.draw_fill_rect (left-1, top-1, left+dp, top+height, CLCDDisplay::PIXEL_ON); if (perc == (unsigned char) -2) { // draw a "+" to show that the event is overdue display.draw_line(left+width-2, top+1, left+width-2, top+height-2, CLCDDisplay::PIXEL_OFF); display.draw_line(left+width-1, top+(height/2), left+width-3, top+(height/2), CLCDDisplay::PIXEL_OFF); } } } if (perform_update) displayUpdate(); } } void CLCD::showMenuText(const int position, const char * text, const int highlight, const bool utf_encoded) { if (mode != MODE_MENU_UTF8) return; // reload specified line display.draw_fill_rect(-1, 35+14*position, LCD_COLS, 35+14+14*position, CLCDDisplay::PIXEL_OFF); fonts.menu->RenderString(0,35+11+14*position, LCD_COLS + 20, text, CLCDDisplay::PIXEL_INV, highlight, utf_encoded); wake_up(); displayUpdate(); } void CLCD::showAudioTrack(const std::string & artist, const std::string & title, const std::string & album) { if (mode != MODE_AUDIO) { return; } // reload specified line display.draw_fill_rect (-1, 10, LCD_COLS, 24, CLCDDisplay::PIXEL_OFF); display.draw_fill_rect (-1, 20, LCD_COLS, 37, CLCDDisplay::PIXEL_OFF); display.draw_fill_rect (-1, 33, LCD_COLS, 50, CLCDDisplay::PIXEL_OFF); fonts.menu->RenderString(0, 22, LCD_COLS + 5, artist.c_str(), CLCDDisplay::PIXEL_ON, 0, isUTF8(artist)); fonts.menu->RenderString(0, 35, LCD_COLS + 5, album.c_str(), CLCDDisplay::PIXEL_ON, 0, isUTF8(album)); fonts.menu->RenderString(0, 48, LCD_COLS + 5, title.c_str(), CLCDDisplay::PIXEL_ON, 0, isUTF8(title)); wake_up(); displayUpdate(); } void CLCD::showAudioPlayMode(AUDIOMODES m) { display.draw_fill_rect (-1,51,10,62, CLCDDisplay::PIXEL_OFF); switch(m) { case AUDIO_MODE_PLAY: { int x=3,y=53; display.draw_line(x ,y ,x ,y+8, CLCDDisplay::PIXEL_ON); display.draw_line(x+1,y+1,x+1,y+7, CLCDDisplay::PIXEL_ON); display.draw_line(x+2,y+2,x+2,y+6, CLCDDisplay::PIXEL_ON); display.draw_line(x+3,y+3,x+3,y+5, CLCDDisplay::PIXEL_ON); display.draw_line(x+4,y+4,x+4,y+4, CLCDDisplay::PIXEL_ON); break; } case AUDIO_MODE_STOP: display.draw_fill_rect (1, 53, 8 ,61, CLCDDisplay::PIXEL_ON); break; case AUDIO_MODE_PAUSE: display.draw_line(1,54,1,60, CLCDDisplay::PIXEL_ON); display.draw_line(2,54,2,60, CLCDDisplay::PIXEL_ON); display.draw_line(6,54,6,60, CLCDDisplay::PIXEL_ON); display.draw_line(7,54,7,60, CLCDDisplay::PIXEL_ON); break; case AUDIO_MODE_FF: { int x=2,y=55; display.draw_line(x ,y , x , y+4, CLCDDisplay::PIXEL_ON); display.draw_line(x+1 ,y+1 , x+1, y+3, CLCDDisplay::PIXEL_ON); display.draw_line(x+2 ,y+2 , x+2, y+2, CLCDDisplay::PIXEL_ON); display.draw_line(x+3 ,y , x+3, y+4, CLCDDisplay::PIXEL_ON); display.draw_line(x+4 ,y+1 , x+4, y+3, CLCDDisplay::PIXEL_ON); display.draw_line(x+5 ,y+2 , x+5, y+2, CLCDDisplay::PIXEL_ON); } break; case AUDIO_MODE_REV: { int x=2,y=55; display.draw_line(x ,y+2 , x , y+2, CLCDDisplay::PIXEL_ON); display.draw_line(x+1 ,y+1 , x+1, y+3, CLCDDisplay::PIXEL_ON); display.draw_line(x+2 ,y , x+2, y+4, CLCDDisplay::PIXEL_ON); display.draw_line(x+3 ,y+2 , x+3, y+2, CLCDDisplay::PIXEL_ON); display.draw_line(x+4 ,y+1 , x+4, y+3, CLCDDisplay::PIXEL_ON); display.draw_line(x+5 ,y , x+5, y+4, CLCDDisplay::PIXEL_ON); } break; } wake_up(); displayUpdate(); } void CLCD::showAudioProgress(const char perc, bool isMuted) { if (mode == MODE_AUDIO) { display.draw_fill_rect (11,53,73,61, CLCDDisplay::PIXEL_OFF); int dp = int( perc/100.0*61.0+12.0); display.draw_fill_rect (11,54,dp,60, CLCDDisplay::PIXEL_ON); if(isMuted) { if(dp > 12) { display.draw_line(12, 56, dp-1, 56, CLCDDisplay::PIXEL_OFF); display.draw_line(12, 58, dp-1, 58, CLCDDisplay::PIXEL_OFF); } else display.draw_line (12,55,72,59, CLCDDisplay::PIXEL_ON); } displayUpdate(); } } void CLCD::setMode(const MODES m, const char * const title) { mode = m; menutitle = title; setlcdparameter(); switch (m) { case MODE_TVRADIO: case MODE_MOVIE: switch (g_settings.lcd_setting[SNeutrinoSettings::LCD_SHOW_VOLUME]) { case 0: display.load_screen(&(background[BACKGROUND_LCD2])); showPercentOver(percentOver, false, mode); break; case 1: display.load_screen(&(background[BACKGROUND_LCD])); showVolume(volume, false); break; case 2: display.load_screen(&(background[BACKGROUND_LCD3])); showVolume(volume, false); showPercentOver(percentOver, false, mode); break; case 3: display.load_screen(&(background[BACKGROUND_LCD4])); showVolume(volume, false); showPercentOver(percentOver, false, mode); break; default: break; } if (mode == MODE_TVRADIO) showServicename(servicename); else { setMovieInfo(movie_playmode, movie_big, movie_small, movie_centered); setMovieAudio(movie_is_ac3); } showclock = true; showTime(); /* "showclock = true;" implies that "showTime();" does a "displayUpdate();" */ break; case MODE_AUDIO: { display.load_screen(&(background[BACKGROUND_LCD])); display.draw_fill_rect(0, 14, LCD_COLS, 48, CLCDDisplay::PIXEL_OFF); showAudioPlayMode(AUDIO_MODE_STOP); showVolume(volume, false); showclock = true; showTime(); /* "showclock = true;" implies that "showTime();" does a "displayUpdate();" */ break; } case MODE_SCART: display.load_screen(&(background[BACKGROUND_LCD])); showVolume(volume, false); showclock = true; showTime(); /* "showclock = true;" implies that "showTime();" does a "displayUpdate();" */ break; case MODE_MENU_UTF8: showclock = false; display.load_screen(&(background[BACKGROUND_SETUP])); fonts.menutitle->RenderString(0, 28, LCD_COLS + 20, title, CLCDDisplay::PIXEL_ON, 0, true); // UTF-8 displayUpdate(); break; case MODE_SHUTDOWN: showclock = false; display.load_screen(&(background[BACKGROUND_POWER])); displayUpdate(); break; case MODE_STANDBY: showclock = true; showTime(); /* "showclock = true;" implies that "showTime();" does a "displayUpdate();" */ /* "showTime()" clears the whole lcd in MODE_STANDBY */ break; #ifdef LCD_UPDATE case MODE_FILEBROWSER: showclock = true; display.draw_fill_rect(-1, -1, LCD_COLS, 64, CLCDDisplay::PIXEL_OFF); // clear lcd showFilelist(); break; case MODE_PROGRESSBAR: showclock = false; display.load_screen(&(background[BACKGROUND_SETUP])); showProgressBar(); break; case MODE_PROGRESSBAR2: showclock = false; display.load_screen(&(background[BACKGROUND_SETUP])); showProgressBar2(); break; case MODE_INFOBOX: showclock = false; showInfoBox(); break; #endif // LCD_UPDATE } wake_up(); } void CLCD::setBrightness(int bright) { g_settings.lcd_setting[SNeutrinoSettings::LCD_BRIGHTNESS] = bright; setlcdparameter(); } int CLCD::getBrightness() { return g_settings.lcd_setting[SNeutrinoSettings::LCD_BRIGHTNESS]; } void CLCD::setBrightnessStandby(int bright) { g_settings.lcd_setting[SNeutrinoSettings::LCD_STANDBY_BRIGHTNESS] = bright; setlcdparameter(); } int CLCD::getBrightnessStandby() { return g_settings.lcd_setting[SNeutrinoSettings::LCD_STANDBY_BRIGHTNESS]; } void CLCD::setContrast(int contrast) { g_settings.lcd_setting[SNeutrinoSettings::LCD_CONTRAST] = contrast; setlcdparameter(); } int CLCD::getContrast() { return g_settings.lcd_setting[SNeutrinoSettings::LCD_CONTRAST]; } void CLCD::setPower(int power) { g_settings.lcd_setting[SNeutrinoSettings::LCD_POWER] = power; setlcdparameter(); } int CLCD::getPower() { return g_settings.lcd_setting[SNeutrinoSettings::LCD_POWER]; } void CLCD::togglePower(void) { last_toggle_state_power = 1 - last_toggle_state_power; setlcdparameter((mode == MODE_STANDBY) ? g_settings.lcd_setting[SNeutrinoSettings::LCD_STANDBY_BRIGHTNESS] : g_settings.lcd_setting[SNeutrinoSettings::LCD_BRIGHTNESS], g_settings.lcd_setting[SNeutrinoSettings::LCD_CONTRAST], last_toggle_state_power, g_settings.lcd_setting[SNeutrinoSettings::LCD_INVERSE], g_settings.lcd_setting[SNeutrinoSettings::LCD_BIAS]); } void CLCD::setInverse(int inverse) { g_settings.lcd_setting[SNeutrinoSettings::LCD_INVERSE] = inverse; setlcdparameter(); } int CLCD::getInverse() { return g_settings.lcd_setting[SNeutrinoSettings::LCD_INVERSE]; } void CLCD::setAutoDimm(int autodimm) { #ifdef HAVE_DBOX_HARDWARE int fd; g_settings.lcd_setting[SNeutrinoSettings::LCD_AUTODIMM] = autodimm; if ((fd = open("/dev/dbox/fp0", O_RDWR)) == -1) { perror("[lcdd] open '/dev/dbox/fp0' failed"); } else { if( ioctl(fd, FP_IOCTL_LCD_AUTODIMM, &autodimm) < 0 ) { perror("[lcdd] set autodimm failed!"); } close(fd); } #endif } int CLCD::getAutoDimm() { return g_settings.lcd_setting[SNeutrinoSettings::LCD_AUTODIMM]; } void CLCD::setMuted(bool mu) { muted = mu; showVolume(volume); } void CLCD::resume() { display.resume(); } void CLCD::pause() { display.pause(); } #ifdef LCD_UPDATE /*****************************************************************************************/ // showInfoBox /*****************************************************************************************/ #define LCD_WIDTH LCD_COLS #define LCD_HEIGTH 64 #define EPG_INFO_FONT_HEIGHT 9 #define EPG_INFO_SHADOW_WIDTH 1 #define EPG_INFO_LINE_WIDTH 1 #define EPG_INFO_BORDER_WIDTH 2 #define EPG_INFO_WINDOW_POS 4 #define EPG_INFO_LINE_POS EPG_INFO_WINDOW_POS + EPG_INFO_SHADOW_WIDTH #define EPG_INFO_BORDER_POS EPG_INFO_WINDOW_POS + EPG_INFO_SHADOW_WIDTH + EPG_INFO_LINE_WIDTH #define EPG_INFO_TEXT_POS EPG_INFO_WINDOW_POS + EPG_INFO_SHADOW_WIDTH + EPG_INFO_LINE_WIDTH + EPG_INFO_BORDER_WIDTH #define EPG_INFO_TEXT_WIDTH LCD_WIDTH - (2*EPG_INFO_WINDOW_POS) // timer 0: OFF, timer>0 time to show in seconds, timer>=999 endless void CLCD::showInfoBox(const char * const title, const char * const text ,int autoNewline,int timer) { //printf("[lcdd] Info: \n"); if(text != NULL) m_infoBoxText = text; if(title != NULL) m_infoBoxTitle = title; if(timer != -1) m_infoBoxTimer = timer; if(autoNewline != -1) m_infoBoxAutoNewline = autoNewline; //printf("[lcdd] Info: %s,%s,%d,%d\n",m_infoBoxTitle.c_str(),m_infoBoxText.c_str(),m_infoBoxAutoNewline,m_infoBoxTimer); if( mode == MODE_INFOBOX && !m_infoBoxText.empty()) { // paint empty box display.draw_fill_rect (EPG_INFO_WINDOW_POS, EPG_INFO_WINDOW_POS, LCD_WIDTH-EPG_INFO_WINDOW_POS+1, LCD_HEIGTH-EPG_INFO_WINDOW_POS+1, CLCDDisplay::PIXEL_OFF); display.draw_fill_rect (EPG_INFO_LINE_POS, EPG_INFO_LINE_POS, LCD_WIDTH-EPG_INFO_LINE_POS-1, LCD_HEIGTH-EPG_INFO_LINE_POS-1, CLCDDisplay::PIXEL_ON); display.draw_fill_rect (EPG_INFO_BORDER_POS, EPG_INFO_BORDER_POS, LCD_WIDTH-EPG_INFO_BORDER_POS-3, LCD_HEIGTH-EPG_INFO_BORDER_POS-3, CLCDDisplay::PIXEL_OFF); // paint title if(!m_infoBoxTitle.empty()) { int width = fonts.menu->getRenderWidth(m_infoBoxTitle.c_str(),true); if(width > LCD_COLS - 20) width = LCD_COLS - 20; int start_pos = (LCD_COLS - width) /2; display.draw_fill_rect (start_pos, EPG_INFO_WINDOW_POS-4, start_pos+width+5, EPG_INFO_WINDOW_POS+10, CLCDDisplay::PIXEL_OFF); fonts.menu->RenderString(start_pos+4,EPG_INFO_WINDOW_POS+5, width+5, m_infoBoxTitle.c_str(), CLCDDisplay::PIXEL_ON, 0, true); // UTF-8 } // paint info std::string text_line; int line; int pos = 0; int length = m_infoBoxText.size(); for(line = 0; line < 5; line++) { text_line.clear(); while ( m_infoBoxText[pos] != '\n' && ((fonts.menu->getRenderWidth(text_line.c_str(), true) < EPG_INFO_TEXT_WIDTH-10) || !m_infoBoxAutoNewline )&& (pos < length)) // UTF-8 { if ( m_infoBoxText[pos] >= ' ' && m_infoBoxText[pos] <= '~' ) // any char between ASCII(32) and ASCII (126) text_line += m_infoBoxText[pos]; pos++; } //printf("[lcdd] line %d:'%s'\r\n",line,text_line.c_str()); fonts.menu->RenderString(EPG_INFO_TEXT_POS+1,EPG_INFO_TEXT_POS+(line*EPG_INFO_FONT_HEIGHT)+EPG_INFO_FONT_HEIGHT+3, EPG_INFO_TEXT_WIDTH, text_line.c_str(), CLCDDisplay::PIXEL_ON, 0, true); // UTF-8 if ( m_infoBoxText[pos] == '\n' ) pos++; // remove new line } displayUpdate(); } } /*****************************************************************************************/ //showFilelist /*****************************************************************************************/ #define BAR_POS_X 114 #define BAR_POS_Y 10 #define BAR_POS_WIDTH 6 #define BAR_POS_HEIGTH 40 void CLCD::showFilelist(int flist_pos,CFileList* flist,const char * const mainDir) { //printf("[lcdd] FileList\n"); if(flist != NULL) m_fileList = flist; if(flist_pos != -1) m_fileListPos = flist_pos; if(mainDir != NULL) m_fileListHeader = mainDir; if (mode == MODE_FILEBROWSER && m_fileList != NULL && m_fileList->size() > 0) { printf("[lcdd] FileList:OK\n"); int size = m_fileList->size(); display.draw_fill_rect(-1, -1, LCD_COLS, 52, CLCDDisplay::PIXEL_OFF); // clear lcd if(m_fileListPos > size) m_fileListPos = size-1; int width = fonts.menu->getRenderWidth(m_fileListHeader.c_str(), true); if(width > LCD_COLS - 10) width = LCD_COLS - 10; fonts.menu->RenderString((LCD_COLS - width) / 2, 11, width+5, m_fileListHeader.c_str(), CLCDDisplay::PIXEL_ON); //printf("list%d,%d\r\n",m_fileListPos,(*m_fileList)[m_fileListPos].Marked); std::string text; int marked; if(m_fileListPos > 0) { if ( (*m_fileList)[m_fileListPos-1].Marked == false ) { text =""; marked = CLCDDisplay::PIXEL_ON; } else { text ="*"; marked = CLCDDisplay::PIXEL_INV; } text += (*m_fileList)[m_fileListPos-1].getFileName(); fonts.menu->RenderString(1, 12+12, BAR_POS_X+5, text.c_str(), marked); } if(m_fileListPos < size) { if ((*m_fileList)[m_fileListPos-0].Marked == false ) { text =""; marked = CLCDDisplay::PIXEL_ON; } else { text ="*"; marked = CLCDDisplay::PIXEL_INV; } text += (*m_fileList)[m_fileListPos-0].getFileName(); fonts.time->RenderString(1, 12+12+14, BAR_POS_X+5, text.c_str(), marked); } if(m_fileListPos < size-1) { if ((*m_fileList)[m_fileListPos+1].Marked == false ) { text =""; marked = CLCDDisplay::PIXEL_ON; } else { text ="*"; marked = CLCDDisplay::PIXEL_INV; } text += (*m_fileList)[m_fileListPos+1].getFileName(); fonts.menu->RenderString(1, 12+12+14+12, BAR_POS_X+5, text.c_str(), marked); } // paint marker int pages = (((size-1)/3 )+1); int marker_length = (BAR_POS_HEIGTH-2) / pages; if(marker_length <4) marker_length=4;// not smaller than 4 pixel int marker_offset = ((BAR_POS_HEIGTH-2-marker_length) * m_fileListPos) /size ; //printf("%d,%d,%d\r\n",pages,marker_length,marker_offset); display.draw_fill_rect (BAR_POS_X, BAR_POS_Y, BAR_POS_X+BAR_POS_WIDTH, BAR_POS_Y+BAR_POS_HEIGTH, CLCDDisplay::PIXEL_ON); display.draw_fill_rect (BAR_POS_X+1, BAR_POS_Y+1, BAR_POS_X+BAR_POS_WIDTH-1, BAR_POS_Y+BAR_POS_HEIGTH-1, CLCDDisplay::PIXEL_OFF); display.draw_fill_rect (BAR_POS_X+1, BAR_POS_Y+1+marker_offset, BAR_POS_X+BAR_POS_WIDTH-1, BAR_POS_Y+1+marker_offset+marker_length, CLCDDisplay::PIXEL_ON); displayUpdate(); } } /*****************************************************************************************/ //showProgressBar /*****************************************************************************************/ #define PROG_GLOB_POS_X 10 #define PROG_GLOB_POS_Y 30 #define PROG_GLOB_POS_WIDTH 100 #define PROG_GLOB_POS_HEIGTH 20 void CLCD::showProgressBar(int global, const char * const text,int show_escape,int timer) { if(text != NULL) m_progressHeaderGlobal = text; if(timer != -1) m_infoBoxTimer = timer; if(global >= 0) { if(global > 100) m_progressGlobal =100; else m_progressGlobal = global; } if(show_escape != -1) m_progressShowEscape = show_escape; if (mode == MODE_PROGRESSBAR) { //printf("[lcdd] prog:%s,%d,%d\n",m_progressHeaderGlobal.c_str(),m_progressGlobal,m_progressShowEscape); // Clear Display display.draw_fill_rect (0, 12, LCD_COLS, 64, CLCDDisplay::PIXEL_OFF); // paint progress header int width = fonts.menu->getRenderWidth(m_progressHeaderGlobal.c_str(),true); if(width > 100) width = 100; int start_pos = (LCD_COLS - width) /2; fonts.menu->RenderString(start_pos, 12+12, width+10, m_progressHeaderGlobal.c_str(), CLCDDisplay::PIXEL_ON,0,true); // paint global bar int marker_length = (PROG_GLOB_POS_WIDTH * m_progressGlobal)/100; display.draw_fill_rect (PROG_GLOB_POS_X, PROG_GLOB_POS_Y, PROG_GLOB_POS_X+PROG_GLOB_POS_WIDTH, PROG_GLOB_POS_Y+PROG_GLOB_POS_HEIGTH, CLCDDisplay::PIXEL_ON); display.draw_fill_rect (PROG_GLOB_POS_X+1+marker_length, PROG_GLOB_POS_Y+1, PROG_GLOB_POS_X+PROG_GLOB_POS_WIDTH-1, PROG_GLOB_POS_Y+PROG_GLOB_POS_HEIGTH-1, CLCDDisplay::PIXEL_OFF); // paint foot if(m_progressShowEscape == true) { fonts.menu->RenderString(90, 64, 40, "Home", CLCDDisplay::PIXEL_ON); } displayUpdate(); } } /*****************************************************************************************/ // showProgressBar2 /*****************************************************************************************/ #define PROG2_GLOB_POS_X 10 #define PROG2_GLOB_POS_Y 37 #define PROG2_GLOB_POS_WIDTH 100 #define PROG2_GLOB_POS_HEIGTH 10 #define PROG2_LOCAL_POS_X 10 #define PROG2_LOCAL_POS_Y 24 #define PROG2_LOCAL_POS_WIDTH PROG2_GLOB_POS_WIDTH #define PROG2_LOCAL_POS_HEIGTH PROG2_GLOB_POS_HEIGTH void CLCD::showProgressBar2(int local,const char * const text_local ,int global ,const char * const text_global ,int show_escape ) { //printf("[lcdd] prog2\n"); if(text_local != NULL) m_progressHeaderLocal = text_local; if(text_global != NULL) m_progressHeaderGlobal = text_global; if(global >= 0) { if(global > 100) m_progressGlobal =100; else m_progressGlobal = global; } if(local >= 0) { if(local > 100) m_progressLocal =100; else m_progressLocal = local; } if(show_escape != -1) m_progressShowEscape = show_escape; if (mode == MODE_PROGRESSBAR2) { //printf("[lcdd] prog2:%s,%d,%d\n",m_progressHeaderGlobal.c_str(),m_progressGlobal,m_progressShowEscape); // Clear Display display.draw_fill_rect (0, 12, LCD_COLS, 64, CLCDDisplay::PIXEL_OFF); // paint global caption int width = fonts.menu->getRenderWidth(m_progressHeaderGlobal.c_str(),true); if(width > 100) width = 100; int start_pos = (LCD_COLS - width) /2; fonts.menu->RenderString(start_pos, PROG2_GLOB_POS_Y+20, width+10, m_progressHeaderGlobal.c_str(), CLCDDisplay::PIXEL_ON,0,true); // paint global bar int marker_length = (PROG2_GLOB_POS_WIDTH * m_progressGlobal)/100; display.draw_fill_rect (PROG2_GLOB_POS_X, PROG2_GLOB_POS_Y, PROG2_GLOB_POS_X+PROG2_GLOB_POS_WIDTH, PROG2_GLOB_POS_Y+PROG2_GLOB_POS_HEIGTH, CLCDDisplay::PIXEL_ON); display.draw_fill_rect (PROG2_GLOB_POS_X+1+marker_length, PROG2_GLOB_POS_Y+1, PROG2_GLOB_POS_X+PROG2_GLOB_POS_WIDTH-1, PROG2_GLOB_POS_Y+PROG2_GLOB_POS_HEIGTH-1, CLCDDisplay::PIXEL_OFF); // paint local caption width = fonts.menu->getRenderWidth(m_progressHeaderLocal.c_str(),true); if(width > 100) width = 100; start_pos = (LCD_COLS - width) /2; fonts.menu->RenderString(start_pos, PROG2_LOCAL_POS_Y -3, width+10, m_progressHeaderLocal.c_str(), CLCDDisplay::PIXEL_ON,0,true); // paint local bar marker_length = (PROG2_LOCAL_POS_WIDTH * m_progressLocal)/100; display.draw_fill_rect (PROG2_LOCAL_POS_X, PROG2_LOCAL_POS_Y, PROG2_LOCAL_POS_X+PROG2_LOCAL_POS_WIDTH, PROG2_LOCAL_POS_Y+PROG2_LOCAL_POS_HEIGTH, CLCDDisplay::PIXEL_ON); display.draw_fill_rect (PROG2_LOCAL_POS_X+1+marker_length, PROG2_LOCAL_POS_Y+1, PROG2_LOCAL_POS_X+PROG2_LOCAL_POS_WIDTH-1, PROG2_LOCAL_POS_Y+PROG2_LOCAL_POS_HEIGTH-1, CLCDDisplay::PIXEL_OFF); // paint foot if(m_progressShowEscape == true) { fonts.menu->RenderString(90, 64, 40, "Home", CLCDDisplay::PIXEL_ON); } displayUpdate(); } } /*****************************************************************************************/ #endif // LCD_UPDATE
678fe56dfd5cbeec6f27223b6199b019d5b5b19f
b5d788437be09c1ab7bb34ae84070ed0bce35d31
/src/img/utils.hpp
f4d673e9fea91ea251de6427cd49481f7dfbd022
[ "LicenseRef-scancode-generic-exception", "BSD-3-Clause", "Apache-2.0" ]
permissive
wlike/sfcpp
94ee38258edc826aed702a3c793e22be66d9b84a
b929419b13c35fff199c6c65e87ecffae9963cfc
refs/heads/master
2021-07-14T07:34:37.097587
2017-10-18T08:29:27
2017-10-18T08:29:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
14,191
hpp
utils.hpp
/* Copyright 2017 The sfcpp Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #ifndef SRC_IMG_UTILS_HPP_ #define SRC_IMG_UTILS_HPP_ #include <stdint.h> #include <cmath> #include <iostream> #include <limits> #include <vector> #include "ClusterPoint.hpp" #include "Image.hpp" namespace sfcpp { namespace img { /** * this method does not have any implementation, it is just used for type * inference */ template <typename T> T createSFINAE(); int round(double value); template <typename T> Image<int32_t> houghLines(Image<T> img, int angleSteps, int distanceSteps) { // TODO: nicht optimal, es muss nur der halbe Winkelbereich durchgegangen // werden // und es wäre besser für die Distanzen, wenn der Ursprung im Zentrum sitzt int width = img.data.cols; int height = img.data.rows; float angleStepwidth = 2 * M_PI / angleSteps; float maxDist = sqrt(width * width + height * height); int halfDistanceSteps = distanceSteps / 2; float stepsPerDist = halfDistanceSteps / maxDist; Image<int32_t> result = cv::Mat::zeros(distanceSteps, angleSteps, CV_32S); for (int x = 0; x < width; ++x) { for (int y = 0; y < height; ++y) { if (img.at(x, y) > 0) { float angle = 0.0; for (int i = 0; i < angleSteps; ++i) { // TODO: Rundung hier ist nicht korrekt und optimalerweise muss das // min und das max auch nicht hier hin int32_t distanceIndex = halfDistanceSteps + static_cast<int32_t>( stepsPerDist * (x * sin(angle) + y * cos(angle)) + 0.5); ++result.at(i, std::max(0, std::min(distanceSteps - 1, distanceIndex))); angle += angleStepwidth; } } } } return result; } template <typename T> T max(ImagePtr<T> imgPtr) { auto &img = *imgPtr; T maxValue = std::numeric_limits<T>::min(); for (size_t x = 0; x < img.cols(); ++x) { for (size_t y = 0; y < img.rows(); ++y) { T val = img.at(x, y); if (val > maxValue) { maxValue = val; } } } return maxValue; } template <typename T> T min(ImagePtr<T> imgPtr) { auto &img = *imgPtr; T minValue = std::numeric_limits<T>::max(); for (size_t x = 0; x < img.cols(); ++x) { for (size_t y = 0; y < img.rows(); ++y) { T val = img.at(x, y); if (val < minValue) { minValue = val; } } } return minValue; } template <typename To, typename From> ImagePtr<To> normalize(ImagePtr<From> imgPtr, bool useMin = true, To newMin = std::numeric_limits<To>::min(), To newMax = std::numeric_limits<To>::max()) { auto &img = *imgPtr; From minVal = useMin ? min<From>(imgPtr) : From(0); From maxVal = max<From>(imgPtr); From fromDist = maxVal - minVal; if (fromDist <= 0) { fromDist = 1; } ImagePtr<To> dest = createImagePtr<To>(img.cols(), img.rows()); for (size_t x = 0; x < img.cols(); ++x) { for (size_t y = 0; y < img.rows(); ++y) { auto val = newMin + (img.at(x, y) - minVal) * (newMax - newMin) / fromDist; dest->at(x, y) = static_cast<To>( std::max(static_cast<decltype(val)>(newMin), std::min(static_cast<decltype(val)>(newMax), val))); } } return dest; } template <typename To, typename From> ImagePtr<To> convert(ImagePtr<From> imgPtr) { auto &img = *imgPtr; ImagePtr<To> dest = createImagePtr<To>(img.cols(), img.rows()); for (size_t x = 0; x < img.cols(); ++x) { for (size_t y = 0; y < img.rows(); ++y) { dest->at(x, y) = static_cast<To>(img.at(x, y)); } } return dest; } template <typename Func, typename In1, typename In2> auto applyFunction(ImagePtr<In1> firstPtr, ImagePtr<In2> secondPtr, Func func) -> ImagePtr<decltype(func(createSFINAE<In1>(), createSFINAE<In2>()))> { typedef decltype(func(createSFINAE<In1>(), createSFINAE<In2>())) Out; auto &first = *firstPtr; auto &second = *secondPtr; if (first.cols() != second.cols() || first.rows() != second.rows()) { std::cout << "No matching size!\n"; return createImagePtr<Out>(1, 1); } ImagePtr<Out> result = createImagePtr<Out>(first.cols(), first.rows()); for (size_t x = 0; x < first.cols(); ++x) { for (size_t y = 0; y < first.rows(); ++y) { result->at(x, y) = func(first.at(x, y), second.at(x, y)); } } return result; } template <typename Func, typename In1> auto applyFunction(ImagePtr<In1> firstPtr, Func func) -> ImagePtr<decltype(func(createSFINAE<In1>()))> { typedef decltype(func(createSFINAE<In1>())) Out; auto &first = *firstPtr; ImagePtr<Out> result = createImagePtr<Out>(first.cols(), first.rows()); for (size_t x = 0; x < first.cols(); ++x) { for (size_t y = 0; y < first.rows(); ++y) { result->at(x, y) = func(first.at(x, y)); } } return result; } template <typename T> ImagePtr<T> flip(ImagePtr<T> const &imgPtr, bool flipY, bool flipX) { auto &img = *imgPtr; ImagePtr<T> result(createImagePtr<T>()); if (flipX) { if (flipY) { cv::flip(img.data, result->data, -1); } else { cv::flip(img.data, result->data, 1); } } else { if (flipY) { cv::flip(img.data, result->data, 0); } else { return imgPtr; } } return result; } template <typename T> ImagePtr<T> gaussianFilter(ImagePtr<T> const &imgPtr, float sigmaX, float sigmaY = 0.0, size_t kx = 0, size_t ky = 0) { auto &img = *imgPtr; ImagePtr<T> result = createImagePtr<T>(img.cols(), img.rows()); cv::GaussianBlur(img.data, result->data, cv::Size(kx, ky == 0 ? kx : ky), sigmaX, sigmaY, cv::BORDER_REFLECT); return result; } template <typename T> ImagePtr<T> applyFilter(ImagePtr<T> const &imgPtr, ImagePtr<T> const &kernelPtr, cv::Point anchor = cv::Point(-1, -1)) { auto result = createImagePtr<T>(); cv::filter2D(imgPtr->data, result->data, -1, kernelPtr->data, anchor, 0, cv::BORDER_REFLECT_101); return result; } template <typename T> ImagePtr<T> erode(ImagePtr<T> const &imgPtr, ImagePtr<bool> const &kernelPtr, int numIterations = 1, cv::Point anchor = cv::Point(-1, -1)) { auto &img = *imgPtr; ImagePtr<T> result = createImagePtr<T>(img.cols(), img.rows()); cv::erode(img.data, result.data, kernelPtr->data, anchor, numIterations); return result; } template <typename T> ImagePtr<T> dilate(ImagePtr<T> const &imgPtr, ImagePtr<bool> const &kernelPtr, int numIterations = 1, cv::Point anchor = cv::Point(-1, -1)) { auto &img = *imgPtr; ImagePtr<T> result = createImagePtr<T>(img.cols(), img.rows()); cv::dilate(img.data, result.data, kernelPtr->data, anchor, numIterations); return result; } template <typename T> ImagePtr<T> closing(ImagePtr<T> const &img, ImagePtr<bool> const &kernel, int numIterations = 1, cv::Point anchor = cv::Point(-1, -1)) { return erode(dilate(img, kernel, numIterations, anchor), kernel, numIterations, anchor); } template <typename T> ImagePtr<T> opening(ImagePtr<T> const &img, ImagePtr<bool> const &kernel, int numIterations = 1, cv::Point anchor = cv::Point(-1, -1)) { return dilate(erode(img, kernel, numIterations, anchor), kernel, numIterations, anchor); } template <typename T> ImagePtr<T> resize(ImagePtr<T> const &img, size_t width, size_t height) { ImagePtr<T> result = createImagePtr<T>(width, height); // use cubic interpolation for enlarging and area interpolation for shrinking cv::resize(img->data, result->data, cv::Size(width, height), width * height > img.cols() * img.rows() ? cv::INTER_CUBIC : cv::INTER_AREA); return result; } template <typename T> ImagePtr<T> resizeKeepAspectRatio(ImagePtr<T> const &imgPtr, int width, int height, T fillValue) { auto &img = *imgPtr; double oldWidth = img.cols(); double oldHeight = img.rows(); double widthRatio = width / oldWidth; double heightRatio = height / oldHeight; ImagePtr<T> intermediate = createImagePtr<T>(); if (widthRatio < heightRatio) { intermediate = resize(img, width, std::min(height, round(oldHeight * widthRatio))); } else { intermediate = resize(img, std::min(width, round(oldWidth * heightRatio)), height); } ImagePtr<T> result = createImagePtr<T>(width, height, fillValue); result->overlay((width - intermediate.width()) / 2, (height - intermediate.height()) / 2, intermediate); return result; } template <typename T> ImagePtr<T> crop(ImagePtr<T> const &imgPtr, cv::Rect rect) { ImagePtr<T> result = createImagePtr<T>(); result.data = imgPtr->data(rect).clone(); return result; } template <typename T> ImagePtr<T> clusterThresholding(ImagePtr<cv::Vec3b> const &imgPtr, std::vector<ClusterPoint<T>> clusterPoints) { auto &img = *imgPtr; ImagePtr<T> result = createImagePtr<T>(img.cols(), img.rows()); for (size_t y = 0; y < img.rows(); ++y) { for (size_t x = 0; x < img.cols(); ++x) { double minDist = std::numeric_limits<double>::max(); T color; for (auto point : clusterPoints) { double db = (int)img.at(x, y)[0] - (int)point.clusterCenter[0]; double dg = (int)img.at(x, y)[1] - (int)point.clusterCenter[1]; double dr = (int)img.at(x, y)[2] - (int)point.clusterCenter[2]; double currentDist = sqrt(db * db + dg * dg + dr * dr); if (currentDist < minDist) { minDist = currentDist; color = point.resultingColor; } } result->at(x, y) = color; } } return result; } template <typename T> ImagePtr<T> overlay(ImagePtr<T> const &imgPtr, ImagePtr<bool> const &maskPtr, T const &color) { auto &img = *imgPtr; auto &mask = *maskPtr; if (img.rows() != mask.rows() || img.cols() != mask.cols()) { std::cout << "No matching size in overlay()\n"; return Image<T>(1, 1); } ImagePtr<T> result = createImagePtr<T>(img); for (size_t y = 0; y < img.rows(); ++y) { for (size_t x = 0; x < img.cols(); ++x) { if (mask.at(x, y)) { result->at(x, y) = color; } } } return result; } template <size_t channels, typename T> ImagePtr<cv::Vec<T, channels>> extendChannels(ImagePtr<T> const &imgPtr) { auto &img = *imgPtr; ImagePtr<cv::Vec<T, channels>> result = createImagePtr<cv::Vec<T, channels>>(img.cols(), img.rows()); for (size_t y = 0; y < img.rows(); ++y) { for (size_t x = 0; x < img.cols(); ++x) { cv::Vec<T, channels> vec; for (size_t i = 0; i < channels; ++i) { vec[i] = img.at(x, y); } result->at(x, y) = vec; } } return result; } template <typename T, typename Pred> cv::Rect getPredicateBoundingRect(ImagePtr<T> const &imgPtr, Pred pred) { auto &img = *imgPtr; size_t x1 = img.width(), x2 = 0, y1 = img.height(), y2 = 0; for (size_t x = 0; x < img.width(); ++x) { for (size_t y = 0; y < img.height(); ++y) { if (pred(img.at(x, y))) { x1 = std::min(x, x1); x2 = std::max(x, x2); y1 = std::min(y, y1); y2 = std::max(y, y2); } } } if (x2 < x1 || y2 < y1) { return cv::Rect(0, 0, 1, 1); } return cv::Rect(x1, y1, x2 - x1 + 1, y2 - y1 + 1); } template <typename T, typename Pred> std::vector<cv::Vec2f> getPointsForPred(ImagePtr<T> const &imgPtr, Pred pred) { auto &img = *imgPtr; std::vector<cv::Vec2f> result; for (size_t y = 0; y < img.height(); ++y) { for (size_t x = 0; x < img.width(); ++x) { if (pred(img.at(x, y))) { result.push_back(cv::Vec2f(x, y)); } } } return result; } template <int count> std::vector<cv::Vec<float, count>> kmeans( std::vector<cv::Vec<float, count>> const &data, size_t k) { std::vector<cv::Vec<float, count>> result(k, cv::Vec<float, count>(0.0)); cv::Mat points(data.size(), count, CV_32F); for (size_t i = 0; i < data.size(); ++i) { for (size_t j = 0; j < count; ++j) { points.at<float>(i, j) = data[i][j]; } } std::vector<int> labels; cv::kmeans(points, k, labels, cv::TermCriteria(cv::TermCriteria::COUNT, 100, 1.0), 5, cv::KMEANS_PP_CENTERS); std::vector<int> clusterCounts(k, 0); for (size_t i = 0; i < labels.size(); ++i) { result[labels[i]] += data[i]; clusterCounts[labels[i]]++; } for (size_t i = 0; i < k; ++i) { result[i] /= clusterCounts[i] == 0 ? 1 : clusterCounts[0]; } return result; } template <typename T> ImagePtr<T> minImage(ImagePtr<T> first, ImagePtr<T> second) { return applyFunction(first, second, [](T a, T b) { return std::min(a, b); }); } template <typename T> ImagePtr<T> maxImage(ImagePtr<T> first, ImagePtr<T> second) { return applyFunction(first, second, [](T a, T b) { return std::max(a, b); }); } ImagePtr<bool> floodFill(ImagePtr<bool> const &imgPtr, size_t x, size_t y); ImagePtr<bool> circularMorphologyKernel(float distance); ImagePtr<int32_t> watershedTransform(ImagePtr<cv::Vec3b> const &imgPtr, ImagePtr<int32_t> markers); ImagePtr<float> distanceTransform(ImagePtr<bool> const &imgPtr); ImagePtr<cv::Vec3b> gray2BGR(ImagePtr<uint8_t> const &imgPtr); ImagePtr<uint8_t> BGR2Gray(ImagePtr<uint8_t> const &imgPtr); } /* namespace img */ } #endif /* SRC_IMG_UTILS_HPP_ */
54c207f7a686c287fa1ce7f325bcc3d82ed8c115
39821d4da443d0c4ff26570e48398b4e263dd888
/项目,/去重行动/去重行动/去重行动/file_manage.cpp
58d8c83b7a512864a502dd0e6f863a9089674d28
[]
no_license
muxiaoximuxiaoxi/-
ab3056d2dc68f50af94d09f84dba67677314ee0e
1dc7b00f180567d874dcf1d71aed2e20661811a5
refs/heads/master
2021-07-17T00:22:00.279839
2020-07-10T13:32:29
2020-07-10T13:32:29
155,961,603
0
0
null
null
null
null
GB18030
C++
false
false
5,222
cpp
file_manage.cpp
#include"file_manager.h" #include"file.h" #include<utility> void file_manager::scanner_dir(const std::string& path) { //清理容器 _file.clear(); search_dir(path, _file); //std::cout << "all file" << std::endl; show_all_file(); get_md5_to_file(); show_copy_list(); std::cout << "Only duplicate files" << std::endl; get_copy_list(); //std::cout << "copy list" << std::endl; show_copy_list(); show_all_file(); } void file_manager::get_md5_to_file() { _md5_to_file.clear(); for (const auto &a : _file) { //计算新文件前重置 _md5.reset(); //string 转换成 char * //如果要将string直接转换成const char *类型。string有2个函数可以运用。 //一个是.c_str(),一个是data成员函数。 _md5_to_file.insert(make_pair(_md5.get_File_md5(a.c_str()), a)); } } //只保留内容重复文件的结果 void file_manager::get_copy_list() { _file_to_md5.clear(); //不要用范围for,涉及删除操作 auto it = _md5_to_file.begin(); while (it != _md5_to_file.end()) { //查找每个MD5对应所有文件的结果 if (_md5_to_file.count(it->first) > 1) { //equal_range 返回值:pair<beginIt,endIt>:[beginIt,endIt)--->迭代器遍历时连续 auto pair_it = _md5_to_file.equal_range(it->first); auto begin = pair_it.first; while (begin != pair_it.second) { //只存放重复文件的映射关系 _file_to_md5.insert(make_pair(begin->second, begin->first)); ++begin; } //下一个不同的MD5的起始位置 it = pair_it.second; } else { //先删除,再更新 _file.erase(it->second); //erase的返回值,被删除元素的下一个位置 it = _md5_to_file.erase(it); } } } //所有的删除,保证一个文件不存在副本 void file_manager::delete_by_name(const std::string& name) { if (_file_to_md5.count(name) == 0) { std::cout << name << "\tnot exist!!!" << std::endl; return; } std::string cur_md5 = _file_to_md5[name]; std::cout << name << "--->" << _md5_to_file.count(cur_md5) << std::endl; auto pair_it = _md5_to_file.equal_range(cur_md5); auto cur_it = pair_it.first; int count = 0; while (cur_it != pair_it.second) { if (cur_it->second != name) { _file.erase(cur_it->second); _file_to_md5.erase(cur_it->second); delete_file(cur_it->second.c_str()); ++count; } ++cur_it; } cur_it = pair_it.first; while (cur_it != pair_it.second) { if (cur_it->second != name) { //key==md5 _md5_to_file.erase(cur_it); pair_it = _md5_to_file.equal_range(cur_md5); cur_it = pair_it.first; } ++cur_it; } std::cout << "delete files :" << count << std::endl; } void file_manager::delete_by_md5(const std::string& md5) { //md5映射file if (_md5_to_file.count(md5) == 0) { std::cout << md5 << "not exist!!!" << std::endl; return; } //删除时需要保留一份,规定保留第一个文件 auto pair_it = _md5_to_file.equal_range(md5); std::cout << "md5值:" << md5 << "---have---" << _md5_to_file.count(md5) << std::endl; auto cur_it = pair_it.first; ++cur_it; int count = 0; while (cur_it != pair_it.second) { _file.erase(cur_it->second); _file_to_md5.erase(cur_it->second); //文件从磁盘中删除 delete_file(cur_it->second.c_str()); ++count; ++cur_it; } //更新一下MD5到file的映射 cur_it = pair_it.first; ++cur_it; //erase(first,last)----> 删除区间[first,last) _md5_to_file.erase(cur_it, pair_it.second); std::cout << "delete files number:" << count << std::endl; } //所有重复的文件只保留一个 void file_manager::delete_all_copy() { std::unordered_set<std::string> md5_set; //找出所有的md5值 for (const auto& a : _md5_to_file) { md5_set.insert(a.first); } for (const auto& b : md5_set) { delete_by_md5(b); } } //删除所有包含'match'的文件 void file_manager::delete_by_match(const std::string& match) { std::unordered_set<std::string> all_file; //遍历所有文件 for (const auto& a : _file) { if (a.find(match) != std::string::npos) all_file.insert(a); } for (const auto & b : all_file) { if (_file_to_md5.count(b) != 0) delete_by_name(b); } } void file_manager::show_copy_list() { std::cout << "+++++++++++++++++++++++" << std::endl; std::cout << "show_copy_list" << std::endl; auto it = _md5_to_file.begin(); int total = _md5_to_file.size(); int count = 0; while (it != _md5_to_file.end()) { //md5值相同的显示在一起 int idx = 1; auto pair_it = _md5_to_file.equal_range(it->first); auto cur_it = pair_it.first; std::cout << "cut md5:" << it->first << std::endl; while (cur_it != pair_it.second) { std::cout << "\t第" << idx << "文件" << "\t"; std::cout << cur_it->second << std::endl; ++count; ++cur_it; ++idx; } it = pair_it.second; } std::cout << "文件总数:" << total << "\t" << count << std::endl; std::cout << "+++++++++++++++++++++++" << std::endl; } void file_manager::show_all_file() { std::cout << "=======================" << std::endl; std::cout << "show_all_file" << std::endl; for (const auto& a : _file) { std::cout << a << std::endl; } std::cout << "file count:" << _file.size() << std::endl; std::cout << "=======================" << std::endl; }
6e6affc826df1e45d399d1484dde89a53c2c6097
a8e14b1cbcc9990e4a177beb59c8c0a5b1e9b951
/20200530_FileSharing/File_Sharing_Qt/Westworld/mainwindow.cpp
283d96347cf258f6d170538d527e5d64c52a700e
[]
no_license
WZ-Dale/Projects
353de6d65b510e342449a7abee6bbaa6fe49d712
1f8a5537a0691beeeb08aa3ea5fae3e74510767c
refs/heads/master
2021-06-26T07:13:47.741794
2021-06-19T10:22:20
2021-06-19T10:22:20
201,632,977
2
1
null
null
null
null
UTF-8
C++
false
false
2,412
cpp
mainwindow.cpp
#include "mainwindow.h" #include "ui_mainwindow.h" MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); QString str = "Welcome to the Westworld !"; ui->textBrowser->setText(str); QThread* thread0 = new QThread(); QThread* thread1 = new QThread(); P2PServer* server = new P2PServer(9000); P2PClient* client = new P2PClient(9000); connect(thread0,SIGNAL(started()),server,SLOT(Start())); connect(server,SIGNAL(complete()),server,SLOT(deleteLater())); connect(server,SIGNAL(destroyed(QObject*)),thread0,SLOT(quit())); connect(thread0,SIGNAL(finished()),thread0,SLOT(deleteLater())); connect(thread1,SIGNAL(started()),client,SLOT(Start())); connect(client,SIGNAL(complete()),client,SLOT(deleteLater())); connect(client,SIGNAL(destroyed(QObject*)),thread1,SLOT(quit())); connect(thread1,SIGNAL(finished()),thread1,SLOT(deleteLater())); // connect(thread0,SIGNAL(started()),server,SLOT(Start())); // connect(server,SIGNAL(complete()),thread0,SLOT(quit())); // connect(thread0,SIGNAL(finished()),server,SLOT(deleteLater())); // connect(thread0,SIGNAL(finished()),thread0,SLOT(deleteLater())); // connect(thread1,SIGNAL(started()),client,SLOT(Start())); // connect(client,SIGNAL(complete()),thread1,SLOT(quit())); // connect(thread1,SIGNAL(finished()),client,SLOT(deleteLater())); // connect(thread1,SIGNAL(finished()),thread1,SLOT(deleteLater())); connect(server,SIGNAL(server_emit(QString)),this,SLOT(UI_read(QString))); connect(client,SIGNAL(client_emit(QString)),this,SLOT(UI_read(QString))); connect(this,SIGNAL(UI_emit(int)),client,SLOT(client_read(int)),Qt::DirectConnection); server->moveToThread(thread0); client->moveToThread(thread1); thread0->start(); thread1->start(); } MainWindow::~MainWindow() { delete ui; } void MainWindow::UI_read(QString b) { //将发送过来的参数,int型转成QString型,传入控件 // QString aa = QString::number(a, 10); // ui->lineEdit->setText(aa); ui->textBrowser->append(b); } void MainWindow::on_pushButton_OK_clicked() { QString str = ui->lineEdit->text(); int choose = str.toInt(); emit UI_emit(choose); // std::cout << choose << std::endl; } void MainWindow::on_textBrowser_textChanged() { ui->textBrowser->moveCursor(QTextCursor::End); }
20f3333a6d9d3d7fb93c0d4e57ab3d91e451a4ce
d125832a2ea6b9508bacda45baf60eea2d60b7bf
/pxl2D/include/graphics/Text.h
d2dba6de932c206d725acaf629d23ae7d121be45
[]
no_license
kiwipxl/pxl2D
c8b0e617275095420b1a54dfc8281fa4ab909595
3a4069618c14ee8588464479433878c3965ec883
refs/heads/master
2021-07-11T04:46:50.097294
2021-03-07T08:08:50
2021-03-07T08:08:50
28,920,726
0
1
null
null
null
null
UTF-8
C++
false
false
4,172
h
Text.h
#ifndef _TEXT_H #define _TEXT_H #include <string> #include "graphics/FontUtils.h" #include "graphics/Batch.h" #include "graphics/Sprite.h" #include "PXLAPI.h" namespace pxl { namespace graphics { class TextOrigin; class Text : public Sprite { public: Text(); /** \*brief: text constructor **/ Text(Font* f_font, std::string f_text, int f_pos_x = 0, int f_pos_y = 0, uint16 f_size = 24); /** \*brief: text deconstructor **/ ~Text(); bool text_loaded; /*> Defines whether or not the text has been loaded or not */ Font* font; int max_width = INT_MAX; int max_height = INT_MAX; bool scale_max_size = true; bool clamp_max_size = true; Vec2 scale_origin; void init(); void scale(float scale_x, float scale_y) { text_scale.x += scale_x; text_scale.y += scale_y; update_scale_origin(); set_font_scale(); } void set_scale(float scale_x, float scale_y) { text_scale.x = scale_x; text_scale.y = scale_y; update_scale_origin(); set_font_scale(); } Vec2 get_scale() { return text_scale; } void set_text(std::string new_text = "") { text = new_text; update_scale_origin(); } std::string get_text() { return text; } void set_size(short c_size) { size = c_size; update_scale_origin(); set_font_scale(); } short get_size() { return size; } float get_width() { return width; } float get_height() { return height; } void set_kerning(short c_kerning) { kerning = c_kerning; update_scale_origin(); } short get_kerning() { return kerning; } void set_spacing_kerning(short c_spacing_kerning) { spacing_kerning = c_spacing_kerning; update_scale_origin(); } short get_spacing_kerning() { return spacing_kerning; } void set_vertical_kerning(short c_vertical_kerning) { vertical_kerning = c_vertical_kerning; update_scale_origin(); } short get_vertical_kerning() { return vertical_kerning; } /** \*brief: frees all data from the text **/ void render(Batch* batch) override; /** \*brief: frees all data from the text **/ void free() override; protected: std::string text = ""; /*> The text to be rendered */ short size; /*> The size of the text to be rendered */ float width = 0; /*> The width boundaries of the text */ float height = 0; /*> The height boundaries of the text */ Rect rect; /*> The rendering boundaries */ Rect src_rect; /*> The texture source rendering boundaries */ Vec2 origin; /*> The origin point of the text to perform rotation and scaling transformations */ Vec2 temp_origin; /*> The origin used to calculate when rendering */ Vec2 font_scale; /*> The scale of the font texture */ Vec2 text_scale; /*> The scale of the text */ Vec2 scaled_max; /*> The max scale */ short kerning = 4; /*> The number that specifies the spacing between each character */ short spacing_kerning = 0; /*> The number that specifies the spacing between spaces */ short vertical_kerning = 4; /*> The number that specifies the spacing for new lines */ bool set_char_pos(int8 symbol, int start_x); void set_font_scale() { font_scale.x = (size / float(font->get_max_font_size())) * text_scale.x; font_scale.y = (size / float(font->get_max_font_size())) * text_scale.y; } void update_scale_origin() { //calculate width and height of the whole text rect.x = 0; rect.y = 0; width = 0; height = 0; for (size_t n = 0; n < text.length(); ++n) { bool special_symbol_found = set_char_pos(text[n], 0); width = math::max(width, rect.x); height = math::max(height, rect.y); if (special_symbol_found) { continue; } rect.x += rect.w + kerning; } height += font->get_max_char_height() * font_scale.y; if (clamp_max_size) { width = math::min(width, max_width); height = math::min(height, max_height); } } }; }}; #endif
abae774ebc2d842690f999c849468afe31681ae8
7965149d954fe3e773e2ff50bd4ace272530c97d
/Server/server/EquipStageConfig.cpp
6d2d7372e88240d38f981214ae19c546c43e5312
[]
no_license
wayland-chen/swa-server
e6fb5793e98e1c3400fa752dc537ae125bbbe50a
2185559917d201ce2921489b87df682f1350d6ca
refs/heads/gh-pages
2021-01-20T21:56:44.955788
2015-01-31T05:56:33
2015-01-31T05:56:33
34,900,199
1
0
null
2015-05-01T11:35:00
2015-05-01T11:35:00
null
UTF-8
C++
false
false
1,076
cpp
EquipStageConfig.cpp
#include "EquipStageConfig.h" #include "netConfig.h" EquipStageConfig* gEquipStageConfig = F_NULL; EquipStageConfig::EquipStageConfig(void) { gEquipStageConfig = this; } EquipStageConfig::~EquipStageConfig(void){} fvoid EquipStageConfig::Load(const fbyte* path) { ptree pt; ptree root; read_xml( path , pt , boost::property_tree::xml_parser::trim_whitespace ); FLOG4( "xml loading. %s" , path ); root = pt.get_child("equipstage"); ptree::assoc_iterator iter = root.ordered_begin(); int index = 0; for (; iter != root.not_found() ;++iter ) { ptree n = iter->second; EquipStageItem ritem; ritem.id = n.get< fint16 >( "<xmlattr>.id" ); ritem.value = n.get< fint16 >( "<xmlattr>.value" ); ritem.goodsId = n.get< fint32 >( "<xmlattr>.goodsId" ); ritem.goodsNum = n.get< fint16 >( "<xmlattr>.goodsNum" ); dataList.push_back(ritem); } } fbool EquipStageConfig::CheckId(fint16 id) { if( 0 < id && id < dataList.size() ){ return F_TRUE; } return F_FALSE; } const EquipStageItem& EquipStageConfig::GetItem(fint16 id) { return dataList[id - 1]; }
086182b29bc9f0d38d3e6986073e146ea053e7d7
789ff02d6937da454a169d6a91e991b8023ca1ba
/main.cpp
f7e2dd27fd15957425608240b99b373b42161a82
[]
no_license
patrick100/JuegodenaveSDL1.2
88a90005a8cfcece31c8f530f878900205aee583
0c219fc340f8a1ed29138c255b186d0e1bc2a0f6
refs/heads/master
2021-01-25T10:29:06.444875
2015-07-05T20:08:54
2015-07-05T20:08:54
38,582,140
1
0
null
null
null
null
UTF-8
C++
false
false
4,247
cpp
main.cpp
#include "SDL/SDL.h" #include "SDL/SDL_mixer.h" #include "Juego.h" #include "Nave.h" #include "bala.h" #include "Meteoro.h" #include "ListaEnlazada.h" int main( int argc, char* args[] ) { bool perder=false; bool reiniciar = false; bool quit = false; Juego obj; obj.iniciarjuego(); Mix_Music *sonido; Mix_OpenAudio(44100, MIX_DEFAULT_FORMAT, 2, 1024); sonido = Mix_LoadMUS("disparo.wav"); Mix_Music *sonido2; Mix_OpenAudio(44100, MIX_DEFAULT_FORMAT, 2, 1024); sonido2 = Mix_LoadMUS("choque.wav"); Mix_Music *sonido3; Mix_OpenAudio(44100, MIX_DEFAULT_FORMAT, 2, 1024); sonido3 = Mix_LoadMUS("llorar.wav"); Nave *nav; nav = new Nave(); Meteoro ast; Meteoro ast1; ListaEnlazada *cadena= new ListaEnlazada(); bala *aux; aux = new bala; while(quit == false) { SDL_Delay(50); while( SDL_PollEvent(&nav->event)) { if( nav->event.type == SDL_KEYDOWN ) { switch( nav->event.key.keysym.sym ) { case SDLK_UP: nav->yVel -= nav->alto / 3; break; case SDLK_DOWN: nav->yVel += nav->alto / 3; break; case SDLK_LEFT: nav->xVel -= nav->ancho / 3; break; case SDLK_RIGHT: nav->xVel += nav->ancho / 3; break; case SDLK_z:aux->disparar = true; default: break; } } else if( nav->event.type == SDL_KEYUP ) { switch( nav->event.key.keysym.sym ) { case SDLK_UP: nav->yVel += nav->alto / 3; break; case SDLK_DOWN: nav->yVel -= nav->alto / 3; break; case SDLK_LEFT: nav->xVel += nav->ancho / 3; break; case SDLK_RIGHT: nav->xVel -= nav->ancho / 3; break; case SDLK_z: //aux->disparar = true; default: break; } } if(nav->event.type == SDL_QUIT) { quit = true; } } //SDL_FillRect( obj.get_screen(), &obj.get_screen()->clip_rect, SDL_MapRGB( obj.get_screen()->format, 0, 0, 0 ) ); obj.aplicar(0,0,obj.get_fondo(),obj.get_screen()); //La nave tapa al fondo //Nave obj.aplicar(nav->get_x(),nav->get_y(),nav->get_nave(),obj.get_screen()); nav->movernave(); if(aux->disparar == false) { aux->balax = nav->get_x()+35; aux->balay=nav->get_y()-20; } else { Mix_PlayMusic(sonido, 1); obj.aplicar(aux->balax,aux->balay,aux->get_bala(), obj.get_screen()); aux->moverbala(); } if( obj.colision(&ast.caja1,&nav->caja2)==true ) { Mix_PlayMusic(sonido2, 1); ast.dibujar = false; nav->vidas--; } if( obj.colision(&ast1.caja1,&nav->caja2)==true ) { Mix_PlayMusic(sonido2, 1); ast1.dibujar = false; nav->vidas--; } if (obj.colision1(&ast.caja1,&aux->caja3,aux->disparar)==true) { ast.dibujar = false; aux->disparar=false; } if (obj.colision1(&ast1.caja1,&aux->caja3,aux->disparar)==true) { ast1.dibujar = false; aux->disparar=false; } //asteroide 1 obj.aplicar(ast.ejex,ast.ejey,ast.get_ast(),obj.get_screen()); ast.movermeteoro(); //asteroide 2 obj.aplicar(ast1.ejex,ast1.ejey,ast1.get_ast(),obj.get_screen()); ast1.movermeteoro(); if(nav->vidas==0) { quit= true; //perder = true; } SDL_Flip(obj.get_screen()); } obj.clean_up(); return 0; }
2aa589d27e5feaa8c0a59d3a363833d84d9e9b30
bd8eda6121dc036844b404b63cafb0b3c926d3c2
/Insertion sort shifts.cpp
4539107105fe996a518e1fbe7c8e483c47fba345
[]
no_license
Yinkular/HackerRank
7b92427027ada196cfbbe63e8ca58340e7cfe29e
15c3c534818725049cbd6836747d1e66e14cc431
refs/heads/master
2020-05-29T08:45:17.341262
2016-09-23T23:46:12
2016-09-23T23:46:12
69,068,018
0
0
null
null
null
null
UTF-8
C++
false
false
700
cpp
Insertion sort shifts.cpp
#include <cmath> #include <cstdio> #include <vector> #include <iostream> #include <algorithm> using namespace std; int main() { /* Enter your code here. Read input from STDIN. Print output to STDOUT */ int number; cin >> number; int array[number]; for(int i =0;i<number;i++) { cin >> array[i]; } int value,temp,control,count =0;; for(int i=1;i<number;i++) { value = array[i]; control =i; while(control>=0 && array[control]<array[control-1]) { swap(array[control], array[control-1]); control--; count++; } } cout << count; return 0; }
cb19e4f85f720f015c6f2d643940608b80eafb92
b9f7c7a87292c1a9c231ce89933ae9d4bc51f487
/src/sst/elements/cassini/strideprefetch.cc
123a355414241420a42497f5ade6a84b4427f013
[ "BSD-3-Clause" ]
permissive
sstsimulator/sst-elements
3a8db475a7a6cbd4c2a5d737c32718752da9797a
68cdb3ac843750705805653b3fdcd4b015e84089
refs/heads/master
2023-08-17T03:30:24.145168
2023-08-16T13:58:07
2023-08-16T13:58:07
43,475,440
85
145
NOASSERTION
2023-09-12T13:59:11
2015-10-01T02:57:18
C++
UTF-8
C++
false
false
9,508
cc
strideprefetch.cc
// Copyright 2009-2023 NTESS. Under the terms // of Contract DE-NA0003525 with NTESS, the U.S. // Government retains certain rights in this software. // // Copyright (c) 2009-2023, NTESS // All rights reserved. // // Portions are copyright of other developers: // See the file CONTRIBUTORS.TXT in the top level directory // of the distribution for more information. // // This file is part of the SST software package. For license // information, see the LICENSE file in the top level directory of the // distribution. #include "sst_config.h" #include "strideprefetch.h" #include <vector> #include "stdlib.h" #include "sst/core/params.h" #define CASSINI_MIN(a,b) (((a)<(b)) ? a : b) using namespace SST; using namespace SST::Cassini; void StridePrefetcher::notifyAccess(const CacheListenerNotification& notify) { const NotifyAccessType notifyType = notify.getAccessType(); const NotifyResultType notifyResType = notify.getResultType(); const Addr addr = notify.getPhysicalAddress(); if (notifyType != READ && notifyType != WRITE) return; // Put address into our recent address list recentAddrList[nextRecentAddressIndex] = addr; nextRecentAddressIndex = (nextRecentAddressIndex + 1) % recentAddrListCount; recheckCountdown = (recheckCountdown + 1) % strideDetectionRange; notifyResType == MISS ? missEventsProcessed++ : hitEventsProcessed++; if(recheckCountdown == 0) DetectStride(); } Addr StridePrefetcher::getAddressByIndex(uint32_t index) { return recentAddrList[(nextRecentAddressIndex + 1 + index) % recentAddrListCount]; } void StridePrefetcher::DetectStride() { /* Needs to be updated with current MemHierarchy Commands/States, MemHierarchyInterface */ MemEvent* ev = NULL; uint32_t stride; bool foundStride = true; Addr targetAddress = 0; uint32_t strideIndex; for(uint32_t i = 0; i < recentAddrListCount - 1; ++i) { for(uint32_t j = i + 1; j < recentAddrListCount; ++j) { stride = j - i; strideIndex = 1; foundStride = true; for(uint32_t k = j + stride; k < recentAddrListCount; k += stride, strideIndex++) { targetAddress = getAddressByIndex(k); if(getAddressByIndex(k) - getAddressByIndex(i) != (strideIndex * stride)) { foundStride = false; break; } } if(foundStride) { Addr targetPrefetchAddress = targetAddress + (strideReach * stride); targetPrefetchAddress = targetPrefetchAddress - (targetPrefetchAddress % blockSize); if(overrunPageBoundary) { output->verbose(CALL_INFO, 2, 0, "Issue prefetch, target address: %" PRIx64 ", prefetch address: %" PRIx64 " (reach out: %" PRIu32 ", stride=%" PRIu32 "), prefetchAddress=%" PRIu64 "\n", targetAddress, targetAddress + (strideReach * stride), (strideReach * stride), stride, targetPrefetchAddress); statPrefetchOpportunities->addData(1); // Check next address is aligned to a cache line boundary assert((targetAddress + (strideReach * stride)) % blockSize == 0); ev = new MemEvent(getName(), targetAddress + (strideReach * stride), targetAddress + (strideReach * stride), Command::GetS); } else { const Addr targetAddressPhysPage = targetAddress / pageSize; const Addr targetPrefetchAddressPage = targetPrefetchAddress / pageSize; // Check next address is aligned to a cache line boundary assert(targetPrefetchAddress % blockSize == 0); // if the address we found and the next prefetch address are on the same // we can safely prefetch without causing a page fault, otherwise we // choose to not prefetch the address if(targetAddressPhysPage == targetPrefetchAddressPage) { output->verbose(CALL_INFO, 2, 0, "Issue prefetch, target address: %" PRIx64 ", prefetch address: %" PRIx64 " (reach out: %" PRIu32 ", stride=%" PRIu32 ")\n", targetAddress, targetPrefetchAddress, (strideReach * stride), stride); ev = new MemEvent(getName(), targetPrefetchAddress, targetPrefetchAddress, Command::GetS); statPrefetchOpportunities->addData(1); } else { output->verbose(CALL_INFO, 2, 0, "Cancel prefetch issue, request exceeds physical page limit\n"); output->verbose(CALL_INFO, 4, 0, "Target address: %" PRIx64 ", page=%" PRIx64 ", Prefetch address: %" PRIx64 ", page=%" PRIx64 "\n", targetAddress, targetAddressPhysPage, targetPrefetchAddress, targetPrefetchAddressPage); statPrefetchIssueCanceledByPageBoundary->addData(1); ev = NULL; } } break; } } if(ev != NULL) { break; } } if(ev != NULL) { std::vector<Event::HandlerBase*>::iterator callbackItr; Addr prefetchCacheLineBase = ev->getAddr() - (ev->getAddr() % blockSize); bool inHistory = false; const uint32_t currentHistCount = prefetchHistory->size(); output->verbose(CALL_INFO, 2, 0, "Checking prefetch history for cache line at base %" PRIx64 ", valid prefetch history entries=%" PRIu32 "\n", prefetchCacheLineBase, currentHistCount); for(uint32_t i = 0; i < currentHistCount; ++i) { if(prefetchHistory->at(i) == prefetchCacheLineBase) { inHistory = true; break; } } if(! inHistory) { statPrefetchEventsIssued->addData(1); // Remove the oldest cache line if(currentHistCount == prefetchHistoryCount) { prefetchHistory->pop_front(); } // Put the cache line at the back of the queue prefetchHistory->push_back(prefetchCacheLineBase); assert((ev->getAddr() % blockSize) == 0); // Cycle over each registered call back and notify them that we want to issue a prefet$ for(callbackItr = registeredCallbacks.begin(); callbackItr != registeredCallbacks.end(); callbackItr++) { // Create a new read request, we cannot issue a write because the data will get // overwritten and corrupt memory (even if we really do want to do a write) MemEvent* newEv = new MemEvent(getName(), ev->getAddr(), ev->getAddr(), Command::GetS); newEv->setSize(blockSize); newEv->setPrefetchFlag(true); (*(*callbackItr))(newEv); } delete ev; } else { statPrefetchIssueCanceledByHistory->addData(1); output->verbose(CALL_INFO, 2, 0, "Prefetch canceled - same cache line is found in the recent prefetch history.\n"); delete ev; } } } StridePrefetcher::StridePrefetcher(ComponentId_t id, Params& params) : CacheListener(id, params) { requireLibrary("memHierarchy"); verbosity = params.find<int>("verbose", 0); char* new_prefix = (char*) malloc(sizeof(char) * 128); snprintf(new_prefix, sizeof(char)*128, "StridePrefetcher[%s | @f:@p:@l] ", getName().c_str()); output = new Output(new_prefix, verbosity, 0, Output::STDOUT); free(new_prefix); recheckCountdown = 0; blockSize = params.find<uint64_t>("cache_line_size", 64); prefetchHistoryCount = params.find<uint32_t>("history", 16); prefetchHistory = new std::deque<uint64_t>(); strideReach = params.find<uint32_t>("reach", 2); strideDetectionRange = params.find<uint64_t>("detect_range", 4); recentAddrListCount = params.find<uint32_t>("address_count", 64); pageSize = params.find<uint64_t>("page_size", 4096); uint32_t overrunPB = params.find<uint32_t>("overrun_page_boundaries", 0); overrunPageBoundary = (overrunPB == 0) ? false : true; nextRecentAddressIndex = 0; recentAddrList = (Addr*) malloc(sizeof(Addr) * recentAddrListCount); for(uint32_t i = 0; i < recentAddrListCount; ++i) { recentAddrList[i] = (Addr) 0; } output->verbose(CALL_INFO, 1, 0, "StridePrefetcher created, cache line: %" PRIu64 ", page size: %" PRIu64 "\n", blockSize, pageSize); missEventsProcessed = 0; hitEventsProcessed = 0; statPrefetchOpportunities = registerStatistic<uint64_t>("prefetch_opportunities"); statPrefetchEventsIssued = registerStatistic<uint64_t>("prefetches_issued"); statPrefetchIssueCanceledByPageBoundary = registerStatistic<uint64_t>("prefetches_canceled_by_page_boundary"); statPrefetchIssueCanceledByHistory = registerStatistic<uint64_t>("prefetches_canceled_by_history"); } StridePrefetcher::~StridePrefetcher() { free(recentAddrList); } void StridePrefetcher::registerResponseCallback(Event::HandlerBase* handler) { registeredCallbacks.push_back(handler); } void StridePrefetcher::printStats(Output &out) { }
67b308e31fad35d3a4a7625ec5999aeb929c50d0
1e59d40a86cf6d7f6b92f5e002dc21387656aec0
/JfF/工大机试-答案/第三章/BT.cpp
b382747f3123683a226007598d847f4980661500
[]
no_license
Soplia/Codes
7bb0aecfec57d8bacb33bd1765038d0cffc19e54
3704f55b060877f61647b7a0fcf3d2eefe7fa47e
refs/heads/master
2020-04-20T14:06:36.386774
2019-02-02T23:37:21
2019-02-02T23:37:21
168,888,217
0
1
null
null
null
null
UTF-8
C++
false
false
1,173
cpp
BT.cpp
/* Subject:BT ID:3.4 Complier:Devcpp Author:JiaruiXie StartTime:05/02/17 15:52 Result:Accepted EndTime:05/02/17 16:17 */ #include <stdio.h> #include <string.h> #define N 50 typedef struct node { struct node *lchild,*rchild; char d; }node; node Tree[N]; char a[N],b[N]; int loc; node *create() { Tree[loc].lchild=Tree[loc].rchild=NULL; return &Tree[loc++]; } node *build(int s1,int e1,int s2,int e2) { node *t=create(); t->d=a[s1]; int pos; for(int i=s2;i<=e2;i++) if(a[s1]==b[i]) { pos=i; break; } if(pos!=s2) t->lchild=build(s1+1,s1+(pos-s2),s2,pos-1); if(pos!=e2) t->rchild=build(s1+(pos-s2)+1,e2,pos+1,e2); return t; } void postOrder(node *t) { if(t!=NULL) { postOrder(t->lchild); postOrder(t->rchild); printf("%c",t->d); } } int main() { while(scanf("%s%s",a,b)!=EOF) { loc=0; int len1=strlen(a); int len2=strlen(b); //printf("%d_%dHello\n",len1,len2); node *t=build(0,len1-1,0,len2-1); //printf("World\n"); postOrder(t); printf("\n"); } return 0; } /* InputData: ABC BAC FDXEAG XDEFAG OutputData: BCA XEDGAF */
b0ae3563929e43a6df25daa9085e9c6c243f6790
dcf04edb5c67acf276e3bdac8c40aa2b9502d993
/LuaCfgMgr.cpp
f15f884d1fa08ad74d09bd53ff1ed90026ab2b91
[]
no_license
boliuyan/stocks
9bc6e9a862e51bdef816f2a3ff6f5578704813d7
a4183b0f089538a1cb5fed06aa6f34f7514ab79c
refs/heads/master
2020-08-03T02:49:59.364813
2019-09-29T04:40:55
2019-09-29T04:40:55
211,602,848
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
1,808
cpp
LuaCfgMgr.cpp
#include "stdafx.h" #include "LuaCfgMgr.h" extern "C" { #include "lua.h" #include "lualib.h" #include "lauxlib.h" } #ifdef _DEBUG #pragma comment(lib,"..\\Debug\\luabind.lib") #else #pragma comment(lib,"..\\release\\luabind.lib") #endif CLuaCfgMgr::CLuaCfgMgr() { } CLuaCfgMgr::~CLuaCfgMgr() { } CLuaCfgMgr & CLuaCfgMgr::getInstance() { static CLuaCfgMgr m; return m; // TODO: ÔÚ´Ë´¦²åÈë return Óï¾ä } void CLuaCfgMgr::InitLua() { m_LuaState = luaL_newstate(); luaL_openlibs(m_LuaState); luabind::open(m_LuaState); LuaCfg m; m_cfg = m; return; } void CLuaCfgMgr::LoadLuaCfg() { if (luaL_dofile(m_LuaState, LUA_CONFIG_PATH)) { printf("%s", lua_tostring(m_LuaState, -1)); return; } luabind::object global = luabind::globals(m_LuaState); luabind::object configTable = global["Config"]; m_cfg.strFilePath =luabind::object_cast<std::string>(configTable["FilePath"]); m_cfg.strOutPutPath = luabind::object_cast<std::string>(configTable["OutPutPath"]); m_cfg.nReadTimeMode = luabind::object_cast<int>(configTable["ReadTimeMode"]); m_cfg.bReadListByLua = luabind::object_cast<bool>(configTable["ReadListByLua"]); m_cfg.nThread = luabind::object_cast<int>(configTable["thread"]); } void CLuaCfgMgr::setIsReadByLua(bool IsReadByLua) { m_cfg.bReadListByLua = IsReadByLua; } bool CLuaCfgMgr::getIsReadByLua() { return m_cfg.bReadListByLua; } std::string CLuaCfgMgr::getFilePath() { return m_cfg.strFilePath; } std::string CLuaCfgMgr::getOutPutPath() { return m_cfg.strOutPutPath; } int CLuaCfgMgr::getTimeMode() { return m_cfg.nReadTimeMode; } void CLuaCfgMgr::DestroyLua() { lua_close(m_LuaState); return; } int CLuaCfgMgr::getThread() { return m_cfg.nThread; }
95fb5f0caedee1489a195c791bad87e0bd5ab538
e934b8587ecfab8ed0bdba34533c8c115977803d
/test/tool/JudgeTool.re
aaf8331e365397a43648f6d9c5412a6d9bceca6e
[ "MIT" ]
permissive
III-three/Wonder.js
2d9d37e9db31e95a0b82c822597bfad21e354379
460d39cbfa1da7633300cc18c4a05787c0279c7d
refs/heads/master
2022-05-30T21:55:38.505054
2020-04-29T13:57:33
2020-04-29T13:57:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
299
re
JudgeTool.re
let isUndefined = value => value |> Obj.magic === Js.Undefined.empty; let isNotEqual = (value1, value2) => value1 != value2; let isEqual = (value1, value2) => value1 == value2; let isGreaterThan = (value, target) => value > target; let isGreaterOrEqualThan = (value, target) => value >= target;
471bfd618e670d3f9665dadbdd019b26de361b84
b7bbc7af21c3d35c7a69db6dcc5941f89eed0dad
/tp3/imn430-tp3/imn430-tp3/ConvexHull.cpp
a867e489d6d6071706d46e371317858af76bb618
[]
no_license
ExayDX/IMN430
e44ace8a113388115a6291928d211068246da55e
11c571413e821d441f6dfe770660a7bcc1ec3d68
refs/heads/master
2020-05-20T17:55:09.856140
2014-07-29T04:21:17
2014-07-29T04:21:17
null
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
5,762
cpp
ConvexHull.cpp
#include "ConvexHull.h" #include "Region.h" #include <algorithm> #include <iostream> using std::cout; using std::endl; using std::cin; #include <map> using std::map; #include <fstream> #include <string> #include <sstream> #include <cctype> ConvexHull::ConvexHull() { } ConvexHull::ConvexHull(const char* filename) { if (!loadFile(filename)) cout << "Unable to load file..." << endl; } ConvexHull::~ConvexHull(){} bool ConvexHull::loadFile(const char* filename) { bool success = false; if (filename) { pointList.clear(); std::ifstream ifs(filename, std::ifstream::in); while (ifs.good() && !ifs.eof()) { DCEL::Vertex pt; ifs >> pt; pointList.push_back(pt); } ifs.close(); success = true; } return success; } bool ConvexHull::isCoplanar(const vect& ab, const vect& ac, const vect& ad){ return abs(ab.cross(ac).dot(ad)) > 0; } void ConvexHull::initializeConflictsGraph() { //TODO... } bool ConvexHull::faceIsVisible(DCEL::Vertex*, DCEL::Region*) { //TODO... return false; } //TO FINISH!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! DCEL::Region* ConvexHull::createAFace(DCEL::Vertex* p1, DCEL::Vertex* p2, DCEL::Vertex* p3) { std::vector<DCEL::Vertex*> points; points.push_back(p1); points.push_back(p2); points.push_back(p3); for (int i = 0; i < points.size(); ++i) { if (points[i]->getEdge() == nullptr) { DCEL::HalfEdge* edge = new DCEL::HalfEdge(points[i]); points[i]->edge = edge; } } //TO FINISH... return &DCEL::Region(); } std::vector<DCEL::Vertex*> ConvexHull::sortPointsCCw(DCEL::Vertex* p1, DCEL::Vertex* p2, DCEL::Vertex* p3) { std::vector<DCEL::Vertex*> sortedPoints; sortedPoints.push_back(p1); sortedPoints.push_back(p2); sortedPoints.push_back(p3); //after only one iteration, the points will be sorted in x, //because there's only 3 points for (int i = 0; i < sortedPoints.size() -1; ++i) { if (sortedPoints[i]->x < sortedPoints[i + 1]->x) { DCEL::Vertex* temp = sortedPoints[i]; sortedPoints[i] = sortedPoints[i + 1]; sortedPoints[i + 1] = temp; } } //if the two last points are equal in x if (sortedPoints[1]->x == sortedPoints[2]->x && sortedPoints[1]->y < sortedPoints[2]->y) { DCEL::Vertex* temp = sortedPoints[1]; sortedPoints[1] = sortedPoints[2]; sortedPoints[2] = temp; } //if the two first points are equal in x if (sortedPoints[0]->x == sortedPoints[1]->x && sortedPoints[0]->y > sortedPoints[1]->y) { DCEL::Vertex* temp = sortedPoints[1]; sortedPoints[1] = sortedPoints[2]; sortedPoints[2] = temp; } return sortedPoints; } std::vector<DCEL::Edge*> ConvexHull::findHorizon(DCEL::Vertex* p) { //TO DO.... return std::vector<DCEL::Edge*>(); } void ConvexHull::computeConvexHull() { if (pointList.size() >= 4) { //STEP 1 //find 4 points not coplanar if (Clist.size() < 4) { auto aItt = pointList.begin(); auto bItt = ++aItt; auto cItt = ++bItt; auto dItt = ++cItt; auto ab = vect(*aItt, *bItt); auto ac = vect(*aItt, *cItt); for (; dItt != pointList.end() && isCoplanar(ab, ac, vect(*aItt, *dItt)); ++dItt); if (dItt == pointList.end()) { cout << "All points are coplanar. The convex hull can be computed with a 2D algorithm. Program is closing..." << endl; return; } else { //STEP 2 //Compute the convexHull made by the 4 points( C <- CH(p1,p2,p3,p4)) Clist.push_back(createAFace(&*aItt, &*bItt, &*cItt)); Clist.push_back(createAFace(&*aItt, &*bItt, &*dItt)); Clist.push_back(createAFace(&*aItt, &*cItt, &*dItt)); Clist.push_back(createAFace(&*bItt, &*cItt, &*dItt)); //TO FIX .... !!!!!!! //pointList.erase(aItt); //pointList.erase(bItt); //pointList.erase(cItt); //pointList.erase(dItt); } //STEP 3 //Shuffle rests of the points //TO put back as "std::random_shuffle(pointList.begin(), pointList.end()); once the fix at step 2 will be done !!! std::random_shuffle(pointList.begin()+4, pointList.end()); //STEP 4 //Initalize the conflits Graph<aNpoint, aCface> initializeConflictsGraph(); //STEP 5 //IF THE POINTS GET ERASED, R MUST BE STARTED AT 0 !!!!!!!!!! for (int r = 4; r < pointList.size(); ++r) { if (Fconflit[&pointList[r]].size() > 0) { //7. Add pr to C??? C contains faces... //8. retirer les faces dans Fconflit(pr) de C //9. Creer une liste ordonnee L formant l'horizon de pr std::vector<DCEL::Edge*> prHorizon = findHorizon(&pointList[r]); //10. Pour chaque arete e de L for (int i = 0; i < prHorizon.size(); ++i) { //11. Relier e a pr en creant une face triangulaire f et l'ajouter a C DCEL::Region* regionF = createAFace(prHorizon[i]->getOrigin(), prHorizon[i]->getEnd(), &pointList[r]); Clist.push_back(regionF); //12. si f est complanaire avec la face voisine f^t le long de e, //13.combiner f et f^t en une seule face dont la liste des conflits est la meme que pour f^t //14. sinon //15. creer un sommet pour f dans G //16. P(e) <- Pconflit(f1) U Pconflit(f2) ou f1 et f2 sont les 2 faces incidentes a e dans CH(P_r-1) std::vector<DCEL::Vertex*> P; //17. for (int i = 0; i < P.size(); ++i) { //18. si f est visible depuis p, ajouter (p,f) dans G if (faceIsVisible(P[i], regionF)) Fconflit[P[i]].push_back(regionF); } } //19. Suprimer le sommet associe à pr de G //Fconflit.erase(&pointList[r]); //20. Suprimer les sommets correspondants aux faces dans Fconflit(pr) de G ainsi que leurs aretes incidentes } } } } else cout << "Not enough points to create a convex hull, program is closing..." << endl; }
93869010a3c04480bc2274b130e423fdd6edf752
4352b5c9e6719d762e6a80e7a7799630d819bca3
/tutorials/eulerVortex.twitch.alternative.numerics/eulerVortex.cyclic.twitch.moving/1.3/rho
4a0e5a6fc9cd526a45c1174e5cd53e852730f2ea
[]
no_license
dashqua/epicProject
d6214b57c545110d08ad053e68bc095f1d4dc725
54afca50a61c20c541ef43e3d96408ef72f0bcbc
refs/heads/master
2022-02-28T17:20:20.291864
2019-10-28T13:33:16
2019-10-28T13:33:16
184,294,390
1
0
null
null
null
null
UTF-8
C++
false
false
166,182
rho
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "1.3"; object rho; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [1 -3 0 0 0 0 0]; internalField nonuniform List<scalar> 22500 ( 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40002 1.4 1.39999 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.39999 1.40001 1.40002 1.39999 1.4 1.40003 1.4 1.39999 1.40001 1.4 1.40001 1.40001 1.39999 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.39998 1.40001 1.40003 1.39998 1.39999 1.40003 1.40001 1.40001 1.4 1.39998 1.40002 1.40002 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40002 1.40001 1.40002 1.40001 1.40002 1.40002 1.40002 1.40001 1.40002 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40002 1.39999 1.40001 1.40002 1.39998 1.40001 1.40004 1.39997 1.39999 1.40004 1.39999 1.39999 1.40003 1.4 1.40001 1.40002 1.39997 1.40001 1.40002 1.39999 1.40002 1.4 1.39998 1.40002 1.40002 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40002 1.40001 1.40001 1.40002 1.40002 1.40002 1.40003 1.40002 1.40003 1.40003 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.4 1.4 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40002 1.4 1.40001 1.40002 1.4 1.4 1.40002 1.40001 1.39998 1.40002 1.40003 1.39995 1.40002 1.40007 1.39995 1.39998 1.40006 1.39999 1.40001 1.39999 1.39998 1.40006 1.40001 1.39996 1.40002 1.40001 1.39998 1.40002 1.40002 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40002 1.40002 1.40001 1.40002 1.40003 1.40002 1.40003 1.40003 1.40004 1.40003 1.40004 1.40003 1.40003 1.40002 1.40002 1.40002 1.40001 1.4 1.4 1.39999 1.39999 1.39999 1.39999 1.39998 1.39998 1.39998 1.39998 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40003 1.39998 1.40001 1.40005 1.39996 1.39999 1.40007 1.39997 1.39999 1.40005 1.39996 1.40001 1.40004 1.39994 1.40003 1.40004 1.39998 1.40005 1.39996 1.39996 1.40009 1.40001 1.39995 1.40002 1.40002 1.39999 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40002 1.40001 1.40001 1.40002 1.40002 1.40002 1.40003 1.40004 1.40003 1.40004 1.40005 1.40005 1.40006 1.40004 1.40006 1.40004 1.40004 1.40004 1.40003 1.40002 1.40001 1.40001 1.4 1.39999 1.39999 1.39998 1.39998 1.39998 1.39998 1.39998 1.39998 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40003 1.4 1.39998 1.40005 1.40001 1.39994 1.40006 1.40006 1.39991 1.40002 1.4001 1.39989 1.39999 1.40011 1.39995 1.4 1.4 1.39998 1.4001 1.39994 1.39993 1.40012 1.39998 1.39994 1.40008 1.40001 1.39995 1.40002 1.40002 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40002 1.4 1.40002 1.40002 1.40002 1.40003 1.40005 1.40004 1.40004 1.40007 1.40006 1.40007 1.40006 1.40008 1.40007 1.40007 1.40006 1.40006 1.40004 1.40003 1.40003 1.40001 1.4 1.39999 1.39999 1.39998 1.39997 1.39997 1.39997 1.39997 1.39997 1.39998 1.39998 1.39998 1.39999 1.39999 1.39999 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40002 1.40001 1.40001 1.40001 1.40001 1.40002 1.40002 1.40001 1.4 1.40002 1.40003 1.39996 1.40003 1.40007 1.39994 1.40001 1.40007 1.39992 1.40004 1.4001 1.39989 1.40003 1.40006 1.39996 1.40006 1.39991 1.39999 1.40019 1.3999 1.3999 1.40014 1.4 1.39993 1.40005 1.40002 1.39998 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40003 1.4 1.40001 1.40002 1.40002 1.40004 1.40005 1.40005 1.40005 1.40008 1.40007 1.40008 1.40009 1.4001 1.40011 1.40008 1.4001 1.40008 1.40007 1.40006 1.40006 1.40004 1.40002 1.40001 1.4 1.39999 1.39998 1.39997 1.39997 1.39997 1.39997 1.39997 1.39997 1.39997 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40002 1.40001 1.40002 1.40001 1.40001 1.40002 1.40002 1.39997 1.40006 1.40003 1.39992 1.40008 1.40007 1.39986 1.40004 1.40013 1.39987 1.40001 1.40015 1.39988 1.39998 1.40007 1.39998 1.40007 1.39988 1.39999 1.40021 1.39984 1.39992 1.40021 1.39992 1.39991 1.40012 1.40001 1.39995 1.40001 1.4 1.4 1.40002 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40002 1.4 1.39999 1.40003 1.40002 1.39999 1.40003 1.40001 1.40005 1.40005 1.40005 1.40005 1.40009 1.4001 1.40008 1.40012 1.40013 1.40014 1.4001 1.40014 1.40013 1.40012 1.4001 1.4001 1.40008 1.40005 1.40005 1.40002 1.40001 1.39999 1.39999 1.39998 1.39997 1.39996 1.39996 1.39996 1.39996 1.39997 1.39997 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.40001 1.40001 1.40002 1.40001 1.40002 1.40001 1.40002 1.40003 1.40001 1.4 1.40005 1.40001 1.39997 1.40007 1.40004 1.3999 1.40006 1.40009 1.39988 1.40005 1.40012 1.39982 1.40002 1.40014 1.39992 1.40001 1.39993 1.40006 1.4002 1.39974 1.39996 1.4003 1.39984 1.3999 1.40018 1.39996 1.39994 1.40007 1.40001 1.39999 1.40002 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40002 1.40001 1.39998 1.40002 1.40003 1.39998 1.40002 1.40003 1.40004 1.40007 1.40003 1.40006 1.4001 1.40013 1.4001 1.40016 1.40016 1.40017 1.40014 1.40018 1.40021 1.40016 1.40017 1.40015 1.40013 1.40012 1.4001 1.40008 1.40005 1.40004 1.40002 1.4 1.39999 1.39998 1.39997 1.39997 1.39996 1.39996 1.39997 1.39997 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40002 1.40001 1.40004 1.40001 1.40001 1.40004 1.40004 1.39995 1.40007 1.40007 1.39987 1.40006 1.40014 1.39986 1.40002 1.40015 1.39983 1.40001 1.40017 1.39991 1.39999 1.39995 1.40006 1.40018 1.39972 1.40002 1.40032 1.39973 1.39993 1.40026 1.39988 1.39992 1.40012 1.4 1.39998 1.40002 1.39999 1.39999 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40002 1.39998 1.40001 1.40005 1.39999 1.4 1.40006 1.40003 1.40006 1.40003 1.40006 1.40012 1.40014 1.4001 1.40017 1.40021 1.40018 1.4002 1.40023 1.40029 1.4002 1.40024 1.40022 1.40022 1.4002 1.40018 1.40016 1.40012 1.40011 1.40008 1.40006 1.40004 1.40002 1.4 1.39999 1.39998 1.39998 1.39997 1.39997 1.39997 1.39997 1.39998 1.39998 1.39999 1.4 1.4 1.40001 1.40001 1.40001 1.40003 1.40001 1.40004 1.40002 1.40001 1.40005 1.40003 1.39996 1.40008 1.40003 1.39991 1.4001 1.40009 1.39986 1.40006 1.40011 1.39981 1.40006 1.4002 1.39984 1.39995 1.40007 1.40007 1.40008 1.3997 1.4001 1.40033 1.39964 1.39997 1.40032 1.3998 1.39994 1.40017 1.39993 1.39995 1.40004 1.39999 1.40001 1.40002 1.39999 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40002 1.39999 1.39999 1.40006 1.39999 1.39998 1.40006 1.40005 1.40002 1.40004 1.40004 1.40015 1.40013 1.40012 1.40016 1.40024 1.40018 1.40026 1.40029 1.40034 1.40026 1.40029 1.40035 1.4003 1.40031 1.40028 1.40026 1.40024 1.40021 1.4002 1.40016 1.40014 1.4001 1.40008 1.40006 1.40004 1.40002 1.40001 1.39999 1.39999 1.39998 1.39998 1.39999 1.39999 1.39999 1.4 1.4 1.40001 1.40002 1.40002 1.40002 1.40003 1.40005 1.4 1.40006 1.40002 1.4 1.40005 1.40006 1.39994 1.40007 1.4001 1.39988 1.40004 1.40012 1.39986 1.40005 1.40017 1.39983 1.39996 1.40013 1.40002 1.40002 1.39978 1.40013 1.40027 1.39961 1.40005 1.40034 1.3997 1.39997 1.40022 1.39987 1.39996 1.40007 1.39998 1.40002 1.40002 1.39998 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.39997 1.40005 1.40002 1.39996 1.40006 1.40007 1.4 1.40001 1.40006 1.40014 1.40013 1.40007 1.40017 1.40026 1.40021 1.40028 1.40036 1.40034 1.40035 1.40036 1.40048 1.40039 1.40042 1.40041 1.4004 1.40039 1.40037 1.40035 1.40032 1.40029 1.40026 1.40022 1.40019 1.40015 1.40012 1.40009 1.40007 1.40005 1.40003 1.40002 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40002 1.40002 1.40002 1.40003 1.40005 1.40002 1.40005 1.40004 1.40001 1.40006 1.40006 1.39996 1.40009 1.40007 1.3999 1.40008 1.40009 1.39988 1.40008 1.40015 1.3998 1.4 1.4002 1.39995 1.39994 1.39989 1.40015 1.4002 1.3996 1.40009 1.40034 1.39965 1.40002 1.40023 1.3998 1.40001 1.40011 1.39996 1.40003 1.4 1.39996 1.40003 1.40002 1.39999 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40002 1.39998 1.40002 1.40004 1.39994 1.40004 1.40008 1.39999 1.39998 1.4001 1.40013 1.40013 1.40003 1.40018 1.40028 1.40025 1.40027 1.40041 1.40033 1.40044 1.40045 1.40057 1.4005 1.40051 1.40059 1.40056 1.40057 1.40057 1.40055 1.40054 1.4005 1.40048 1.40043 1.4004 1.40036 1.40031 1.40027 1.40022 1.40018 1.40015 1.40011 1.40009 1.40007 1.40005 1.40004 1.40003 1.40003 1.40003 1.40003 1.40003 1.40003 1.40004 1.40004 1.40003 1.40007 1.40001 1.40007 1.40005 1.40001 1.40006 1.40007 1.39995 1.40007 1.40009 1.39993 1.40006 1.4001 1.39985 1.40002 1.40019 1.3999 1.39994 1.39999 1.4001 1.40012 1.39967 1.40011 1.40029 1.39963 1.40006 1.40024 1.39976 1.40004 1.40011 1.39991 1.40003 1.39997 1.39997 1.40007 1.39999 1.39997 1.40003 1.40001 1.39998 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40005 1.39996 1.40001 1.40009 1.39997 1.39997 1.40011 1.40015 1.40006 1.40004 1.40015 1.40035 1.40021 1.40026 1.40042 1.40036 1.40048 1.40057 1.40057 1.40062 1.40061 1.40078 1.40074 1.40076 1.4008 1.40081 1.4008 1.40079 1.40078 1.40075 1.40071 1.40067 1.40061 1.40056 1.40049 1.40043 1.40037 1.40031 1.40026 1.40021 1.40017 1.40013 1.40011 1.40009 1.40007 1.40007 1.40006 1.40005 1.40006 1.40005 1.40005 1.40007 1.40004 1.40008 1.40006 1.40003 1.40007 1.40006 1.39999 1.4001 1.40006 1.39994 1.40009 1.40008 1.39987 1.40006 1.40018 1.39987 1.39995 1.40008 1.40005 1.40006 1.39974 1.40011 1.40026 1.39965 1.40006 1.40022 1.39975 1.40007 1.4001 1.39988 1.40004 1.39997 1.40001 1.4001 1.39994 1.39996 1.40006 1.39999 1.39997 1.40001 1.40002 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.39999 1.40003 1.39999 1.39998 1.40009 1.39997 1.39996 1.40011 1.40015 1.4 1.40001 1.40015 1.40034 1.40017 1.40017 1.40042 1.40039 1.40048 1.40067 1.4005 1.40073 1.40073 1.40092 1.40091 1.40091 1.40105 1.40108 1.40109 1.40114 1.40115 1.40116 1.40113 1.40111 1.40105 1.40099 1.40092 1.40084 1.40075 1.40066 1.40057 1.40049 1.40041 1.40034 1.40028 1.40023 1.40019 1.40016 1.40013 1.40011 1.4001 1.40009 1.40008 1.40007 1.40009 1.40007 1.40009 1.40005 1.40009 1.40006 1.40005 1.40009 1.40005 1.39998 1.4001 1.40008 1.39993 1.40007 1.40014 1.3999 1.39999 1.40009 1.4 1.40006 1.39982 1.40007 1.40024 1.39969 1.40004 1.40021 1.39975 1.40008 1.40009 1.39988 1.40006 1.39997 1.40003 1.40008 1.39987 1.4 1.40011 1.39994 1.39996 1.40006 1.40003 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40002 1.40001 1.39997 1.40007 1.4 1.39994 1.40011 1.40011 1.39997 1.39997 1.4002 1.40027 1.40015 1.40005 1.40049 1.40039 1.40044 1.40065 1.4005 1.40075 1.40094 1.40093 1.40105 1.40106 1.40127 1.40137 1.40139 1.4015 1.40159 1.40162 1.40165 1.40165 1.40164 1.40159 1.40152 1.40143 1.40133 1.40122 1.40109 1.40097 1.40085 1.40073 1.40062 1.40052 1.40044 1.40036 1.4003 1.40025 1.40021 1.40018 1.40015 1.40014 1.40013 1.40011 1.40012 1.40008 1.40012 1.40008 1.40008 1.40013 1.40005 1.4 1.40016 1.40009 1.39993 1.40009 1.40014 1.39991 1.40001 1.40009 1.39999 1.40007 1.39986 1.40003 1.40023 1.39971 1.4 1.40023 1.39979 1.40006 1.40008 1.39987 1.40006 1.39996 1.40003 1.40003 1.39982 1.40009 1.40014 1.39986 1.39998 1.40011 1.4 1.39996 1.40001 1.40002 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40002 1.39998 1.40004 1.40003 1.39993 1.40012 1.40007 1.39994 1.39998 1.40023 1.40023 1.40008 1.40005 1.40048 1.40047 1.40025 1.40065 1.40053 1.40071 1.4011 1.40085 1.40115 1.4012 1.40146 1.40161 1.40167 1.40185 1.40204 1.40211 1.40222 1.40227 1.40233 1.40233 1.4023 1.40223 1.40214 1.40202 1.40187 1.40171 1.40154 1.40137 1.4012 1.40104 1.40089 1.40076 1.40064 1.40053 1.40044 1.40037 1.40031 1.40027 1.40022 1.40021 1.40017 1.40016 1.40015 1.40014 1.40012 1.40015 1.40007 1.40007 1.40018 1.40009 1.39996 1.40012 1.40014 1.39995 1.40003 1.40008 1.40001 1.4001 1.39987 1.4 1.40025 1.39973 1.39997 1.40026 1.3998 1.40001 1.40007 1.39987 1.40004 1.39997 1.40003 1.39999 1.39984 1.40018 1.40009 1.39976 1.40005 1.40016 1.39992 1.39993 1.40004 1.40002 1.39999 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40002 1.39999 1.40001 1.40004 1.39994 1.40009 1.40007 1.39989 1.40003 1.4002 1.40018 1.39998 1.4001 1.40041 1.40047 1.40004 1.40063 1.40059 1.40063 1.40107 1.40083 1.40108 1.40142 1.40151 1.40178 1.40189 1.40216 1.40243 1.40258 1.40276 1.40294 1.40308 1.40318 1.40321 1.40321 1.40316 1.40307 1.40293 1.40276 1.40256 1.40234 1.40212 1.40189 1.40166 1.40144 1.40124 1.40106 1.4009 1.40076 1.40064 1.40053 1.40045 1.40038 1.40033 1.40028 1.40025 1.40023 1.40019 1.4002 1.40015 1.40011 1.40022 1.40013 1.39998 1.40018 1.40018 1.39996 1.40005 1.40012 1.40004 1.40009 1.39989 1.40001 1.40027 1.39974 1.39997 1.40029 1.39976 1.39996 1.40011 1.39988 1.40004 1.4 1.40001 1.39997 1.39989 1.40022 1.39999 1.39971 1.40016 1.40016 1.3998 1.39994 1.4001 1.40001 1.39997 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40003 1.39996 1.40004 1.40009 1.39986 1.40008 1.40019 1.40007 1.39993 1.40012 1.40035 1.40031 1.39997 1.40047 1.40078 1.40036 1.40098 1.40083 1.40095 1.40156 1.40144 1.40184 1.40202 1.40237 1.40272 1.40296 1.40322 1.40358 1.40381 1.40405 1.40419 1.4043 1.40435 1.40434 1.40425 1.40411 1.40392 1.40369 1.40343 1.40314 1.40284 1.40253 1.40224 1.40196 1.40169 1.40145 1.40124 1.40105 1.40088 1.40075 1.40064 1.40053 1.40047 1.40039 1.40035 1.40031 1.40025 1.40023 1.40028 1.40017 1.40007 1.40024 1.40021 1.4 1.40012 1.40017 1.40005 1.40009 1.39993 1.40004 1.40027 1.39976 1.39998 1.4003 1.39973 1.39996 1.40017 1.39986 1.40001 1.40002 1.39997 1.39996 1.39993 1.40018 1.39989 1.39974 1.40028 1.4001 1.39971 1.40003 1.40018 1.39996 1.39994 1.40002 1.40002 1.4 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40002 1.39999 1.40001 1.40009 1.39988 1.40004 1.40022 1.39993 1.39994 1.40015 1.40029 1.40012 1.40001 1.40037 1.4008 1.40013 1.40079 1.40087 1.40083 1.40149 1.40141 1.40168 1.40216 1.40242 1.40286 1.40319 1.40359 1.40407 1.40446 1.40482 1.40515 1.4054 1.40562 1.40574 1.40577 1.40573 1.4056 1.40541 1.40515 1.40484 1.40449 1.40412 1.40373 1.40334 1.40296 1.4026 1.40227 1.40195 1.40167 1.40143 1.40121 1.40103 1.40087 1.40075 1.40063 1.40055 1.40046 1.40042 1.40038 1.40032 1.4002 1.40032 1.40029 1.40006 1.4002 1.40024 1.40006 1.40012 1.40004 1.40008 1.40024 1.39981 1.4 1.40029 1.39972 1.4 1.40022 1.39981 1.39998 1.40004 1.39994 1.39996 1.39995 1.40011 1.39986 1.39982 1.40032 1.39999 1.39967 1.40016 1.4002 1.39987 1.39993 1.40007 1.40003 1.39999 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40006 1.39994 1.39999 1.40022 1.39985 1.39992 1.40022 1.40018 1.39999 1.40007 1.40037 1.40061 1.40007 1.40044 1.40109 1.40053 1.40132 1.40132 1.40146 1.40217 1.40234 1.40284 1.40326 1.4038 1.40437 1.40493 1.40541 1.40596 1.40641 1.40682 1.40715 1.40736 1.40749 1.40751 1.40742 1.40724 1.40698 1.40663 1.40624 1.40579 1.40532 1.40483 1.40435 1.40387 1.40341 1.40298 1.40259 1.40224 1.40192 1.40164 1.4014 1.40119 1.40102 1.40086 1.40075 1.40065 1.40055 1.40045 1.40047 1.40041 1.40022 1.40032 1.40033 1.40011 1.4002 1.40017 1.40012 1.40023 1.3999 1.40005 1.40028 1.39976 1.40004 1.40024 1.39976 1.39997 1.40009 1.39992 1.39996 1.39995 1.40005 1.39989 1.39989 1.40027 1.3999 1.39969 1.40024 1.40014 1.39975 1.39996 1.40013 1.40001 1.39996 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40003 1.39998 1.39997 1.40019 1.39988 1.39989 1.4003 1.40006 1.3999 1.40013 1.40035 1.40031 1.40005 1.4003 1.40104 1.40033 1.40101 1.40125 1.4012 1.40199 1.4022 1.4026 1.4032 1.4038 1.40446 1.40512 1.40578 1.40651 1.4072 1.40782 1.4084 1.40885 1.40922 1.40947 1.40959 1.40957 1.40945 1.4092 1.40885 1.40842 1.40791 1.40736 1.40678 1.40618 1.40558 1.40499 1.40442 1.40389 1.4034 1.40295 1.40254 1.40219 1.40188 1.40161 1.40137 1.40119 1.40099 1.40087 1.40076 1.40068 1.40049 1.40052 1.40049 1.40027 1.40035 1.40032 1.40017 1.40026 1.40005 1.4001 1.40028 1.39986 1.40008 1.40022 1.39975 1.40001 1.40014 1.39989 1.39994 1.39997 1.40003 1.39993 1.3999 1.40017 1.39986 1.39976 1.40027 1.40005 1.39969 1.40003 1.40017 1.39995 1.39992 1.40001 1.40002 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.39999 1.39997 1.40012 1.39994 1.39986 1.40032 1.4 1.39982 1.40019 1.40026 1.40005 1.40002 1.40027 1.40079 1.40029 1.40049 1.40135 1.40083 1.40173 1.40195 1.40227 1.40298 1.40357 1.40431 1.40503 1.40587 1.40673 1.40766 1.40849 1.40933 1.41009 1.41075 1.4113 1.4117 1.41195 1.41206 1.41201 1.41182 1.4115 1.41106 1.41053 1.40992 1.40925 1.40854 1.40782 1.40709 1.40637 1.40569 1.40503 1.40442 1.40386 1.40336 1.4029 1.40251 1.40215 1.40184 1.40159 1.40136 1.40118 1.40098 1.40088 1.40079 1.40057 1.40058 1.40054 1.40032 1.40037 1.40025 1.40021 1.40033 1.39999 1.40013 1.40023 1.39981 1.40007 1.40017 1.39986 1.39995 1.39999 1.40001 1.39994 1.39988 1.4001 1.39988 1.39981 1.40024 1.39999 1.39971 1.40011 1.40018 1.39988 1.3999 1.40005 1.40004 1.39999 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.39999 1.40007 1.39999 1.39986 1.40025 1.40001 1.39975 1.40023 1.40018 1.39989 1.40004 1.40031 1.40047 1.40015 1.40029 1.40119 1.40057 1.40129 1.40173 1.40184 1.40263 1.40317 1.40395 1.4047 1.40564 1.40663 1.4077 1.40877 1.40983 1.41091 1.41189 1.41278 1.41354 1.41414 1.41459 1.41485 1.41493 1.41483 1.41458 1.41417 1.41365 1.41301 1.41228 1.41149 1.41066 1.4098 1.40893 1.40808 1.40725 1.40646 1.40572 1.40502 1.40441 1.40383 1.40332 1.40287 1.40248 1.40212 1.40184 1.40158 1.40137 1.40111 1.40102 1.4009 1.40064 1.40064 1.40055 1.4004 1.40045 1.40019 1.40022 1.4003 1.39995 1.40015 1.40018 1.39986 1.4 1.40004 1.39998 1.39993 1.39987 1.40006 1.39992 1.39984 1.40017 1.39995 1.39974 1.40014 1.40014 1.39983 1.39994 1.40011 1.40004 1.39997 1.39999 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40004 1.40001 1.39991 1.40015 1.40004 1.39973 1.40022 1.40012 1.39981 1.40009 1.40027 1.40021 1.40012 1.40017 1.40085 1.40053 1.40067 1.40161 1.40131 1.40222 1.40265 1.40341 1.4042 1.40513 1.40621 1.40735 1.40861 1.40986 1.4112 1.41251 1.41374 1.41489 1.4159 1.41675 1.41742 1.41788 1.41813 1.41819 1.41804 1.41773 1.41724 1.41662 1.41588 1.41505 1.41414 1.41317 1.41217 1.41116 1.41016 1.40918 1.40824 1.40734 1.40651 1.40572 1.40503 1.40437 1.4038 1.4033 1.40284 1.40245 1.40209 1.40181 1.40159 1.40127 1.40113 1.40101 1.40077 1.4007 1.4005 1.40044 1.40047 1.40016 1.40025 1.40025 1.39994 1.40009 1.40009 1.39997 1.39996 1.39991 1.40003 1.39994 1.39985 1.4001 1.39994 1.39977 1.40013 1.40009 1.39979 1.39996 1.40013 1.4 1.39994 1.39999 1.40002 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40002 1.4 1.39994 1.40007 1.40007 1.39979 1.40017 1.40012 1.39977 1.40013 1.40021 1.4 1.40005 1.40015 1.40057 1.40031 1.40034 1.40135 1.40092 1.40163 1.40218 1.40271 1.40365 1.40435 1.40554 1.40667 1.40804 1.40943 1.41093 1.41254 1.41406 1.4156 1.41703 1.41832 1.41946 1.42038 1.42109 1.42156 1.4218 1.42182 1.42163 1.42125 1.4207 1.42001 1.41918 1.41824 1.41722 1.41613 1.415 1.41385 1.41269 1.41155 1.41044 1.40936 1.40836 1.4074 1.40654 1.40573 1.40501 1.40435 1.40376 1.40327 1.40282 1.40236 1.40205 1.4018 1.40143 1.40125 1.40104 1.40084 1.40079 1.40049 1.40045 1.40042 1.40014 1.40023 1.40018 1.4 1.40003 1.39997 1.40002 1.39996 1.39987 1.40004 1.39993 1.39981 1.40011 1.40005 1.39979 1.39998 1.40012 1.39995 1.39991 1.40001 1.40003 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40002 1.4 1.39996 1.40003 1.40005 1.39986 1.40009 1.40013 1.39979 1.40012 1.40013 1.39988 1.40008 1.40009 1.40023 1.40026 1.40017 1.40086 1.40077 1.40091 1.40187 1.40193 1.40299 1.40351 1.40464 1.40578 1.40713 1.40858 1.41018 1.41195 1.41374 1.41556 1.41739 1.41913 1.42074 1.42218 1.4234 1.42438 1.42511 1.42557 1.4258 1.42578 1.42555 1.42513 1.42452 1.42377 1.42287 1.42186 1.42075 1.41957 1.41832 1.41703 1.41573 1.41441 1.41313 1.41187 1.41067 1.40953 1.40844 1.40746 1.40655 1.40571 1.40497 1.40428 1.40368 1.40321 1.40267 1.40227 1.40196 1.4016 1.40137 1.40106 1.40088 1.40077 1.40048 1.40046 1.40035 1.40013 1.40015 1.40008 1.40004 1.4 1.39991 1.40001 1.39994 1.39985 1.40007 1.4 1.3998 1.4 1.40011 1.39993 1.39991 1.40003 1.40004 1.39999 1.39999 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.39999 1.40003 1.40005 1.39993 1.40002 1.4001 1.39983 1.40007 1.4001 1.39982 1.40006 1.40009 1.40006 1.40016 1.40002 1.40059 1.40049 1.40042 1.40143 1.40136 1.40217 1.40279 1.40353 1.40486 1.40596 1.40745 1.40899 1.41088 1.41282 1.41482 1.41698 1.41909 1.42114 1.42309 1.42484 1.42638 1.42765 1.42866 1.42937 1.42981 1.42999 1.42994 1.42968 1.42922 1.4286 1.42782 1.42691 1.42587 1.42472 1.42347 1.42215 1.42075 1.41931 1.41785 1.41638 1.41493 1.4135 1.41215 1.41083 1.40961 1.40848 1.40741 1.40647 1.40563 1.4048 1.40411 1.40355 1.40294 1.40249 1.40207 1.40168 1.40143 1.40107 1.40088 1.4007 1.40043 1.40039 1.40027 1.40014 1.40009 1.4 1.40002 1.39997 1.39991 1.40003 1.39996 1.39982 1.4 1.40009 1.39992 1.39993 1.40005 1.40003 1.39997 1.39998 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.39999 1.39999 1.40001 1.40003 1.39997 1.40001 1.40009 1.3999 1.4 1.40008 1.39986 1.40008 1.40005 1.39988 1.40016 1.40003 1.40018 1.4003 1.40026 1.40088 1.40103 1.40125 1.4022 1.40251 1.40384 1.40473 1.40611 1.40758 1.40942 1.4114 1.4135 1.41583 1.41822 1.42063 1.42301 1.42528 1.42738 1.42923 1.43081 1.43208 1.43303 1.43368 1.43405 1.43417 1.43407 1.43378 1.43333 1.43273 1.43199 1.43112 1.43013 1.42901 1.42777 1.42642 1.42498 1.42344 1.42186 1.42022 1.41858 1.41694 1.41531 1.41376 1.41227 1.41085 1.40954 1.40833 1.40719 1.40624 1.40527 1.40448 1.4038 1.40312 1.40262 1.4021 1.40169 1.40137 1.401 1.40083 1.40062 1.40038 1.40029 1.40016 1.4001 1.40005 1.39997 1.40001 1.39996 1.39987 1.40001 1.40005 1.3999 1.39992 1.40005 1.40001 1.39995 1.39999 1.40002 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40002 1.40002 1.39997 1.39997 1.40004 1.39997 1.39999 1.40008 1.39989 1.40002 1.40005 1.39988 1.40007 1.39997 1.40001 1.40025 1.4 1.40054 1.40065 1.40065 1.40155 1.40176 1.40269 1.40367 1.4046 1.40612 1.40772 1.40968 1.41173 1.41408 1.41665 1.41926 1.42199 1.4247 1.4273 1.42972 1.43188 1.43374 1.43524 1.43639 1.4372 1.4377 1.43793 1.43794 1.43778 1.43748 1.43707 1.43655 1.43593 1.43521 1.43436 1.43339 1.43228 1.43101 1.42961 1.42807 1.42641 1.42465 1.42283 1.42097 1.41909 1.41724 1.41545 1.41371 1.41207 1.41056 1.40911 1.40784 1.40671 1.40561 1.40471 1.4039 1.40316 1.40259 1.40202 1.40161 1.40124 1.40087 1.40067 1.40047 1.4003 1.40019 1.40008 1.40005 1.39999 1.39993 1.4 1.40001 1.39989 1.39993 1.40004 1.39999 1.39995 1.39999 1.40003 1.4 1.39999 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40002 1.40002 1.4 1.4 1.40002 1.39997 1.39996 1.40004 1.39997 1.40001 1.40002 1.39987 1.40005 1.40004 1.39987 1.40011 1.40003 1.40023 1.40029 1.40034 1.4009 1.40127 1.4016 1.40269 1.40324 1.40468 1.40599 1.4078 1.40969 1.41197 1.41452 1.41723 1.42014 1.42315 1.42615 1.42907 1.4318 1.43425 1.43634 1.43803 1.4393 1.44016 1.44066 1.44087 1.44085 1.44068 1.44043 1.44013 1.4398 1.43946 1.43908 1.43864 1.43811 1.43745 1.43662 1.43561 1.43439 1.43297 1.43136 1.42956 1.42761 1.42556 1.42343 1.42128 1.41912 1.41703 1.41502 1.41311 1.41137 1.40968 1.40822 1.40692 1.40569 1.40469 1.40378 1.40301 1.40237 1.40178 1.40138 1.40101 1.40069 1.40049 1.40029 1.40018 1.4001 1.4 1.40002 1.4 1.39991 1.39995 1.40003 1.39997 1.39994 1.39999 1.40002 1.39999 1.39998 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.39999 1.4 1.40004 1.40002 1.39999 1.40001 1.39997 1.39996 1.40003 1.39995 1.40001 1.39998 1.3999 1.40008 1.39994 1.39996 1.40023 1.40007 1.40051 1.40074 1.40089 1.40173 1.40226 1.4032 1.40449 1.40584 1.40764 1.40966 1.41207 1.41474 1.41765 1.4208 1.42406 1.42736 1.43057 1.43359 1.43629 1.43857 1.44035 1.44162 1.44238 1.44269 1.44264 1.44234 1.44191 1.44145 1.44105 1.44075 1.44057 1.44051 1.44053 1.44057 1.44057 1.44047 1.44018 1.43966 1.43887 1.43778 1.43638 1.43469 1.43273 1.43055 1.42819 1.42574 1.42323 1.42072 1.41828 1.41592 1.41374 1.41172 1.40983 1.40819 1.40672 1.40542 1.40434 1.40338 1.40262 1.40199 1.40143 1.40104 1.4007 1.40047 1.4003 1.40014 1.40008 1.40003 1.39995 1.39997 1.40001 1.39996 1.39994 1.39999 1.40001 1.39998 1.39998 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.39999 1.39999 1.4 1.4 1.39999 1.40003 1.40003 1.39999 1.39999 1.39996 1.39999 1.4 1.3999 1.39997 1.39998 1.39993 1.40006 1.39996 1.40025 1.40033 1.40046 1.40094 1.40152 1.40197 1.40314 1.40407 1.40569 1.40736 1.40955 1.412 1.41478 1.41789 1.42123 1.42473 1.42831 1.4318 1.43507 1.43797 1.44037 1.44215 1.44326 1.4437 1.44355 1.44292 1.44196 1.44086 1.43978 1.43886 1.43822 1.43792 1.43797 1.43834 1.43896 1.43975 1.4406 1.44139 1.44201 1.44235 1.44232 1.44188 1.44097 1.43961 1.43781 1.43563 1.43314 1.4304 1.42752 1.42458 1.42167 1.41885 1.41614 1.41367 1.41142 1.40937 1.40761 1.40606 1.40475 1.40367 1.40274 1.40204 1.40145 1.401 1.40067 1.4004 1.40025 1.40014 1.40002 1.4 1.40001 1.39995 1.39994 1.39999 1.4 1.39997 1.39998 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40002 1.40001 1.39998 1.39998 1.4 1.39999 1.40002 1.40002 1.39997 1.39996 1.39995 1.4 1.39994 1.39988 1.40004 1.39996 1.39995 1.40016 1.40013 1.4005 1.40083 1.40115 1.40192 1.40274 1.40385 1.40534 1.4071 1.40925 1.41178 1.41467 1.41793 1.42145 1.42519 1.429 1.43275 1.43624 1.43929 1.44173 1.44338 1.44416 1.44405 1.4431 1.44145 1.43932 1.43697 1.43465 1.43259 1.431 1.43001 1.4297 1.43006 1.43105 1.43257 1.43447 1.43659 1.43874 1.44076 1.44246 1.4437 1.44436 1.44437 1.44369 1.44234 1.44036 1.43785 1.43493 1.43171 1.42833 1.42491 1.42157 1.41839 1.4154 1.41272 1.41033 1.40824 1.40646 1.40495 1.40374 1.40275 1.40195 1.40136 1.40089 1.40057 1.40035 1.40016 1.40007 1.40003 1.39996 1.39995 1.39998 1.39998 1.39996 1.39998 1.40001 1.4 1.39999 1.39999 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40002 1.40002 1.39998 1.39997 1.39999 1.39999 1.39999 1.39999 1.39997 1.39996 1.39995 1.39998 1.39989 1.39991 1.40007 1.39996 1.4002 1.40036 1.4006 1.401 1.40172 1.40236 1.40363 1.4049 1.40675 1.40886 1.41143 1.41442 1.41777 1.42146 1.4254 1.42944 1.43341 1.4371 1.44027 1.44267 1.44409 1.44435 1.4434 1.44126 1.4381 1.43417 1.42983 1.42545 1.42138 1.41795 1.41542 1.41395 1.41363 1.41444 1.41632 1.41911 1.42261 1.42657 1.43074 1.43483 1.43859 1.44178 1.44418 1.44567 1.44617 1.44566 1.44419 1.44188 1.43889 1.4354 1.43161 1.42771 1.42381 1.42012 1.4167 1.41358 1.41085 1.4085 1.40653 1.4049 1.40357 1.40256 1.40176 1.40117 1.40074 1.40041 1.40022 1.40012 1.40001 1.39996 1.39998 1.39997 1.39995 1.39997 1.39999 1.39999 1.39998 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.39999 1.4 1.40002 1.40002 1.40002 1.40002 1.39998 1.39997 1.4 1.4 1.39996 1.39994 1.39999 1.39993 1.39988 1.39997 1.39996 1.39999 1.40013 1.40019 1.40049 1.40088 1.40138 1.40217 1.40319 1.40454 1.40625 1.4084 1.41097 1.414 1.41745 1.42129 1.42539 1.42964 1.43382 1.43769 1.44093 1.44324 1.44431 1.44389 1.44182 1.43809 1.43286 1.42643 1.41924 1.41179 1.40463 1.39822 1.393 1.38927 1.38724 1.38699 1.3885 1.39165 1.39624 1.40199 1.40855 1.41556 1.42263 1.42935 1.43537 1.44037 1.44409 1.44639 1.44721 1.44662 1.44476 1.44186 1.43821 1.43405 1.42969 1.42533 1.42114 1.41729 1.41385 1.41085 1.40832 1.40622 1.40455 1.40322 1.4022 1.40145 1.40089 1.40052 1.40029 1.40011 1.40001 1.39999 1.39996 1.39994 1.39995 1.39997 1.39997 1.39998 1.39999 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.39999 1.39999 1.40002 1.40002 1.40001 1.40001 1.39998 1.39995 1.39997 1.39999 1.39993 1.39991 1.39999 1.39992 1.39988 1.40001 1.39999 1.40017 1.40035 1.40072 1.40112 1.40192 1.40276 1.40412 1.40574 1.40785 1.41041 1.41345 1.41698 1.42092 1.42518 1.42962 1.434 1.43802 1.44133 1.4435 1.44415 1.44288 1.43945 1.43374 1.42588 1.4162 1.40523 1.39364 1.38214 1.37144 1.36216 1.35481 1.34977 1.34724 1.34732 1.34994 1.35496 1.36207 1.37092 1.38106 1.39197 1.40311 1.41393 1.42387 1.43245 1.43928 1.44409 1.44678 1.44743 1.44626 1.4436 1.43984 1.4354 1.4306 1.42581 1.42126 1.41708 1.4134 1.41026 1.40767 1.40556 1.40391 1.40267 1.40173 1.40107 1.40062 1.4003 1.40011 1.40002 1.39996 1.39993 1.39993 1.39995 1.39996 1.39997 1.39998 1.39999 1.39999 1.39999 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40002 1.40001 1.4 1.4 1.39999 1.39998 1.40001 1.40001 1.39999 1.39999 1.39999 1.39996 1.39993 1.39997 1.39992 1.3999 1.39994 1.39993 1.39998 1.40011 1.40024 1.40052 1.40096 1.40155 1.40245 1.40362 1.40523 1.40723 1.40976 1.41279 1.41635 1.42037 1.42478 1.42939 1.43395 1.43813 1.44149 1.44353 1.44369 1.44148 1.43649 1.42847 1.41747 1.40383 1.38817 1.37131 1.35421 1.33783 1.32306 1.31063 1.30112 1.29494 1.29228 1.29321 1.29763 1.30532 1.31593 1.32897 1.34387 1.35996 1.3765 1.3927 1.40779 1.42101 1.43179 1.43972 1.44468 1.4468 1.44641 1.44402 1.44017 1.43545 1.43033 1.4252 1.42037 1.41603 1.41228 1.40914 1.4066 1.40463 1.40311 1.402 1.40122 1.40067 1.40032 1.40012 1.4 1.39993 1.39991 1.39993 1.39993 1.39994 1.39996 1.39998 1.39998 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40002 1.40001 1.4 1.4 1.4 1.39998 1.39999 1.40001 1.39998 1.39996 1.39997 1.39995 1.3999 1.39993 1.39993 1.3999 1.39998 1.4 1.40018 1.40035 1.40077 1.40126 1.4021 1.40316 1.40466 1.40659 1.40904 1.41204 1.4156 1.41969 1.4242 1.42896 1.43371 1.43806 1.44149 1.44339 1.44307 1.43987 1.43319 1.42261 1.40807 1.38986 1.36867 1.34553 1.32166 1.29831 1.27668 1.25778 1.24243 1.23122 1.2245 1.22246 1.22511 1.23231 1.24378 1.25909 1.27765 1.29873 1.32146 1.34484 1.36778 1.38915 1.40789 1.42318 1.43452 1.4418 1.44529 1.44553 1.44327 1.43926 1.43424 1.42883 1.4235 1.41857 1.41423 1.41057 1.40762 1.40529 1.40352 1.40224 1.40133 1.40072 1.40034 1.4001 1.39996 1.39991 1.3999 1.3999 1.39991 1.39994 1.39996 1.39997 1.39998 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40002 1.40002 1.4 1.4 1.39999 1.39997 1.39998 1.39999 1.39997 1.39993 1.39996 1.39992 1.3999 1.39993 1.39992 1.39997 1.40008 1.40027 1.40055 1.40104 1.40171 1.40273 1.40408 1.40592 1.40826 1.4112 1.41474 1.41886 1.42345 1.42836 1.43329 1.43781 1.44134 1.44315 1.4424 1.43822 1.42981 1.41655 1.39819 1.37496 1.34761 1.31736 1.28574 1.25434 1.22474 1.19826 1.17594 1.15858 1.14665 1.14048 1.1402 1.14578 1.15706 1.1737 1.1952 1.22084 1.2497 1.28064 1.31228 1.34309 1.37148 1.39606 1.4158 1.43019 1.43928 1.4436 1.44401 1.44153 1.43718 1.43185 1.42623 1.42085 1.41601 1.41188 1.40851 1.40587 1.40388 1.40243 1.40141 1.40074 1.40031 1.40006 1.39994 1.39988 1.39987 1.39988 1.3999 1.39993 1.39995 1.39996 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.39999 1.39999 1.39998 1.39997 1.39996 1.39995 1.39993 1.39991 1.39992 1.3999 1.39996 1.4 1.40018 1.40039 1.40081 1.40139 1.40228 1.40353 1.40522 1.40747 1.4103 1.41378 1.41789 1.42256 1.4276 1.43271 1.43742 1.4411 1.44288 1.44178 1.4367 1.42661 1.41067 1.38839 1.3599 1.32598 1.28806 1.24801 1.20785 1.16953 1.13472 1.10471 1.08045 1.06254 1.05141 1.0473 1.05031 1.0604 1.0774 1.10093 1.13037 1.16485 1.20315 1.24371 1.28461 1.32374 1.35904 1.38882 1.41199 1.42825 1.438 1.44218 1.44205 1.43894 1.43406 1.42842 1.42274 1.41751 1.41298 1.40926 1.40634 1.40414 1.40255 1.40145 1.40073 1.40028 1.40003 1.3999 1.39984 1.39984 1.39986 1.39989 1.39992 1.39994 1.39996 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.39997 1.39997 1.39998 1.39994 1.39994 1.39993 1.3999 1.39992 1.39992 1.39998 1.40007 1.40028 1.40058 1.40112 1.40187 1.403 1.40455 1.40664 1.40936 1.41276 1.41683 1.42153 1.42668 1.43196 1.4369 1.44077 1.44262 1.44127 1.43544 1.42384 1.40534 1.37923 1.34547 1.30486 1.25903 1.21023 1.16096 1.11359 1.07016 1.03219 1.00074 0.976539 0.96006 0.951644 0.951495 0.959723 0.976296 1.00101 1.0334 1.0727 1.11773 1.16683 1.2178 1.268 1.31472 1.35549 1.38856 1.4131 1.42928 1.43807 1.44093 1.43953 1.43545 1.43001 1.42419 1.41867 1.41382 1.40982 1.40667 1.4043 1.40261 1.40145 1.40069 1.40024 1.39998 1.39986 1.39982 1.39982 1.39985 1.39988 1.39991 1.39994 1.39996 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.39999 1.39999 1.39999 1.4 1.39998 1.39997 1.39996 1.39993 1.39993 1.39991 1.39992 1.3999 1.39995 1.40002 1.40017 1.40042 1.40084 1.40151 1.40248 1.4039 1.40583 1.4084 1.41167 1.41568 1.42038 1.42561 1.43107 1.43624 1.44036 1.44238 1.44095 1.43457 1.42168 1.40089 1.37121 1.33242 1.28528 1.23163 1.17413 1.11578 1.05945 1.00752 0.961743 0.923287 0.892933 0.871215 0.858502 0.855096 0.861204 0.876929 0.902223 0.936811 0.980092 1.031 1.08785 1.14826 1.20917 1.2672 1.31912 1.36242 1.39568 1.41874 1.43252 1.43869 1.43925 1.43614 1.43103 1.42519 1.41947 1.41438 1.41016 1.40684 1.40437 1.40261 1.40141 1.40064 1.40019 1.39994 1.39983 1.3998 1.39981 1.39984 1.39987 1.39991 1.39994 1.39996 1.39997 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.39999 1.39999 1.39999 1.39997 1.39997 1.39996 1.39993 1.39993 1.3999 1.39992 1.39992 1.39998 1.40008 1.40029 1.40062 1.40117 1.40203 1.40328 1.40504 1.40743 1.41056 1.41445 1.41912 1.4244 1.43001 1.43544 1.43987 1.44216 1.44083 1.43415 1.42028 1.39756 1.36474 1.32137 1.26815 1.2071 1.1413 1.07427 1.0094 0.949444 0.896376 0.851456 0.815495 0.789043 0.77248 0.76615 0.770309 0.785145 0.810749 0.847029 0.893583 0.949502 1.01315 1.08202 1.15272 1.22129 1.28375 1.33681 1.37846 1.40816 1.42676 1.43612 1.43854 1.43637 1.4316 1.42577 1.41991 1.41466 1.41029 1.40687 1.40433 1.40254 1.40134 1.40058 1.40014 1.3999 1.3998 1.39978 1.3998 1.39984 1.39987 1.39991 1.39994 1.39996 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.39999 1.39999 1.39998 1.39996 1.39997 1.39995 1.39994 1.39992 1.39991 1.39991 1.39994 1.40002 1.40016 1.40044 1.40089 1.40161 1.4027 1.40429 1.40649 1.40942 1.41318 1.41776 1.42307 1.42882 1.43449 1.43927 1.44195 1.44091 1.43419 1.41971 1.39553 1.36013 1.31283 1.25424 1.18651 1.1131 1.03809 0.965387 0.898124 0.838516 0.787916 0.74715 0.716749 0.697074 0.688446 0.691117 0.705327 0.731268 0.76902 0.818389 0.87863 0.948191 1.02446 1.10376 1.18161 1.25336 1.31503 1.36399 1.3994 1.42207 1.43403 1.43792 1.43643 1.43187 1.42601 1.42004 1.41467 1.41022 1.40675 1.4042 1.40242 1.40125 1.40051 1.40009 1.39988 1.39979 1.39978 1.3998 1.39984 1.39988 1.39991 1.39994 1.39996 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.39999 1.4 1.39999 1.39999 1.39998 1.39996 1.39997 1.39994 1.39993 1.39991 1.39991 1.39992 1.39997 1.40008 1.40029 1.40065 1.40125 1.40219 1.40358 1.40557 1.4083 1.41188 1.41634 1.42161 1.42746 1.43339 1.43856 1.44172 1.44115 1.43471 1.42003 1.3949 1.35757 1.30714 1.24409 1.17066 1.09062 1.00856 0.928913 0.855236 0.78997 0.734592 0.689938 0.656486 0.634547 0.624365 0.626154 0.640168 0.66669 0.705954 0.757959 0.822118 0.896923 0.979649 1.0663 1.15194 1.23131 1.29983 1.35444 1.39405 1.41952 1.43311 1.43777 1.43652 1.43193 1.42594 1.41987 1.41442 1.40995 1.40651 1.404 1.40227 1.40114 1.40045 1.40006 1.39987 1.3998 1.39979 1.39982 1.39985 1.39989 1.39992 1.39995 1.39997 1.39998 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.39998 1.39999 1.39998 1.39996 1.39995 1.39993 1.39993 1.39992 1.39992 1.39994 1.40002 1.40017 1.40045 1.40094 1.40172 1.40293 1.40471 1.40721 1.41056 1.41486 1.42006 1.42597 1.43212 1.43769 1.44142 1.4415 1.43563 1.42118 1.3957 1.35716 1.30449 1.23805 1.16008 1.07459 0.986617 0.901085 0.821971 0.751985 0.692745 0.645101 0.609481 0.5861 0.575101 0.576638 0.590965 0.618449 0.659472 0.714206 0.782167 0.861814 0.950221 1.04303 1.13482 1.21984 1.29308 1.35121 1.39308 1.41972 1.43368 1.43825 1.4367 1.4318 1.42559 1.41939 1.41393 1.40951 1.40615 1.40373 1.40209 1.40103 1.4004 1.40004 1.39987 1.39981 1.39981 1.39983 1.39987 1.3999 1.39993 1.39996 1.39997 1.39998 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.39998 1.39999 1.39997 1.39997 1.39995 1.39993 1.39992 1.39992 1.39993 1.39997 1.40009 1.4003 1.40068 1.40133 1.40236 1.40391 1.40616 1.40927 1.41335 1.41843 1.42434 1.43067 1.43665 1.441 1.44188 1.43686 1.42311 1.39786 1.35888 1.30493 1.23624 1.15503 1.06545 0.972855 0.882608 0.799093 0.725323 0.663094 0.613286 0.576287 0.552204 0.54107 0.542978 0.558179 0.587115 0.63031 0.688063 0.75992 0.844195 0.93762 1.03538 1.13158 1.22005 1.29557 1.35475 1.39668 1.42267 1.43566 1.43923 1.43686 1.43141 1.4249 1.41862 1.41321 1.4089 1.40569 1.40341 1.40189 1.40092 1.40035 1.40004 1.39989 1.39984 1.39984 1.39986 1.39989 1.39992 1.39995 1.39996 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.39999 1.4 1.4 1.39998 1.39998 1.39997 1.39996 1.39995 1.39993 1.39992 1.39993 1.39995 1.40002 1.40018 1.40048 1.40099 1.40185 1.40319 1.40518 1.40802 1.41184 1.41673 1.42258 1.42905 1.4354 1.44039 1.44219 1.43829 1.42566 1.40127 1.36264 1.30838 1.23863 1.15555 1.06333 0.967514 0.873826 0.787006 0.7104 0.645995 0.594765 0.55707 0.532941 0.522326 0.525247 0.541954 0.572948 0.618855 0.680036 0.75596 0.844649 0.942352 1.04371 1.14233 1.23182 1.30692 1.36457 1.40426 1.42781 1.43855 1.44035 1.43677 1.43062 1.42382 1.41752 1.41225 1.40815 1.40515 1.40306 1.40168 1.40082 1.40031 1.40004 1.39991 1.39987 1.39987 1.39989 1.39991 1.39994 1.39996 1.39997 1.39998 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.39999 1.4 1.39999 1.39999 1.39998 1.39997 1.39996 1.39995 1.39993 1.39993 1.39994 1.39999 1.40009 1.40031 1.40072 1.40142 1.40255 1.40428 1.40683 1.41036 1.415 1.42072 1.42725 1.43392 1.43956 1.44235 1.43976 1.42866 1.40574 1.36827 1.31468 1.24504 1.16144 1.06807 0.970524 0.874743 0.785789 0.707322 0.641545 0.589586 0.551829 0.528273 0.518827 0.523464 0.542403 0.576164 0.625408 0.690444 0.770513 0.863189 0.96412 1.06734 1.16608 1.25386 1.32574 1.37924 1.41453 1.43407 1.44158 1.44109 1.4361 1.42927 1.42229 1.4161 1.41109 1.40728 1.40455 1.40268 1.40147 1.40072 1.40028 1.40005 1.39994 1.3999 1.3999 1.39992 1.39994 1.39995 1.39997 1.39998 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.39999 1.4 1.39999 1.39999 1.39998 1.39997 1.39996 1.39995 1.39994 1.39994 1.39996 1.40003 1.40019 1.4005 1.40106 1.40199 1.40347 1.40571 1.40892 1.41327 1.41879 1.42529 1.43221 1.43845 1.44227 1.44114 1.43189 1.41101 1.3755 1.32356 1.25518 1.17239 1.07931 0.981552 0.885096 0.79524 0.715946 0.649662 0.597688 0.560513 0.538188 0.530611 0.537717 0.559683 0.596974 0.650161 0.719344 0.80336 0.899178 1.00177 1.10462 1.20073 1.28386 1.3497 1.39665 1.42578 1.44016 1.44387 1.44091 1.4346 1.42726 1.42029 1.41439 1.40975 1.40632 1.40391 1.40229 1.40125 1.40062 1.40026 1.40006 1.39997 1.39994 1.39993 1.39994 1.39996 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.39999 1.39999 1.39998 1.39997 1.39995 1.39995 1.39994 1.39995 1.4 1.40011 1.40033 1.40076 1.40152 1.40276 1.4047 1.40757 1.41157 1.41681 1.4232 1.43027 1.43703 1.44186 1.44228 1.43512 1.41677 1.38398 1.33467 1.26868 1.18798 1.0966 1.00007 0.904382 0.814943 0.735934 0.670092 0.618917 0.583072 0.562716 0.557769 0.568133 0.593901 0.635399 0.692952 0.766248 0.85352 0.951022 1.05307 1.15276 1.24317 1.31864 1.37587 1.41435 1.4361 1.4448 1.44463 1.43943 1.43211 1.42457 1.41788 1.41244 1.4083 1.40532 1.40326 1.4019 1.40105 1.40053 1.40023 1.40007 1.4 1.39997 1.39996 1.39997 1.39997 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.39999 1.39998 1.39998 1.39997 1.39996 1.39995 1.39995 1.39998 1.40005 1.40021 1.40054 1.40113 1.40215 1.4038 1.40631 1.40993 1.41483 1.421 1.42811 1.43529 1.44105 1.44303 1.43814 1.4227 1.39328 1.34754 1.28507 1.2077 1.11936 1.02547 0.931959 0.844294 0.766796 0.702465 0.65304 0.619412 0.601864 0.600353 0.614717 0.644906 0.691004 0.752928 0.829739 0.918904 1.01592 1.11457 1.20788 1.28942 1.35449 1.40106 1.42988 1.44384 1.44698 1.44339 1.43648 1.42865 1.42132 1.41516 1.41035 1.40681 1.40431 1.40262 1.40153 1.40085 1.40044 1.4002 1.40008 1.40002 1.39999 1.39998 1.39998 1.39999 1.39999 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.39999 1.39999 1.39998 1.39997 1.39996 1.39996 1.39997 1.40002 1.40013 1.40036 1.40083 1.40164 1.40301 1.40518 1.4084 1.4129 1.41876 1.42577 1.43323 1.4398 1.4433 1.44071 1.42846 1.40294 1.3616 1.30372 1.23091 1.14694 1.05705 0.967109 0.882583 0.80791 0.746281 0.699709 0.669297 0.655451 0.658126 0.677046 0.711938 0.762541 0.828199 0.907175 0.996075 1.08972 1.18167 1.26529 1.33504 1.3876 1.42237 1.44127 1.44785 1.44621 1.44006 1.43221 1.42444 1.41769 1.4123 1.40824 1.40534 1.40335 1.40202 1.40118 1.40066 1.40035 1.40017 1.40008 1.40003 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.39999 1.39999 1.39998 1.39998 1.39997 1.39998 1.4 1.40007 1.40024 1.40058 1.40123 1.40234 1.40417 1.40698 1.41104 1.4165 1.4233 1.43088 1.4381 1.44298 1.44267 1.43371 1.41248 1.37621 1.32391 1.25683 1.1785 1.09399 1.00901 0.929003 0.858493 0.800853 0.758314 0.73215 0.722825 0.730218 0.753871 0.793234 0.847578 0.915528 0.994476 1.08022 1.16715 1.24899 1.31992 1.37575 1.41472 1.43765 1.44739 1.44777 1.44261 1.43498 1.42699 1.41982 1.41397 1.4095 1.40625 1.40399 1.40247 1.40149 1.40087 1.40049 1.40027 1.40014 1.40007 1.40004 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.39999 1.39999 1.39998 1.39998 1.4 1.40004 1.40016 1.40041 1.4009 1.40179 1.40331 1.40571 1.4093 1.4143 1.42075 1.42829 1.43596 1.44202 1.44387 1.43818 1.42144 1.39072 1.34476 1.28447 1.21303 1.13522 1.05659 0.982482 0.917497 0.865118 0.827745 0.80672 0.802464 0.814694 0.842733 0.885689 0.942247 1.01024 1.08624 1.16546 1.24228 1.31104 1.36719 1.40813 1.43371 1.44593 1.44813 1.44402 1.4368 1.42879 1.42139 1.41522 1.41044 1.40694 1.40448 1.40281 1.40172 1.40103 1.40061 1.40035 1.4002 1.40011 1.40007 1.40004 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40003 1.40011 1.40028 1.40065 1.40135 1.40257 1.4046 1.40771 1.4122 1.4182 1.42551 1.43342 1.44042 1.44419 1.44164 1.42938 1.40448 1.36541 1.31275 1.24927 1.17939 1.10839 1.04152 0.983338 0.937382 0.906089 0.890754 0.891643 0.908289 0.939758 0.984738 1.04128 1.10646 1.17621 1.24558 1.3094 1.36312 1.4037 1.43024 1.44393 1.44749 1.44434 1.43761 1.42975 1.42227 1.41595 1.41099 1.40734 1.40475 1.403 1.40186 1.40113 1.40068 1.4004 1.40024 1.40014 1.40009 1.40006 1.40004 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40003 1.40008 1.4002 1.40047 1.401 1.40197 1.40364 1.4063 1.41025 1.41571 1.42265 1.43056 1.43822 1.4436 1.44392 1.43597 1.41689 1.38499 1.34051 1.28577 1.22483 1.16259 1.10409 1.05375 1.01507 0.990366 0.980773 0.986359 1.00644 1.0398 1.08468 1.1385 1.19776 1.25814 1.31499 1.36403 1.40214 1.42792 1.44191 1.44621 1.44374 1.4375 1.42988 1.42248 1.41614 1.41113 1.40742 1.4048 1.40303 1.40187 1.40114 1.40068 1.40041 1.40025 1.40016 1.4001 1.40007 1.40005 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40002 1.40002 1.40003 1.40004 1.40007 1.40015 1.40034 1.40074 1.4015 1.40285 1.40507 1.40847 1.41335 1.41979 1.42747 1.43549 1.44212 1.44492 1.44095 1.42746 1.40268 1.36659 1.32107 1.26969 1.21697 1.1676 1.12576 1.09473 1.07661 1.07227 1.08159 1.10368 1.13701 1.17936 1.22768 1.27821 1.32683 1.36964 1.40362 1.42717 1.44033 1.44462 1.44251 1.43665 1.42932 1.42208 1.41583 1.41088 1.40721 1.40462 1.40289 1.40176 1.40106 1.40063 1.40038 1.40023 1.40015 1.4001 1.40007 1.40005 1.40004 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40002 1.40002 1.40003 1.40003 1.40004 1.40005 1.40007 1.40013 1.40026 1.40055 1.40113 1.4022 1.40402 1.40691 1.41118 1.41701 1.42428 1.43235 1.43982 1.44463 1.44415 1.43581 1.41785 1.38997 1.3537 1.31207 1.26915 1.22917 1.19595 1.17239 1.16029 1.16027 1.17202 1.19441 1.22564 1.26309 1.30353 1.34334 1.37903 1.40781 1.42803 1.43943 1.44307 1.44093 1.4353 1.42824 1.42124 1.41515 1.41033 1.40677 1.40428 1.40262 1.40156 1.40092 1.40053 1.40032 1.40019 1.40013 1.40009 1.40006 1.40005 1.40004 1.40003 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40002 1.40001 1.40002 1.40002 1.40004 1.40004 1.40005 1.40006 1.40008 1.40012 1.40021 1.40042 1.40085 1.40168 1.40316 1.40556 1.40923 1.4144 1.4211 1.42893 1.43686 1.44314 1.44555 1.44173 1.42997 1.40981 1.38237 1.35022 1.31684 1.28594 1.26087 1.24409 1.23704 1.24011 1.2528 1.27377 1.30095 1.3316 1.3626 1.3909 1.41398 1.43023 1.43925 1.44174 1.43925 1.43369 1.42686 1.42011 1.41425 1.4096 1.40619 1.40382 1.40227 1.4013 1.40073 1.40041 1.40023 1.40014 1.40009 1.40007 1.40005 1.40004 1.40004 1.40003 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40002 1.40003 1.40003 1.40005 1.40006 1.40008 1.40009 1.40012 1.40019 1.40033 1.40065 1.40128 1.40246 1.40442 1.40753 1.41202 1.41805 1.42542 1.43339 1.44062 1.44521 1.44515 1.43877 1.42551 1.40612 1.38268 1.35808 1.33545 1.31758 1.30649 1.30328 1.30811 1.32028 1.33828 1.35994 1.38266 1.40381 1.42117 1.43326 1.43961 1.44066 1.43761 1.43201 1.42536 1.41887 1.41324 1.40881 1.40556 1.40333 1.4019 1.40103 1.40053 1.40027 1.40014 1.40008 1.40005 1.40004 1.40004 1.40004 1.40003 1.40003 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40002 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40002 1.4 1.39999 1.40001 1.40001 1.4 1.4 1.40002 1.4 1.4 1.4 1.40002 1.4 1.40001 1.40001 1.40002 1.40002 1.40003 1.40005 1.40006 1.40009 1.40011 1.40013 1.40018 1.40028 1.40052 1.40099 1.4019 1.4035 1.40606 1.40991 1.41522 1.42195 1.42964 1.43729 1.44338 1.44618 1.44421 1.43677 1.42435 1.40849 1.39152 1.37596 1.36405 1.35737 1.35671 1.36202 1.37241 1.38633 1.40171 1.41637 1.42841 1.43653 1.44021 1.43976 1.43607 1.43037 1.42389 1.41764 1.41226 1.40803 1.40496 1.40287 1.40155 1.40077 1.40034 1.40014 1.40005 1.40002 1.40002 1.40002 1.40003 1.40003 1.40003 1.40003 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40002 1.39999 1.40001 1.40001 1.40001 1.4 1.39999 1.40002 1.4 1.39999 1.4 1.40002 1.40001 1.39999 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40002 1.40003 1.40003 1.40005 1.40007 1.40009 1.40011 1.40014 1.40018 1.40025 1.40042 1.40078 1.40148 1.40274 1.40484 1.40806 1.41266 1.41866 1.42583 1.43344 1.44036 1.44514 1.44649 1.44368 1.43691 1.42728 1.41654 1.40665 1.39932 1.39576 1.39647 1.40117 1.40892 1.41823 1.4274 1.43484 1.43945 1.44074 1.43891 1.43461 1.4288 1.42249 1.4165 1.41137 1.40735 1.40443 1.40248 1.40125 1.40055 1.40019 1.40003 1.39998 1.39998 1.39999 1.40001 1.40002 1.40003 1.40003 1.40003 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40002 1.40001 1.4 1.4 1.40003 1.40001 1.39998 1.40001 1.40002 1.40001 1.39998 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40002 1.40004 1.40005 1.40006 1.40009 1.40012 1.40014 1.40018 1.40024 1.40036 1.40062 1.40116 1.40214 1.40384 1.40651 1.4104 1.41564 1.42211 1.42936 1.43651 1.44245 1.44606 1.44663 1.44413 1.43927 1.43329 1.42765 1.42359 1.42198 1.42305 1.42641 1.43114 1.436 1.43977 1.44154 1.44087 1.4379 1.43315 1.42732 1.42121 1.41548 1.4106 1.40678 1.40402 1.40217 1.40102 1.40039 1.40007 1.39995 1.39992 1.39994 1.39997 1.4 1.40001 1.40002 1.40003 1.40003 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40002 1.39999 1.40001 1.40002 1.39999 1.39999 1.40002 1.40003 1.39998 1.4 1.40003 1.40001 1.39999 1.4 1.40001 1.40001 1.40001 1.40001 1.40002 1.40002 1.40003 1.40004 1.40006 1.40008 1.40012 1.40015 1.40018 1.40023 1.40032 1.40052 1.40091 1.40168 1.40303 1.4052 1.40846 1.41294 1.41865 1.42528 1.43223 1.43862 1.44354 1.44632 1.44677 1.44527 1.44266 1.43995 1.43801 1.43738 1.43812 1.4398 1.44164 1.44275 1.44245 1.44038 1.43664 1.43161 1.42586 1.42001 1.41459 1.40996 1.40634 1.4037 1.40195 1.40088 1.40028 1.4 1.3999 1.39989 1.39992 1.39996 1.39999 1.40001 1.40002 1.40003 1.40003 1.40003 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.39999 1.4 1.40004 1.39998 1.39998 1.40002 1.40003 1.39998 1.39998 1.40003 1.40001 1.39999 1.4 1.40001 1.40001 1.40001 1.40001 1.40002 1.40002 1.40005 1.40006 1.40009 1.40011 1.40015 1.40019 1.40022 1.4003 1.40044 1.40074 1.40133 1.40238 1.40414 1.40681 1.41059 1.41551 1.4214 1.42783 1.43414 1.4396 1.44358 1.44582 1.44647 1.44602 1.44513 1.44437 1.44404 1.44409 1.44412 1.44359 1.442 1.43911 1.43497 1.42992 1.4244 1.41887 1.41378 1.40944 1.40601 1.40351 1.40182 1.40079 1.40023 1.39997 1.39988 1.39988 1.39991 1.39995 1.39998 1.40001 1.40002 1.40002 1.40003 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40002 1.4 1.4 1.40002 1.4 1.39999 1.40002 1.4 1.4 1.40002 1.39998 1.40002 1.40002 1.39998 1.39999 1.40004 1.40001 1.39996 1.40001 1.40004 1.4 1.39997 1.40002 1.40002 1.40001 1.39999 1.40001 1.4 1.40001 1.40001 1.40002 1.40003 1.40006 1.40009 1.40011 1.40014 1.40017 1.40022 1.40028 1.40039 1.40061 1.40106 1.40188 1.40327 1.40545 1.40858 1.41274 1.41784 1.42357 1.42944 1.43485 1.43928 1.44239 1.4442 1.44495 1.44503 1.44478 1.44435 1.44363 1.44233 1.44017 1.437 1.43286 1.42803 1.42286 1.41776 1.41306 1.40901 1.40578 1.4034 1.40177 1.40077 1.40021 1.39996 1.39987 1.39987 1.39991 1.39995 1.39999 1.40001 1.40002 1.40002 1.40003 1.40002 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40002 1.4 1.4 1.40001 1.4 1.40002 1.4 1.4 1.40002 1.4 1.39999 1.40002 1.40001 1.39998 1.40002 1.40003 1.39998 1.39999 1.40003 1.40002 1.39997 1.4 1.40003 1.40001 1.39998 1.4 1.40002 1.40001 1.4 1.40002 1.40001 1.40001 1.40002 1.40002 1.40004 1.40006 1.40011 1.40013 1.40017 1.40021 1.40025 1.40035 1.40052 1.40085 1.40148 1.40258 1.40433 1.40688 1.41034 1.41465 1.41961 1.42483 1.42983 1.43416 1.4375 1.43974 1.441 1.44146 1.44131 1.44061 1.43924 1.4371 1.43408 1.43026 1.42589 1.42124 1.41663 1.41235 1.40864 1.40562 1.40336 1.40178 1.40079 1.40024 1.39998 1.39988 1.39988 1.39991 1.39995 1.39998 1.4 1.40002 1.40002 1.40002 1.40003 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.39999 1.40002 1.40002 1.39997 1.40003 1.40001 1.39996 1.40004 1.40002 1.39995 1.40004 1.40003 1.39996 1.40001 1.40005 1.39999 1.39998 1.40002 1.40003 1.39998 1.4 1.40003 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40002 1.40002 1.40004 1.40003 1.40005 1.40007 1.40011 1.40016 1.4002 1.40024 1.40031 1.40044 1.40069 1.40117 1.40203 1.40342 1.40548 1.4083 1.41188 1.41605 1.42053 1.42491 1.42882 1.43197 1.43419 1.4355 1.43599 1.43574 1.43476 1.43301 1.43048 1.42725 1.42349 1.41947 1.41544 1.41165 1.40829 1.40551 1.40337 1.40185 1.40087 1.4003 1.40002 1.39991 1.3999 1.39992 1.39996 1.39998 1.40001 1.40001 1.40002 1.40003 1.40003 1.40002 1.40002 1.40002 1.40001 1.40001 1.40002 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40002 1.4 1.4 1.40002 1.4 1.4 1.40001 1.40001 1.40001 1.39999 1.4 1.40005 1.39997 1.39999 1.40003 1.40001 1.39998 1.4 1.40002 1.4 1.39999 1.40002 1.4 1.39999 1.40001 1.40002 1.4 1.4 1.4 1.40002 1.40003 1.40006 1.40006 1.40007 1.40008 1.40012 1.40018 1.40022 1.40028 1.40038 1.40056 1.40093 1.40159 1.40267 1.40432 1.4066 1.4095 1.41293 1.41665 1.42033 1.42367 1.42639 1.42834 1.42946 1.42981 1.4294 1.42826 1.42639 1.42389 1.42087 1.41755 1.41416 1.4109 1.40794 1.40542 1.40342 1.40196 1.40098 1.4004 1.40009 1.39996 1.39992 1.39994 1.39996 1.39998 1.4 1.40002 1.40002 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40002 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40002 1.39999 1.40001 1.40002 1.39999 1.4 1.40004 1.39998 1.39999 1.40006 1.39996 1.39999 1.40007 1.39995 1.39998 1.40008 1.39997 1.39998 1.40003 1.40002 1.39998 1.39999 1.40002 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.39999 1.40001 1.40001 1.40002 1.4 1.4 1.39999 1.40002 1.40006 1.40009 1.4001 1.40011 1.40014 1.40019 1.40024 1.40032 1.40047 1.40074 1.40124 1.40208 1.40336 1.40517 1.4075 1.41025 1.41325 1.41625 1.41895 1.42116 1.42272 1.42358 1.42374 1.42322 1.42206 1.4203 1.41806 1.41549 1.41278 1.41008 1.40755 1.40532 1.40349 1.40209 1.40113 1.40051 1.40017 1.40001 1.39995 1.39995 1.39996 1.39998 1.4 1.40001 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40002 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40002 1.39997 1.40003 1.40001 1.39997 1.40004 1.4 1.39998 1.40005 1.39996 1.40002 1.40005 1.39993 1.40004 1.40005 1.39993 1.40003 1.40004 1.39999 1.39998 1.40002 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40002 1.40001 1.4 1.4 1.4 1.40002 1.40003 1.40002 1.39999 1.4 1.40004 1.4001 1.40012 1.40015 1.40017 1.4002 1.40027 1.40038 1.40058 1.40097 1.4016 1.4026 1.404 1.40582 1.40799 1.41035 1.41269 1.41481 1.41651 1.41768 1.41827 1.41828 1.41773 1.41666 1.41516 1.41331 1.41127 1.40915 1.40708 1.40517 1.40353 1.40223 1.40128 1.40064 1.40028 1.40008 1.39999 1.39996 1.39997 1.39999 1.4 1.40001 1.40001 1.40001 1.40002 1.40002 1.4 1.40001 1.40002 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.39999 1.40004 1.39996 1.40004 1.4 1.39998 1.40003 1.40002 1.39996 1.40004 1.40002 1.39994 1.40008 1.39999 1.39995 1.40008 1.39997 1.39998 1.40005 1.39997 1.40002 1.40002 1.39997 1.40002 1.40003 1.39999 1.39998 1.40002 1.40001 1.40001 1.39999 1.4 1.4 1.4 1.40002 1.40001 1.4 1.39998 1.4 1.40004 1.40005 1.40002 1.40001 1.40004 1.40008 1.40013 1.40016 1.40018 1.40022 1.40031 1.40045 1.40074 1.40122 1.40197 1.40304 1.40444 1.4061 1.40791 1.4097 1.41128 1.41253 1.41336 1.41374 1.41365 1.41315 1.41227 1.41108 1.40966 1.4081 1.4065 1.40496 1.40355 1.40236 1.40144 1.40079 1.40039 1.40016 1.40004 1.39999 1.39998 1.39999 1.4 1.4 1.4 1.40001 1.40002 1.40001 1.4 1.40001 1.40002 1.40001 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.39999 1.40003 1.39997 1.40003 1.40001 1.39996 1.40008 1.39996 1.39999 1.40008 1.39992 1.40006 1.40002 1.39991 1.40013 1.39994 1.39995 1.40013 1.39993 1.39998 1.40007 1.39997 1.40001 1.40001 1.39999 1.40001 1.40003 1.39997 1.4 1.40002 1.40001 1.40001 1.39999 1.4 1.4 1.40001 1.40003 1.40002 1.39998 1.39997 1.40002 1.40006 1.40007 1.40005 1.40005 1.40007 1.40012 1.40016 1.4002 1.40025 1.40036 1.40056 1.40091 1.40147 1.40227 1.40332 1.40456 1.40591 1.40722 1.40838 1.40925 1.40981 1.41003 1.40993 1.40952 1.40886 1.40799 1.40695 1.40581 1.40463 1.40348 1.40245 1.4016 1.40095 1.40052 1.40025 1.40009 1.40001 1.39999 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.39999 1.40001 1.40003 1.4 1.39998 1.40001 1.40002 1.4 1.40001 1.4 1.40002 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.39999 1.40004 1.39995 1.40007 1.39996 1.40001 1.40003 1.39998 1.39999 1.40006 1.39995 1.40002 1.40007 1.39987 1.40012 1.39999 1.3999 1.40016 1.39992 1.39997 1.40011 1.39995 1.39997 1.40008 1.39999 1.39997 1.40002 1.40001 1.40001 1.40001 1.39998 1.40002 1.40001 1.40001 1.40002 1.39999 1.39997 1.40001 1.40004 1.40003 1.39999 1.39997 1.39999 1.40004 1.40008 1.40007 1.40008 1.40009 1.40012 1.40016 1.4002 1.40028 1.40041 1.40065 1.40106 1.40164 1.40241 1.40332 1.40429 1.40522 1.40602 1.40662 1.40699 1.40712 1.40704 1.40677 1.40632 1.40572 1.405 1.40418 1.40332 1.40248 1.40171 1.40109 1.40065 1.40034 1.40015 1.40006 1.40002 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40003 1.4 1.39999 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.39999 1.40003 1.39997 1.40005 1.39994 1.40008 1.39995 1.40001 1.40008 1.39989 1.4001 1.39999 1.39992 1.40017 1.39984 1.40005 1.40012 1.3998 1.40016 1.39999 1.3999 1.40014 1.39993 1.39999 1.40008 1.39995 1.39998 1.40008 1.4 1.39994 1.40003 1.40003 1.40001 1.39998 1.39999 1.40003 1.40001 1.40002 1.40002 1.39997 1.39997 1.40002 1.40006 1.40003 1.39998 1.39997 1.40001 1.40006 1.40009 1.40009 1.40009 1.40012 1.40014 1.4002 1.4003 1.40046 1.40074 1.40115 1.40168 1.40232 1.403 1.40364 1.40418 1.40457 1.40482 1.40491 1.40489 1.40473 1.40447 1.4041 1.40362 1.40305 1.40241 1.40178 1.40122 1.40077 1.40045 1.40023 1.40011 1.40005 1.40002 1.40002 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40002 1.40002 1.39999 1.39999 1.40003 1.40004 1.4 1.39999 1.4 1.40001 1.40001 1.39998 1.4 1.40002 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40002 1.39997 1.40005 1.39996 1.40003 1.40002 1.39997 1.40003 1.40002 1.39992 1.40013 1.39991 1.39997 1.4002 1.39974 1.40017 1.40008 1.39974 1.40024 1.39997 1.39988 1.40011 1.40002 1.39995 1.40003 1.4 1.40002 1.40002 1.39998 1.39999 1.40004 1.40001 1.4 1.39997 1.39999 1.40004 1.40004 1.4 1.39998 1.39997 1.40001 1.40004 1.40006 1.40002 1.39999 1.40001 1.40003 1.40007 1.40009 1.4001 1.40011 1.40014 1.4002 1.40031 1.40049 1.40076 1.40112 1.40155 1.402 1.40242 1.40277 1.40302 1.40319 1.40329 1.40331 1.40328 1.40317 1.40296 1.40265 1.40225 1.40178 1.4013 1.40089 1.40056 1.40032 1.40017 1.40009 1.40004 1.40002 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.39998 1.40002 1.40002 1.39998 1.39999 1.4 1.40001 1.4 1.39999 1.40001 1.40002 1.40001 1.4 1.4 1.40002 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.39999 1.40003 1.39997 1.40006 1.39993 1.40011 1.39989 1.4001 1.39998 1.39993 1.40016 1.39982 1.40012 1.40005 1.39979 1.4003 1.3998 1.39998 1.40024 1.3997 1.40019 1.40002 1.39982 1.40021 1.39994 1.39991 1.40012 1.40001 1.39994 1.4 1.40005 1.40002 1.39996 1.39998 1.40005 1.40002 1.39999 1.4 1.39998 1.39999 1.40006 1.40004 1.39998 1.39995 1.39998 1.40003 1.40006 1.40005 1.40002 1.40002 1.40003 1.40006 1.40008 1.40009 1.40011 1.40013 1.40019 1.4003 1.40046 1.40069 1.40096 1.40124 1.4015 1.40172 1.40188 1.40201 1.40212 1.40221 1.40226 1.40225 1.40216 1.40197 1.40167 1.40132 1.40096 1.40065 1.4004 1.40023 1.40012 1.40006 1.40003 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.39997 1.39997 1.40003 1.40003 1.4 1.39999 1.40002 1.40004 1.39999 1.39998 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40002 1.39999 1.40001 1.40002 1.39996 1.40007 1.39995 1.40001 1.40011 1.39978 1.40025 1.39991 1.39981 1.40043 1.39962 1.40007 1.40029 1.39963 1.40018 1.40007 1.39987 1.40007 1.4 1.39998 1.40006 1.39995 1.40001 1.40002 1.40003 1.4 1.39996 1.39999 1.40007 1.40003 1.39996 1.39997 1.4 1.40003 1.40005 1.40001 1.39998 1.39997 1.39999 1.40003 1.40005 1.40005 1.40004 1.40004 1.40004 1.40006 1.40006 1.40008 1.40011 1.40015 1.40024 1.40037 1.40052 1.40068 1.40083 1.40095 1.40107 1.40119 1.40131 1.40145 1.40156 1.40162 1.40161 1.40148 1.40127 1.401 1.40072 1.40048 1.40029 1.40017 1.40009 1.40005 1.40002 1.40001 1.40002 1.40002 1.4 1.4 1.4 1.4 1.40002 1.39999 1.40001 1.40004 1.39999 1.39999 1.40004 1.40003 1.4 1.39999 1.40003 1.40002 1.39996 1.39999 1.40002 1.40002 1.4 1.39999 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40002 1.39998 1.40004 1.39995 1.40009 1.3999 1.40013 1.39988 1.40008 1.40004 1.39984 1.40028 1.39974 1.4001 1.40019 1.3996 1.40042 1.39984 1.39982 1.40042 1.39962 1.40014 1.40018 1.39971 1.40017 1.40006 1.39987 1.40005 1.40001 1.40004 1.39998 1.39994 1.40007 1.40003 1.39996 1.39999 1.4 1.40002 1.40005 1.4 1.39995 1.39997 1.40003 1.40005 1.40003 1.39999 1.39998 1.39999 1.40001 1.40004 1.40005 1.40005 1.40004 1.40004 1.40003 1.40003 1.40004 1.40005 1.40008 1.40014 1.40021 1.40028 1.40036 1.40042 1.40051 1.40063 1.40077 1.40094 1.40108 1.40119 1.4012 1.40113 1.40096 1.40076 1.40054 1.40035 1.40022 1.40013 1.40007 1.40004 1.40002 1.40002 1.40001 1.4 1.4 1.4 1.40001 1.40002 1.4 1.40001 1.40004 1.40001 1.39999 1.40006 1.40004 1.39995 1.39998 1.40003 1.4 1.39995 1.4 1.40007 1.40001 1.39998 1.40001 1.40002 1.4 1.40001 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.39999 1.40002 1.39998 1.40006 1.3999 1.40014 1.39991 1.39993 1.40031 1.39958 1.4003 1.40009 1.39953 1.40058 1.39972 1.39984 1.40042 1.39969 1.40006 1.40012 1.39986 1.40009 1.4 1.39994 1.40008 1.39995 1.40006 1.39997 1.39996 1.40008 1.40003 1.39993 1.39999 1.40005 1.40004 1.40001 1.39997 1.39997 1.4 1.40002 1.40003 1.40002 1.4 1.39999 1.4 1.40001 1.40003 1.40004 1.40003 1.40001 1.4 1.39998 1.39997 1.39997 1.39998 1.39999 1.40001 1.40003 1.40007 1.40015 1.40026 1.40042 1.40059 1.40076 1.40088 1.40092 1.40086 1.40074 1.40057 1.4004 1.40027 1.40016 1.40009 1.40005 1.40003 1.4 1.4 1.4 1.39999 1.4 1.40001 1.40003 1.40001 1.39998 1.40003 1.39999 1.39995 1.40005 1.40002 1.39993 1.4 1.40004 1.4 1.39996 1.40005 1.40007 1.39997 1.39997 1.40001 1.40002 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40002 1.39997 1.40005 1.39994 1.40009 1.39989 1.40013 1.39988 1.40005 1.40012 1.39969 1.40042 1.3997 1.39998 1.4004 1.39944 1.40041 1.40001 1.3996 1.40053 1.39972 1.39992 1.4003 1.39978 1.40004 1.40008 1.39994 1.40008 1.39991 1.40003 1.40011 1.39991 1.4 1.40004 1.40001 1.40003 1.39998 1.39995 1.40003 1.40006 1.40002 1.39998 1.39997 1.39999 1.40002 1.40002 1.40002 1.40001 1.4 1.39999 1.4 1.4 1.40001 1.4 1.39998 1.39996 1.39993 1.39989 1.39987 1.39985 1.39983 1.39983 1.39985 1.39992 1.40004 1.40019 1.40037 1.40054 1.40066 1.4007 1.40066 1.40056 1.40043 1.4003 1.40019 1.40012 1.40007 1.40003 1.40001 1.40001 1.40001 1.4 1.4 1.40002 1.40003 1.4 1.39997 1.40002 1.40001 1.39995 1.40001 1.40003 1.3999 1.40001 1.4001 1.39998 1.39997 1.40006 1.40004 1.39994 1.39996 1.40005 1.40003 1.39999 1.39999 1.40001 1.40001 1.40002 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40002 1.39998 1.40003 1.39999 1.40001 1.39996 1.40015 1.39976 1.40024 1.39996 1.39973 1.40055 1.39949 1.40014 1.40037 1.39937 1.40048 1.39997 1.39967 1.40039 1.39981 1.39997 1.40015 1.39985 1.40008 1.40002 1.39993 1.40009 1.39991 1.40006 1.40006 1.3999 1.4 1.40008 1.40001 1.39997 1.39997 1.4 1.40004 1.40003 1.40001 1.39999 1.39999 1.4 1.40001 1.40001 1.40002 1.40001 1.4 1.4 1.4 1.39999 1.39998 1.39994 1.3999 1.39985 1.39981 1.39977 1.39974 1.39972 1.39973 1.3998 1.39991 1.40006 1.40023 1.40039 1.4005 1.40054 1.40051 1.40043 1.40032 1.40022 1.40015 1.40009 1.40004 1.40003 1.40002 1.40002 1.4 1.40001 1.40003 1.40002 1.39999 1.39997 1.40002 1.40004 1.39997 1.40004 1.40007 1.39993 1.40006 1.40012 1.39993 1.39996 1.40008 1.40001 1.3999 1.40001 1.40009 1.4 1.39998 1.4 1.40002 1.40002 1.40001 1.39999 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.39999 1.40003 1.39998 1.40004 1.39996 1.40007 1.39989 1.40017 1.39986 1.4 1.40026 1.39952 1.40051 1.39978 1.39976 1.40061 1.39941 1.40021 1.40029 1.39948 1.40039 1.39996 1.3998 1.40024 1.39988 1.40004 1.40005 1.39987 1.40017 1.39996 1.3999 1.40011 1.4 1.39999 1.39998 1.39998 1.40006 1.40004 1.39998 1.39996 1.4 1.40003 1.40003 1.4 1.39999 1.4 1.40001 1.40001 1.40002 1.40002 1.40002 1.40002 1.40001 1.39999 1.39997 1.39993 1.39989 1.39984 1.39978 1.39973 1.39969 1.39967 1.39968 1.39974 1.39984 1.39999 1.40015 1.40029 1.40038 1.40042 1.40039 1.40032 1.40025 1.40017 1.40011 1.40007 1.40004 1.40003 1.40002 1.4 1.4 1.40002 1.4 1.39997 1.39997 1.40003 1.40004 1.39996 1.40001 1.40009 1.39996 1.40003 1.40013 1.39988 1.39993 1.40013 1.39997 1.39991 1.40005 1.40008 1.39998 1.39995 1.40003 1.40003 1.4 1.39998 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40002 1.39998 1.40003 1.39999 1.39998 1.40006 1.39999 1.39988 1.40031 1.39962 1.40025 1.40013 1.39948 1.40066 1.39964 1.39985 1.40056 1.39945 1.40022 1.40018 1.39966 1.40028 1.39993 1.3999 1.4002 1.39986 1.40004 1.40006 1.39992 1.4001 1.39994 1.39998 1.40009 1.39998 1.39997 1.39999 1.40004 1.40004 1.39999 1.39998 1.39999 1.4 1.40002 1.40002 1.40001 1.4 1.4 1.40001 1.40001 1.40002 1.40002 1.4 1.39998 1.39995 1.39993 1.39989 1.39984 1.39978 1.39972 1.39968 1.39966 1.39967 1.39972 1.39982 1.39995 1.40009 1.40021 1.40029 1.40032 1.4003 1.40024 1.40018 1.40013 1.40008 1.40004 1.40003 1.40002 1.4 1.4 1.40002 1.4 1.39997 1.4 1.40003 1.40002 1.39996 1.39999 1.40006 1.39994 1.39996 1.40008 1.39983 1.39997 1.40019 1.39993 1.39991 1.4001 1.4001 1.3999 1.39998 1.40007 1.4 1.39998 1.39999 1.40002 1.40001 1.40002 1.39999 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.39999 1.4001 1.39981 1.40025 1.39985 1.39988 1.40046 1.39939 1.40044 1.40003 1.39951 1.40064 1.39965 1.3999 1.40042 1.39961 1.40016 1.40009 1.39981 1.40018 1.39991 1.39998 1.40015 1.39983 1.40007 1.40008 1.39991 1.40002 1.4 1.40005 1.40001 1.39994 1.40001 1.40003 1.40004 1.4 1.39997 1.39999 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.39999 1.39998 1.39998 1.39996 1.39993 1.39989 1.39985 1.39979 1.39974 1.39969 1.39967 1.39968 1.39973 1.39982 1.39994 1.40006 1.40016 1.40022 1.40024 1.40022 1.40018 1.40014 1.40009 1.40005 1.40004 1.40002 1.4 1.40001 1.40001 1.39999 1.39999 1.40003 1.40004 1.40002 1.39998 1.40001 1.40006 1.39995 1.39993 1.40007 1.3999 1.39998 1.40023 1.39991 1.39988 1.40018 1.40004 1.39987 1.40001 1.40005 1.40001 1.39997 1.40001 1.40002 1.40002 1.39999 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.39999 1.40003 1.39999 1.39999 1.40008 1.39987 1.40011 1.40006 1.3997 1.40049 1.39958 1.40007 1.4004 1.39936 1.40049 1.39997 1.39962 1.40051 1.3997 1.39999 1.40025 1.39972 1.40015 1.40005 1.39982 1.40018 1.39995 1.39997 1.40007 1.39993 1.40007 1.39999 1.39995 1.40005 1.40002 1.40002 1.39997 1.39998 1.40004 1.40002 1.40001 1.4 1.39999 1.39999 1.4 1.40001 1.40001 1.4 1.39999 1.39998 1.39998 1.39999 1.39999 1.39997 1.39993 1.39989 1.39985 1.39981 1.39976 1.39973 1.39971 1.39972 1.39976 1.39984 1.39994 1.40004 1.40012 1.40017 1.40018 1.40017 1.40013 1.4001 1.40007 1.40005 1.40003 1.40001 1.40001 1.40001 1.4 1.40001 1.40003 1.40003 1.4 1.4 1.40001 1.40002 1.39998 1.39998 1.40011 1.40001 1.4 1.40023 1.39986 1.39989 1.40022 1.39996 1.39985 1.40003 1.40013 1.39995 1.39996 1.40006 1.40001 1.4 1.39998 1.40002 1.4 1.40002 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40002 1.39997 1.40006 1.39998 1.39994 1.40022 1.39968 1.40028 1.39999 1.39966 1.40059 1.3995 1.40013 1.40032 1.39948 1.40039 1.39996 1.39975 1.40034 1.3998 1.40001 1.40015 1.39983 1.40012 1.4 1.3999 1.40015 1.39992 1.39998 1.40007 1.39997 1.40003 1.39996 1.40002 1.40005 1.39998 1.4 1.39999 1.40001 1.40002 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.39998 1.39996 1.39994 1.39991 1.39987 1.39983 1.3998 1.39977 1.39975 1.39976 1.3998 1.39987 1.39995 1.40003 1.40009 1.40013 1.40014 1.40012 1.4001 1.40007 1.40005 1.40003 1.40002 1.40001 1.40001 1.40001 1.40001 1.40002 1.4 1.39998 1.39998 1.39998 1.39999 1.4 1.39999 1.40009 1.40004 1.39994 1.40013 1.39988 1.39988 1.40022 1.39993 1.39983 1.40014 1.4001 1.3999 1.40003 1.40002 1.40002 1.39998 1.40001 1.40002 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40002 1.39998 1.40001 1.40004 1.39989 1.4002 1.39983 1.40002 1.40025 1.39954 1.40047 1.39982 1.39979 1.4005 1.39954 1.40016 1.4002 1.39963 1.4003 1.39995 1.39985 1.40024 1.39985 1.4 1.40014 1.39985 1.40007 1.40002 1.39996 1.40006 1.39994 1.40004 1.40004 1.39996 1.40001 1.39999 1.40004 1.40002 1.39997 1.4 1.4 1.40001 1.40002 1.40001 1.40001 1.39999 1.39999 1.40001 1.40002 1.40002 1.40001 1.39999 1.39998 1.39997 1.39996 1.39994 1.3999 1.39986 1.39983 1.3998 1.39979 1.3998 1.39983 1.39989 1.39995 1.40002 1.40007 1.40009 1.4001 1.40009 1.40007 1.40005 1.40004 1.40002 1.40002 1.40002 1.40001 1.4 1.4 1.4 1.39999 1.39999 1.4 1.40002 1.40004 1.40001 1.40003 1.4 1.39988 1.40004 1.39992 1.39988 1.40022 1.39993 1.39988 1.40022 1.40003 1.39989 1.39998 1.40008 1.4 1.39995 1.40005 1.4 1.40002 1.39998 1.40002 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.39998 1.40005 1.39994 1.40005 1.40006 1.3998 1.40033 1.3997 1.40011 1.40022 1.39956 1.40045 1.39982 1.39986 1.40035 1.39969 1.40011 1.40014 1.39977 1.40019 1.39998 1.3999 1.40015 1.39991 1.40001 1.40007 1.3999 1.40008 1.4 1.39997 1.40004 1.39997 1.40005 1.39999 1.39998 1.40003 1.4 1.40001 1.4 1.40001 1.4 1.39999 1.4 1.40001 1.40002 1.40002 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.39999 1.39997 1.39994 1.39992 1.39989 1.39986 1.39984 1.39983 1.39984 1.39987 1.39991 1.39996 1.40001 1.40005 1.40007 1.40008 1.40006 1.40005 1.40004 1.40003 1.40002 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40003 1.40005 1.40004 1.39999 1.39999 1.40001 1.39991 1.40003 1.40005 1.39992 1.40019 1.39997 1.3999 1.40017 1.39996 1.39985 1.40006 1.4001 1.39989 1.40004 1.40002 1.40001 1.39999 1.4 1.40002 1.39999 1.40002 1.39999 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.39999 1.40002 1.40001 1.39995 1.40013 1.39982 1.40018 1.39995 1.39985 1.40035 1.39963 1.40021 1.40009 1.39969 1.40035 1.39983 1.39994 1.40023 1.39979 1.40007 1.40009 1.39985 1.40012 1.4 1.39992 1.40011 1.39994 1.40001 1.40004 1.39995 1.40007 1.39997 1.39999 1.40004 1.39998 1.40002 1.39998 1.40001 1.40002 1.4 1.40001 1.4 1.4 1.4 1.4 1.40002 1.40001 1.4 1.39999 1.39999 1.4 1.4 1.39999 1.39998 1.39997 1.39995 1.39993 1.39991 1.39989 1.39988 1.39987 1.39988 1.3999 1.39993 1.39997 1.40001 1.40004 1.40005 1.40005 1.40005 1.40004 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40002 1.40002 1.4 1.39994 1.39997 1.40003 1.39995 1.40005 1.40013 1.39994 1.40013 1.40001 1.39987 1.40012 1.39994 1.39989 1.40014 1.40002 1.39994 1.40003 1.40001 1.40003 1.39994 1.40004 1.39998 1.40003 1.39998 1.40002 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40003 1.39996 1.40006 1.39997 1.39996 1.40016 1.39975 1.40026 1.39989 1.3999 1.40028 1.3997 1.40017 1.40005 1.39981 1.40021 1.39991 1.39995 1.40014 1.39989 1.40003 1.40007 1.39991 1.40007 1.4 1.39996 1.40008 1.39995 1.40001 1.40004 1.39997 1.40004 1.39997 1.40002 1.40002 1.39998 1.40002 1.4 1.4 1.4 1.40001 1.40002 1.4 1.39999 1.39999 1.4 1.40001 1.4 1.39999 1.39999 1.39999 1.39999 1.39998 1.39997 1.39996 1.39995 1.39993 1.39992 1.3999 1.3999 1.39991 1.39992 1.39995 1.39998 1.40001 1.40003 1.40004 1.40004 1.40003 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.39997 1.39995 1.40001 1.40004 1.39999 1.40002 1.40009 1.39991 1.40001 1.40003 1.39985 1.40009 1.4 1.39997 1.40012 1.39998 1.39994 1.40003 1.40007 1.39992 1.40001 1.40004 1.39999 1.40002 1.39998 1.40004 1.39998 1.40003 1.39999 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.39999 1.40005 1.3999 1.40015 1.39987 1.40006 1.40009 1.3998 1.40024 1.39985 1.39999 1.40017 1.39979 1.40014 1.40002 1.39989 1.40013 1.39996 1.39996 1.40009 1.39995 1.4 1.40006 1.39994 1.40005 1.4 1.39998 1.40005 1.39996 1.40003 1.40002 1.39997 1.40003 1.39999 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.39999 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.39999 1.39998 1.39996 1.39995 1.39994 1.39993 1.39992 1.39993 1.39994 1.39996 1.39999 1.40001 1.40002 1.40003 1.40003 1.40003 1.40002 1.40002 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.39998 1.4 1.40006 1.40007 1.4 1.4 1.40007 1.3999 1.39998 1.40007 1.39986 1.40009 1.40005 1.39996 1.40007 1.39996 1.39996 1.40007 1.39999 1.39994 1.40007 1.39998 1.40004 1.39996 1.40003 1.39999 1.40002 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.39999 1.40004 1.39997 1.40002 1.40004 1.3999 1.40016 1.39985 1.40009 1.40005 1.39986 1.40018 1.3999 1.4 1.4001 1.3999 1.40006 1.40002 1.39995 1.40006 1.39999 1.39998 1.40006 1.39997 1.40001 1.40004 1.39995 1.40004 1.4 1.39998 1.40004 1.39998 1.40003 1.4 1.39999 1.40002 1.4 1.40001 1.4 1.4 1.4 1.4 1.40002 1.40001 1.40001 1.40001 1.40001 1.40002 1.40002 1.40002 1.40001 1.4 1.4 1.39999 1.39998 1.39997 1.39996 1.39995 1.39995 1.39995 1.39995 1.39996 1.39998 1.39999 1.40001 1.40002 1.40002 1.40002 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.39999 1.4 1.40006 1.40003 1.39996 1.4 1.40003 1.39994 1.4 1.40009 1.39992 1.40007 1.40007 1.39992 1.40001 1.39998 1.39999 1.40007 1.39997 1.4 1.40002 1.40003 1.39999 1.39997 1.40005 1.39998 1.40004 1.39997 1.40004 1.39998 1.40002 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40002 1.39997 1.40007 1.39992 1.40008 1.39997 1.39997 1.4001 1.39989 1.40009 1.4 1.39993 1.40011 1.39993 1.40001 1.40006 1.39994 1.40003 1.40003 1.39997 1.40002 1.40002 1.39997 1.40004 1.39999 1.4 1.40003 1.39997 1.40004 1.39999 1.39999 1.40003 1.39999 1.40002 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40002 1.40002 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.39999 1.39999 1.39998 1.39997 1.39997 1.39996 1.39996 1.39997 1.39997 1.39998 1.4 1.40001 1.40001 1.40002 1.40002 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40003 1.39998 1.39994 1.39999 1.40002 1.39997 1.4 1.40009 1.39994 1.40002 1.40008 1.3999 1.40003 1.40002 1.4 1.40004 1.39996 1.4 1.40004 1.40001 1.39993 1.40007 1.39999 1.40001 1.39999 1.40001 1.40001 1.39999 1.40002 1.39999 1.40002 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.39999 1.40002 1.4 1.39998 1.40006 1.39993 1.40008 1.39997 1.39998 1.40007 1.39992 1.40005 1.40001 1.39997 1.40005 1.39998 1.4 1.40002 1.39999 1.40001 1.40001 1.39998 1.40002 1.40001 1.39998 1.40004 1.39998 1.4 1.40003 1.39998 1.40002 1.39999 1.4 1.40002 1.4 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.39999 1.4 1.4 1.4 1.4 1.4 1.39999 1.39999 1.39998 1.39998 1.39998 1.39997 1.39998 1.39998 1.39999 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.39999 1.39997 1.40001 1.40004 1.39999 1.40001 1.40006 1.39995 1.4 1.40006 1.39991 1.40004 1.40004 1.4 1.4 1.39999 1.40001 1.40002 1.39997 1.40002 1.40004 1.39997 1.40004 1.39997 1.40004 1.39997 1.40004 1.39997 1.40003 1.39999 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40002 1.39997 1.40004 1.39997 1.40003 1.40001 1.39998 1.40005 1.39997 1.40001 1.40003 1.39997 1.40004 1.4 1.39999 1.40004 1.39999 1.4 1.40003 1.4 1.39999 1.40003 1.39999 1.4 1.40002 1.39999 1.40003 1.39999 1.40001 1.40002 1.39998 1.40002 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.39999 1.39999 1.39998 1.39998 1.39999 1.39999 1.39999 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.40004 1.40004 1.39999 1.40002 1.40004 1.39997 1.39999 1.40006 1.39997 1.40001 1.40003 1.39996 1.40001 1.4 1.4 1.40003 1.39998 1.40002 1.4 1.40002 1.39998 1.40001 1.40002 1.39999 1.40001 1.39999 1.40003 1.39998 1.40003 1.39999 1.40002 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40002 1.39998 1.40003 1.39998 1.40002 1.40001 1.39998 1.40004 1.39998 1.40001 1.40002 1.39999 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40002 1.39998 1.40001 1.40002 1.39998 1.40002 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.39999 1.39999 1.39999 1.39999 1.39999 1.39999 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40002 1.40001 1.39998 1.4 1.40001 1.39998 1.39998 1.40005 1.39998 1.4 1.40004 1.39997 1.40003 1.4 1.40002 1.4 1.39998 1.40003 1.4 1.39999 1.39999 1.40006 1.39996 1.40003 1.39999 1.40002 1.39998 1.40003 1.39999 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40002 1.39999 1.40002 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.39999 1.40002 1.40001 1.39999 1.40002 1.40001 1.39998 1.40002 1.40001 1.39998 1.40002 1.4 1.40001 1.40001 1.4 1.40002 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.39999 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.39998 1.4 1.40002 1.39999 1.39999 1.40004 1.4 1.39997 1.40002 1.4 1.40004 1.39999 1.39999 1.4 1.40002 1.4 1.40001 1.4 1.40002 1.39999 1.39999 1.40003 1.39998 1.40003 1.39999 1.40002 1.39998 1.40003 1.39998 1.40002 1.39999 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.39999 1.40001 1.4 1.4 1.40002 1.39999 1.40002 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.39999 1.40001 1.40001 1.39999 1.40001 1.4 1.40001 1.4 1.4 1.40002 1.39999 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40002 1.40002 1.4 1.4 1.40003 1.40001 1.39997 1.40003 1.40001 1.39999 1.39998 1.4 1.40003 1.4 1.40001 1.40002 1.39998 1.40002 1.39999 1.40002 1.39998 1.40003 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40002 1.39999 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40002 1.4 1.39997 1.40002 1.40003 1.39999 1.39999 1.40001 1.40004 1.39999 1.4 1.39999 1.40001 1.40002 1.39999 1.40001 1.4 1.40003 1.39997 1.40004 1.39999 1.40002 1.39999 1.40002 1.39998 1.40002 1.39999 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40002 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.39999 1.39999 1.40001 1.40001 1.39998 1.40002 1.40002 1.39996 1.40001 1.40004 1.40002 1.39996 1.4 1.40003 1.40001 1.39999 1.40002 1.4 1.40001 1.39999 1.40002 1.40001 1.39999 1.40002 1.39999 1.40001 1.4 1.40001 1.39999 1.40002 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.39999 1.40002 1.40002 1.39998 1.40001 1.40002 1.39998 1.39998 1.40002 1.40002 1.39999 1.40001 1.4 1.39999 1.40002 1.4 1.40002 1.39998 1.40003 1.39999 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40002 1.40001 1.39999 1.40001 1.40001 1.39999 1.40002 1.40003 1.39998 1.4 1.40003 1.40002 1.39999 1.4 1.40001 1.40002 1.4 1.4 1.40001 1.40001 1.40001 1.39999 1.40003 1.39999 1.40002 1.4 1.40001 1.4 1.40002 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.39998 1.40001 1.40001 1.39998 1.40003 1.40002 1.39999 1.39998 1.40002 1.40001 1.39999 1.4 1.40002 1.4 1.40001 1.4 1.40002 1.4 1.4 1.40002 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40002 1.4 1.40001 1.40001 1.39999 1.40001 1.40001 1.39999 1.40001 1.40002 1.39999 1.40001 1.40002 1.4 1.4 1.40001 1.4 1.40001 1.39999 1.40002 1.39999 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.39999 1.40001 1.40001 1.4 1.40001 1.40001 1.39999 1.40002 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40002 1.39999 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.39999 1.40001 1.40001 1.4 1.40002 1.4 1.39999 1.4 1.40002 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40002 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.39999 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.40001 1.4 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.4 1.40001 1.4 1.4 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.4 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 1.40001 ) ; boundaryField { emptyPatches_empt { type empty; } top_cyc { type cyclic; } bottom_cyc { type cyclic; } inlet_cyc { type cyclic; } outlet_cyc { type cyclic; } } // ************************************************************************* //
12e41ffbe213b342372021fbca95c5969429b965
0e3b5742e4455f70de07af07e10bdae2f796866d
/src/InputBitStream.hpp
e4d2230c37cba15fb21beb8c7b548d0532b86771
[ "Apache-2.0" ]
permissive
WhatTheBlock/kanzi-w64
2ec78c2d59cf6696bb76f56b503144b5ef77baeb
91a39dd7bd557eb61583164210b0abf5400ca2e5
refs/heads/master
2021-10-08T10:30:58.833601
2021-09-28T10:58:55
2021-09-28T10:58:55
195,576,014
2
1
null
null
null
null
UTF-8
C++
false
false
1,550
hpp
InputBitStream.hpp
/* Copyright 2011-2017 Frederic Langlet Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. you may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #ifndef _InputBitStream_ #define _InputBitStream_ #include "BitStreamException.hpp" #include "types.hpp" namespace kanzi { class InputBitStream { public: // Returns 1 or 0 virtual int readBit() THROW = 0; // Length is the number of bits in [1..64]. Return the bits read as a long // Throws if the stream is closed. virtual uint64 readBits(uint length) THROW = 0; // Read bits and put them in the byte array. Length is the number of bits // Return the number of bits read. // Throws if the stream is closed. virtual uint readBits(byte bits[], uint length) THROW = 0; virtual void close() THROW = 0; // Number of bits read virtual uint64 read() const = 0; // Return false when the bitstream is closed or the End-Of-Stream has been reached virtual bool hasMoreToRead() = 0; InputBitStream(){}; virtual ~InputBitStream(){}; }; } #endif
e520ea1523d79aca25d90fc1acec20c95c4b8d6b
aaa1346a54efe75cc6a4f6749c79ed9b316056e3
/src-std-mesh/Concrete/SundanceBasicSimplicialMesh.hpp
39b6ffc199ef4a1bc0abf29c21ec34e3b37d93f7
[ "BSD-2-Clause" ]
permissive
trilinos/Sundance
e34c87159d8196d95f049d3cc8aa00ae7003c301
f4c26e7babb5b9ba6cdadec499d9123273e390b0
refs/heads/master
2020-04-06T15:00:47.864668
2019-05-28T19:03:02
2019-05-28T19:03:02
47,220,438
3
2
NOASSERTION
2019-05-28T19:03:03
2015-12-01T22:07:02
C++
UTF-8
C++
false
false
18,411
hpp
SundanceBasicSimplicialMesh.hpp
/* @HEADER@ */ // ************************************************************************ // // Sundance // Copyright 2011 Sandia Corporation // // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, // the U.S. Government retains certain rights in this software. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // 1. Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // // 2. Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // // 3. Neither the name of the Corporation nor the names of the // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Questions? Contact Kevin Long (kevin.long@ttu.edu) // /* @HEADER@ */ #ifndef SUNDANCE_BASICSIMPLICIALMESH_H #define SUNDANCE_BASICSIMPLICIALMESH_H #include "SundanceDefs.hpp" #include "SundanceMeshBase.hpp" #include "SundanceSet.hpp" #include "SundanceBasicVertexView.hpp" #include "SundanceArrayOfTuples.hpp" #include "SundanceIncrementallyCreatableMesh.hpp" #include "Teuchos_Array.hpp" #include "Teuchos_Hashtable.hpp" namespace Sundance { /** * A no-frills parallel simplicial mesh */ class BasicSimplicialMesh : public IncrementallyCreatableMesh { public: /** */ BasicSimplicialMesh(int dim, const MPIComm& comm, const MeshEntityOrder& order); /** */ virtual ~BasicSimplicialMesh(){;} /** * Get the number of cells having dimension dim */ virtual int numCells(int dim) const ; /** * Return the position of the i-th node */ virtual Point nodePosition(int i) const {return points_[i];} /** * Return a view of the i-th node's position */ const double* nodePositionView(int i) const {return &(points_[i][0]);} /** * Compute the jacobians of a batch of cells, returning the * result via reference argument * * @param cellDim dimension of the cells whose Jacobians are to * be computed * @param cellLID local indices of the cells for which Jacobians * are to be computed * @param jBatch reference to the resulting Jacobian batch */ virtual void getJacobians(int cellDim, const Array<int>& cellLID, CellJacobianBatch& jBatch) const ; /** * Compute the diameters of a batch of cells, * result via reference argument * * @param cellDim dimension of the cells whose diameters are to * be computed * @param cellLID local indices of the cells for which diameters * are to be computed * @param diameters reference to the array of cell diameters */ virtual void getCellDiameters(int cellDim, const Array<int>& cellLID, Array<double>& diameters) const ; /** * Map reference quadrature points to physical points on the * given cells. */ virtual void pushForward(int cellDim, const Array<int>& cellLID, const Array<Point>& refQuadPts, Array<Point>& physQuadPts) const ; /** * Return the rank of the processor that owns the given cell */ virtual int ownerProcID(int cellDim, int cellLID) const ; /** * Return the number of facets of the given cell */ virtual int numFacets(int cellDim, int cellLID, int facetDim) const ; /** * Return the local ID of a facet cell * @param cellDim dimension of the cell whose facets are being obtained * @param cellLID local index of the cell whose * facets are being obtained * @param facetDim dimension of the desired facet * @param facetIndex index into the list of the cell's facets * @param facetOrientation orientation of the facet as seen from * the given cell (returned via reference) */ virtual int facetLID(int cellDim, int cellLID, int facetDim, int facetIndex, int& facetOrientation) const ; /** * Return by reference argument an array containing * the LIDs of the facetDim-dimensional facets of the * given batch of cells */ virtual void getFacetLIDs(int cellDim, const Array<int>& cellLID, int facetDim, Array<int>& facetLID, Array<int>& facetOrientations) const ; /** * Return a view of an element's zero-dimensional facets */ const int* elemZeroFacetView(int cellLID) const {return &(elemVerts_.value(cellLID, 0));} /** * Return the number of maximal cofacets of the given cell */ virtual int numMaxCofacets(int cellDim, int cellLID) const ; /** * Return the local ID of a maximal cofacet cell * @param cellDim dimension of the cell whose cofacets are being obtained * @param cellLID local index of the cell whose * cofacets are being obtained * @param cofacetIndex which maximal cofacet to get * @param cofacetIndex index of the cell cellLID into the list of the * maximal cell's facets */ virtual int maxCofacetLID(int cellDim, int cellLID, int cofacetIndex, int& facetIndex) const ; #ifdef MOVED_TO_BASE_CLASS /** * Get the LIDs of the maximal cofacets for a batch of codimension-one * cells. * * \param cellLIDs [in] array of LIDs of the cells whose cofacets are * being obtained * \param cofacets [out] the batch of cofacets */ virtual void getMaxCofacetLIDs(const Array<int>& cellLIDs, MaximalCofacetBatch& cofacets) const ; #endif /** * Find the cofacets of the given cell * @param cellDim dimension of the cell whose cofacets are being obtained * @param cellLID local index of the cell whose * cofacets are being obtained * @param cofacetDim dimension of the cofacets to get * @param cofacetLIDs LIDs of the cofacet */ void getCofacets(int cellDim, int cellLID, int cofacetDim, Array<int>& cofacetLIDs) const ; /** * Find the local ID of a cell given its global index */ virtual int mapGIDToLID(int cellDim, int globalIndex) const ; /** * Determine whether a given cell GID exists on this processor */ virtual bool hasGID(int cellDim, int globalIndex) const ; /** * Find the global ID of a cell given its local index */ virtual int mapLIDToGID(int cellDim, int localIndex) const ; /** * Get the type of the given cell */ virtual CellType cellType(int cellDim) const ; /** Get the label of the given cell */ virtual int label(int cellDim, int cellLID) const ; /** Get the labels for a batch of cells */ virtual void getLabels(int cellDim, const Array<int>& cellLID, Array<int>& labels) const ; /** Get the list of all labels defined for cells of the given dimension */ virtual Set<int> getAllLabelsForDimension(int cellDim) const ; /** * Get the cells associated with a specified label. The array * cellLID will be filled with those cells of dimension cellDim * having the given label. */ virtual void getLIDsForLabel(int cellDim, int label, Array<int>& cellLIDs) const ; /** \name Incremental creation methods */ //@{ /** * Add new new vertex to the mesh. * \param globalIndex the GID of the new vertex * \param x the spatial position of the new vertex * \param ownerProcID the processor that "owns" this vertex * \param label a label for this vertex (optionally used in setting * loads, boundary conditions, etc) * \return the LID of the vertex. */ virtual int addVertex(int globalIndex, const Point& x, int ownerProcID, int label); /** * Add a new element to the mesh. * \param globalIndex the GID of the new element * \param vertexGIDs tuple of GIDs for the vertices defining this element. * \param ownerProcID the processor that "owns" this element * \param label a label for this element (optionally used in setting loads, * material properties, etc) * \return the LID of the element */ virtual int addElement(int globalIndex, const Array<int>& vertexGIDs, int ownerProcID, int label); /** Set the label of the given cell */ virtual void setLabel(int cellDim, int cellLID, int label) { labels_[cellDim][cellLID] = label; } /** Optional preallocation of space for an estimated number of vertices */ virtual void estimateNumVertices(int numVertices); /** Optional preallocation of space for an estimated number of elements */ virtual void estimateNumElements(int numElements); /** Coordinate intermediate cell definitions across processors */ virtual void assignIntermediateCellGIDs(int cellDim) ; /** */ virtual bool hasIntermediateGIDs(int dim) const { if (dim==1) return hasEdgeGIDs_; return hasFaceGIDs_; } //@} private: /** * Add a new face, first checking to see if it already exists. * This function is called from within addElement(), * not by the user, and is therefore private. * * \param vertGID The sorted GIDs for the three vertices of the face * \param vertLID The LIDs for the three vertices of the face * \param edgeLID{1,2,3} The LIDs for the three edges of the face * \return LID of this face */ int addFace(const Array<int>& vertLID, const Array<int>& vertGID, const Array<int>& edgeGID, int elemLID, int elemGID); /** * Add a new edge, first checking to see if it already exists. * This function is called from within addElement(), * not by the user, and is therefore private. * * \param vertLID{1,2} * \param elemLID LID of the element that is adding the edge * \param elemGID GID of the element that is adding the edge * \param myFacetNumber facet number of the edge within the element * \return LID of this edge */ int addEdge(int vertLID1, int vertLID2, int elemLID, int elemGID, int myFacetNumber); /** * Check for the presence of the edge (vertLID1, vertLID2) in the mesh. * \return the edge LID if the edge exists, -1 otherwise */ int checkForExistingEdge(int vertLID1, int vertLID2); /** * Check whether the face defined by the given vertices exists * in the mesh. Returns -1 if the face does not exist. * Called during the synchronization of intermediate cell GIDs. * \param vertGID{1,2,3} the global indices of the vertices defining the face * \return the LID of the face */ int lookupFace(const Array<int>& vertGID) ; /** */ void synchronizeGIDNumbering(int dim, int localCount) ; /** */ void resolveEdgeOwnership(int cellDim); /** */ std::string cellStr(int dim, const int* verts) const ; /** */ std::string cellToStr(int dim, int cellLID) const ; /** */ std::string printCells(int dim) const ; /** */ void synchronizeNeighborLists(); /** Number of cells of each dimension. */ Array<int> numCells_; /** coordinates of vertices. The index into the array is the vertex LID .*/ Array<Point> points_; /** pairs of local vertex indices for the edges, each pair ordered * from lower to higher <i>global</i> vertex index in order to define * an absolute edge orientation. Because global vertex indices are used, all * processors will agree on this orientation, regardless of the orientation * of the edge as seen by the element first defining it. * The first index into this 2D array is the edge LID, the second the vertex * number within the edge. * */ ArrayOfTuples<int> edgeVerts_; /** Tuples of local vertex indices for the faces, with each tuple ordered from * lowest to highest <i>global</i> index in order to define an absolute edge * orientation. Because global vertex indices are used, all * processors will agree on this orientation, regardless of the orientation * of the face as seen by the element first defining it. * The first index into this 2D array is the face LID, the second the * vertex number within the face. */ ArrayOfTuples<int> faceVertLIDs_; /** Tuples of global vertex indices for the faces, with each tuple ordered from * lowest to highest <i>global</i> index in order to define an absolute edge * orientation. Because global vertex indices are used, all * processors will agree on this orientation, regardless of the orientation * of the face as seen by the element first defining it. * The first index into this 2D array is the face LID, the second the * vertex number within the face. * * Notice that we duplicate the face vertex storage, storing both the * vertex LIDs and vertex GIDs for each face. This lets us do quick comparison * with the sorted GID array in order to identify pre-existing faces, while * also making it possible to retrieve face vertex LID information without * doing hashtable lookups. * */ ArrayOfTuples<int> faceVertGIDs_; /** Tuples of local indices for the edges of all faces. The first index * into this 2D array is the face LID, the second the edge number. */ ArrayOfTuples<int> faceEdges_; /** Tuples of edge signs for the faces. The edge sign indicates * whether the orientation of the edge as given by moving around the face * is parallel or antiparallel to the absolute orientation of the edge. */ ArrayOfTuples<int> faceEdgeSigns_; /** tuples of local vertex indices for the elements. The first index into this * 2D array is the element LID, the second is the vertex number. */ ArrayOfTuples<int> elemVerts_; /** tuples of local edge indices for the elements. The first index into * this 2D array is the element LID, the second is the edge number. */ ArrayOfTuples<int> elemEdges_; /** tuples of edge orientations for the elements, indicating whether * the orientation of the edge as given by moving around the element * is parallel or antiparallel to the absolute orientation of the edge. * The first index into this 2D array is the element LID, the second * the edge number. * */ ArrayOfTuples<int> elemEdgeSigns_; /** tuples of face LIDs for the elements. The first index is the * element LID, the second the face number. */ ArrayOfTuples<int> elemFaces_; /** tuples of face rotations for the elements, defined relative to the * absolute orientation of the face. */ ArrayOfTuples<int> elemFaceRotations_; /** table for mapping vertex set -> face index */ Hashtable<VertexView, int> vertexSetToFaceIndexMap_; /** array of face cofacets for the edges. The first index * is the edge LID, the second the cofacet number. */ Array<Array<int> > edgeFaces_; /** array of element cofacets for the edges. The first index * is the edge LID, the second the cofacet number. */ Array<Array<int> > edgeCofacets_; /** array of element cofacets for the faces. The first index is the * face LID, the second the cofacet number. */ Array<Array<int> > faceCofacets_; /** array of edge cofacets for the vertices. The first index is the * vertex LID, the second the edge cofacet number. */ Array<Array<int> > vertEdges_; /** array of face cofacet LIDs for the vertices. The first index is the * vertex LID, the second the cofacet number. */ Array<Array<int> > vertFaces_; /** array of maximal cofacets for the vertices. The first index is the * vertex LID, the second the cafacet number. */ Array<Array<int> > vertCofacets_; /** array of edge partners for the vertices. The partners are other * vertices sharing an edge with the specified vertex. */ Array<Array<int> > vertEdgePartners_; /** map from local to global cell indices. The first index into this * 2D array is the cell dimension, the second the cell LID. */ Array<Array<int> > LIDToGIDMap_; /** map from global to local cell indices. The array index is the * cell dimension. The hashtable key is the cell GID, the value the * cell LID. */ Array<Hashtable<int, int> > GIDToLIDMap_; /** Array of labels for the cells */ Array<Array<int> > labels_; /** Array of owning processor IDs for the cells. Each cell is owned by * a single processor that is responsible for assigning global indices, * DOF numbers, and so on. */ Array<Array<int> > ownerProcID_; /** * Pointer to the pointer at the base of the face vertex GID array. This is * used to get small-array "views" of the face vertex GID array without * making copies, resulting in a significant performance improvement * in the vertex set hashtable lookups to identify pre-existing faces. * * We use double rather than single indirection here because as elements * are added, the face vertex GID array will often be resized, thus changing * the base pointer. Each vertex set "view" keeps a pointer to the base pointer, * so that it always remains synchronized with the array of face vertices. * * IMPORTANT: any time faceVertGIDs_ is resized, faceVertGIDBase_[0] must * be reset to the base of the faceVertGIDs_ array so that the vertex * sets are pointing to the right place. */ Array<int*> faceVertGIDBase_; /** flag indicating whether the edge GIDs have been synchronized */ bool hasEdgeGIDs_; /** flag indicating whether the face GIDs have been synchronized */ bool hasFaceGIDs_; /** Set of all neighbor processors sharing data with this one */ Set<int> neighbors_; /** Whether the neighbor lists have been synchronized across * processors */ bool neighborsAreSynchronized_; }; } #endif
05e46c315fd094cfa49c1703a823dc72fbe9994b
c2ace91ca4cb217af6d08ed1e70347c4dc01d7ab
/main.cpp
71fa5961410daa4821978fce26d5116d5c317bc7
[]
no_license
ericyxxx/LeetCode
2df8673f825e4e03a62d9ba0a26867c36087cdb6
ae1dd186dd1a4495b22026aa44f1e01fd7bffce9
refs/heads/master
2021-07-23T01:31:11.523179
2017-10-31T13:53:36
2017-10-31T13:53:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
302
cpp
main.cpp
#include <iostream> using namespace std; class HouseRobber { public: int rob(vector<int> &num){ if(num.size()<=1) return num.empty()?0:num[0]; } int main() { int p; cin >> p; std::cout << "Hello, World!" << std::endl; return 0; } };
6bc0ead80d776fd643851c7614ab8da3906a93cc
c2cc9709e7cc05a05eae6feea2ceafe14c6de977
/test/AlignedStorage.cpp
11667f8214a8916cc392144f05deb1883c3dc519
[ "MIT" ]
permissive
thecppzoo/zoo
1b886fa876574393b1d990b0b69d494738509967
982b93ef3ed33a280ac92d2328898e50b52784d1
refs/heads/master
2023-03-07T02:44:44.811420
2023-03-03T02:22:01
2023-03-03T02:22:01
100,647,573
59
6
MIT
2023-03-03T02:22:02
2017-08-17T21:43:17
C++
UTF-8
C++
false
false
6,841
cpp
AlignedStorage.cpp
// // AlignedStorage.cpp // // Created by Eduardo Madrid on 7/2/19. // #include "zoo/AlignedStorage.h" #include "catch2/catch.hpp" #include <type_traits> using namespace zoo; static_assert(VPSize == sizeof(AlignedStorage<>::space_), "incorrect size"); #ifdef __GNUC__ #ifdef __clang__ #pragma GCC diagnostic ignored "-Wgnu-alignof-expression" #endif static_assert(alignof(AlignedStorage<>::space_) == VPAlignment, "misaligned"); #endif using Big = AlignedStorage<2*VPSize>; static_assert(2*VPSize <= sizeof(Big), "larger size not honored"); using A1 = AlignedStorage<1, 1>; static_assert(1 == sizeof(A1::space_), "specific size setting not honored"); #ifdef __GNUC__ #ifdef __clang__ #pragma GCC diagnostic ignored "-Wgnu-alignof-expression" #endif static_assert(alignof(A1::space_) == 1, "specific alignment not honored"); #endif template<typename Class, typename T> std::false_type MayCallBuild(...); template<typename Class, typename T, typename... As> auto MayCallBuild(int, As &&...as) -> decltype( std::declval<Class &>().template build<T>(std::forward<As>(as)...), std::true_type{} ); template<typename Class, typename T, typename... As> constexpr auto MayCallBuild_(As &&...as) { return decltype(MayCallBuild<Class, T>(0, std::forward<As>(as)...))::value; } static_assert( impl::Constructible_v<void *, std::nullptr_t> ); static_assert( MayCallBuild_<AlignedStorage<>, void *>(nullptr), "the default AlignedStorage must be able to build a void *" ); static_assert( !MayCallBuild_<AlignedStorage<1>, void *>(nullptr), "a small AlignedStorage must reject building too big a type" ); static_assert( !MayCallBuild_<AlignedStorage<VPSize, 1>, void *>(), "must reject building a type with superior alignment" ); static_assert( MayCallBuild_<Big, char *>(nullptr), "must accept building a type with a divisor alignment" ); struct Constructors { Constructors(double) noexcept(false); constexpr explicit Constructors(const void *) noexcept {}; Constructors(int, Constructors &&); }; static_assert( MayCallBuild_<AlignedStorage<>, Constructors>(5.5), "must accept building an acceptable type" ); static_assert( MayCallBuild_<AlignedStorage<>, Constructors>(5), "must allow the conversions the held object supports" ); static_assert( !MayCallBuild_<AlignedStorage<>, Constructors>(4.5, nullptr), "must reject building if there are no suitable constructors" ); static_assert( MayCallBuild_<AlignedStorage<>, Constructors>(4, Constructors{nullptr}), "must preserve the r-value category of the arguments" ); static_assert( !MayCallBuild_< AlignedStorage<>, Constructors, // makes explicit the argument list to get an l-value reference int, const Constructors & >(4, Constructors{nullptr}), "must preserve the l-value category of the arguments" ); using A = AlignedStorage<>; static_assert( noexcept(std::declval<A &>().build<Constructors>(nullptr)), "Failed to preserve noexceptness of constructor" ); static_assert( !noexcept(std::declval<A &>().build<Constructors>(4.4)), "Failed to preserve may-throwness of constructor" ); struct Fields { enum Trace: char { ZERO, ONE, TWO }; Trace a, b, c; Fields(): a{ZERO}, b{ONE}, c{TWO} {} Fields(const Fields &) = default; Fields(Fields &&): a{TWO}, b{TWO}, c{TWO} {} Fields(int): a{ONE}, b{ONE}, c{ONE} {} bool operator==(Fields f) const { return a == f.a && b == f.b && c == f.c; } }; struct TraceDestructor { int &trace_; TraceDestructor(int &trace): trace_{trace} {} ~TraceDestructor() { trace_ = 1; } }; TEST_CASE("Aligned Storage", "[aligned-storage][contract][api]") { SECTION("build activates the constructor") { A any; any.build<Fields>(); Fields defaulted; CHECK(defaulted == *any.as<Fields>()); } SECTION("destroy activates the destructor") { int trace = 9; A any; any.build<TraceDestructor>(trace); CHECK(9 == any.as<TraceDestructor>()->trace_); any.destroy<TraceDestructor>(); CHECK(1 == trace); } } namespace { // Array support struct Typical { Typical() = default; Typical(const Typical &) = default; Typical(Typical &&) = default; long state_; }; using namespace std; using ForTypical8 = zoo::AlignedStorage<sizeof(Typical) * 8>; Typical arr8[8] = { 1, 2, 3, 4, 5, 6, 7, 8 }; Typical arr42[4][2] = { { 11, 12 }, { 21, 22 }, { 31, 32 }, { 41, 42 } }; static_assert(MayCallBuild_<ForTypical8, Typical[8]>(arr8)); static_assert(MayCallBuild_<ForTypical8, Typical[8]>(&arr8[0])); static_assert(MayCallBuild_<ForTypical8, Typical[4][2]>(arr42)); struct Traces { enum Type { DEFAULT, COPIED, MOVED, MOVED_FROM }; Type state_; Traces(): state_{DEFAULT} {} Traces(const Traces &): state_{COPIED} {} Traces(Traces &&from) noexcept: state_{MOVED} { from.state_ = MOVED_FROM; } }; struct WillThrowOnSomeConstructions { static int globalOrder; static std::vector<int> built, destroyed; int order_; WillThrowOnSomeConstructions() noexcept(false) { if(5 == globalOrder) { throw std::runtime_error("disliking 5"); } order_ = globalOrder++; built.push_back(order_); } ~WillThrowOnSomeConstructions() { destroyed.push_back(order_); } }; int WillThrowOnSomeConstructions::globalOrder = 0; std::vector<int> WillThrowOnSomeConstructions::built, WillThrowOnSomeConstructions::destroyed; } TEST_CASE( "Aligned Storage Nested Arrays", "[nested-arrays][aligned-storage][contract][api]" ) { ForTypical8 ft8; SECTION("Nested Arrays") { ft8.build<Typical[8]>(arr8); CHECK((*ft8.as<Typical[8]>())[5].state_ == 6); ft8.destroy<Typical[8]>(); ft8.build<Typical[4][2]>(arr42); CHECK((*ft8.as<Typical[4][2]>())[3][0].state_ == 41); } SECTION("Array value category") { ft8.build<Traces[8]>(); auto &t8 = *ft8.as<Traces[8]>(); ForTypical8 copy; copy.build<Traces[8]>(std::move(t8)); CHECK(Traces::MOVED == (*copy.as<Traces[8]>())[0].state_); CHECK(Traces::MOVED_FROM == t8[4].state_); } SECTION("Partial build failures") { WillThrowOnSomeConstructions::globalOrder = 0; auto &built = WillThrowOnSomeConstructions::built, &destroyed = WillThrowOnSomeConstructions::destroyed; built.clear(); destroyed.clear(); CHECK_THROWS(ft8.build<WillThrowOnSomeConstructions[8]>()); CHECK(5 == WillThrowOnSomeConstructions::built.size()); std::vector<int> reversed(built.rbegin(), built.rend()); CHECK(reversed == destroyed); } }
1ff543004e48ca600c583d60218f9bbad455eb50
9549e9668a08d7dca7b81541afb8592081178776
/src/drawing/position.hpp
af6af4d28408fa25b558e34cbd673131dac48008
[ "MIT" ]
permissive
arnoGalvez/opengl
d08bf8aa42afc81b30e820c5ce3da7dc937b96ed
c769964a8bfbd4a060d276937a12275122c4faff
refs/heads/master
2021-04-18T20:27:55.967273
2018-12-01T19:16:50
2018-12-01T19:16:50
126,181,562
0
0
null
null
null
null
UTF-8
C++
false
false
2,479
hpp
position.hpp
#include <glm/glm.hpp> #include <glm/gtc/matrix_transform.hpp> #include <iostream> using namespace glm; class Position { public: // ANCHOR public Position(const unsigned int nX, const unsigned int nY, const unsigned int nZ, const float lX, const float lY, const float lZ) { pointsX = nX; pointsY = nY; pointsZ = nZ; lengthX = lX; lengthY = lY; lengthZ = lZ; AllocatePositions(); } Position(const unsigned int n, const float length) : Position(n, n, n, length, length, length) {} ~Position() { delete positions; } mat4 *GetPtr() { return positions; } GLuint GetMatricesCount() { return pointsX * pointsY * pointsZ; } GLsizeiptr GetDataSize() { return GetMatricesCount() * sizeof(mat4); } private: // ANCHOR private unsigned int pointsX, pointsY, pointsZ; float lengthX, lengthY, lengthZ; mat4 *positions; void AllocatePositions() { positions = new mat4[pointsX * pointsY * pointsZ]; float halfX = -lengthX / 2.0f; float halfY = -lengthY / 2.0f; float halfZ = -lengthZ / 2.0f; int verify = 0; for (size_t i = 0; i < pointsX; i++) { float tX = (float)i / (float)(pointsX == 1 ? 1 : pointsX - 1); float posX = halfX + tX * lengthX; for (size_t j = 0; j < pointsY; j++) { float tY = (float)j / (float)(pointsY == 1 ? 1 : pointsY - 1); float posY = halfY + tY * lengthY; for (size_t k = 0; k < pointsZ; k++) { verify++; float tZ = (float)k / (float)(pointsZ == 1 ? 1 : pointsZ - 1); float posZ = halfZ + tZ * lengthY; unsigned int index = GetArrayIndex(i, j, k); mat4 pos; pos = translate(pos, vec3(posX, posY, posZ)); for (size_t l = 0; l < 4; l++) { positions[index][l].x = pos[l].x; positions[index][l].y = pos[l].y; positions[index][l].z = pos[l].z; positions[index][l].w = pos[l].w; } } } } } unsigned int GetArrayIndex(int i, int j, int k) { return i + j * pointsX + k * pointsX * pointsY; } };
bc627c18740ea0ca11ed197c515cc2e84dc188c6
c980751e8df5352ba2e40d8f908fd7b4050e611e
/tempp.cpp
b409e050c5c2360090afffe8513c55427ff20e67
[]
no_license
Pruthviraj98/uta-2019-winsem
3a5ba0c91dd2671770116689bc69314ca0eef0f1
95ec16e639479a4a53bd11c54f7f387259513026
refs/heads/master
2020-04-22T17:53:26.148928
2019-04-06T05:23:00
2019-04-06T05:23:00
170,557,747
1
0
null
null
null
null
UTF-8
C++
false
false
894
cpp
tempp.cpp
#include "bits/stdc++.h" using namespace std; #define pb push_back #define mp make_pair #define priority_queue pq #define fr(i,n) for(int i=0;i<n;i++) #define frr(i,n) for(int i=1;i<=n;i++) #define dbg(x) cout << #x << " = " << x << endl #define f first #define s second #define fastio ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); typedef long long int ll; typedef pair<int,int> pii; typedef vector<int> vi; const int mod = 1000000007; ll fastexp(ll base, ll exp){ if (!exp) return 1; ll ans = fastexp(base, exp/2); ans = (ans*ans)%mod; if (exp%2) ans = (ans*base)%mod; return ans%mod; } int main(){ ll t; cin >> t; while (t--){ ll n, aux1, aux2, ans; cin >> n; aux1 = ceil((n+1)/2.0); aux2 = floor((n+1)/2.0); ans = fastexp(2, aux1) + fastexp(2, aux2) - 2ll; ans %= mod; cout << ans << endl; } }
d5d5035ed7a528e73313d8174684d921ad5e1be9
2f97140d1b50c13ad7ac85970e6c41c30200c1b2
/redux/Scene.cpp
10e071dc71a3e1839fac161798609f76759867bf
[]
no_license
mrdooz/codename_ch
1b46d4b981551cbfd9eb7c63779d2820d403f52b
4f6aa35ebc97ee4ebfabe740cda004d470edbd96
refs/heads/master
2016-09-06T10:35:57.357010
2010-02-23T20:21:41
2010-02-23T20:21:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
606
cpp
Scene.cpp
#include "stdafx.h" #include "Scene.hpp" #include "Mesh.hpp" Scene::~Scene() { reset(); } MeshSPtr Scene::find_mesh_by_name(const std::string& mesh_name) { for (size_t i = 0; i < meshes_.size(); ++i) { if (meshes_[i]->name() == mesh_name) { return meshes_[i]; } } return MeshSPtr(); } void Scene::reset() { clear_vector(lights_); clear_vector(cameras_); clear_vector(meshes_); } void Scene::create_input_layout(SystemInterface& system, const D3D10_PASS_DESC& desc) { for (size_t i = 0; i < meshes_.size(); ++i) { meshes_[i]->create_input_layout(system, desc); } }
39a2f7bb806237b215d41f70ca2d0ec0e446b3c8
83c67bb96d4856258b360f16505c72de149ae34e
/fib-pro1/jutge/firstloops/src/MultiplicationTable.cc
fa9f41e30d030db993547d9e10cb4d34f6508364
[]
no_license
twinone/upc
bfe89448386641cb61347436eafe056e9daec5a8
5f4078b3c251d243c46ff6aa150db39ca6ded126
refs/heads/master
2020-03-08T11:37:20.892542
2018-04-04T19:58:42
2018-04-04T19:58:42
128,103,423
1
0
null
null
null
null
UTF-8
C++
false
false
441
cc
MultiplicationTable.cc
#include <iostream> /** Statement: Write a program that reads a number n and prints the “multiplication table” of n. Input Input consists of a natural number n between 1 and 9. Output Print the “multiplication table” of n. */ using namespace std; int main() { int x; cin >> x; // Fix #1: Added spacing around "=" sign for (int i = 1; i <= 10; i++) { cout << x << "*" << i << " = " << (x*i) << endl; } return 0; }
f07f6af4534f1430af713a260b81bf79e3c50653
37c5174fc808623d44248c3b560fc66fbea7338c
/examples/example4_systematics_DY/data/mg_processes/DY_sys/Source/leshouche.inc
c6281a7758ead19238e354b28c0c8a3602443a1d
[ "MIT" ]
permissive
dlvp/madminer
0d1cd50adc2fe97315126d4c3158304bc9e7d05b
4ae7d9b73452848a6c9d1b81b50ef316ff7a054f
refs/heads/master
2020-04-20T12:54:10.016117
2019-02-12T00:28:04
2019-02-12T00:28:04
168,854,543
0
0
MIT
2019-02-02T16:58:02
2019-02-02T16:58:02
null
UTF-8
C++
false
false
38
inc
leshouche.inc
../SubProcesses/P1_qq_ll/leshouche.inc
378a146407714263b4007b0d57ba22524dc9cc3c
91cbcaddd3eb20780c5a1edeeb6c1adf0ca1a11d
/item.cpp
8ca554cb4f648b1a3aee68138dee5f03a6aadadd
[]
no_license
5chu17sRyan/SCMP318-XMLgame
eafa29339c0bef2e3fd0cc0d5e9b8ad03d5b6547
2713c8bb17b89e0da76080d6af343c0f9540902a
refs/heads/master
2020-08-21T18:02:16.373978
2019-11-01T19:45:56
2019-11-01T19:45:56
216,214,140
0
0
null
null
null
null
UTF-8
C++
false
false
1,098
cpp
item.cpp
//File Name: item.cpp //Author: Ryan Schultz //Email Address: schultz4@kenyon.edu //Assignment Number: 2 //Description: Class to represent an item. //Last Changed: October 31, 2019 #include <iostream> #include "item.h" //default constructor: name+description are empty isOn=f Item::Item() { name = ""; description = ""; isOn = false; } //Constructor gets object data from XML node Item::Item(XMLNode aNode) { int i = 0; XMLNode cNode = aNode.getChildNode( i++ ); do { string tag = cNode.getName(); if( tag == "name" ) { name = cNode.getText( 0 ); } else if( tag == "description" ) { description = cNode.getText( 0 ); } else if( tag == "isOn" ) { isOn = cNode.getText( 0 ); } cNode = aNode.getChildNode( i++ ); } while( !cNode.isEmpty() ); } //Precondition: No preconditions //Postcondition: The description of the item is printed //to the user. string Item::getDescription() { return description; } //Preconditions: No preconditions //Postcondition: The item is turned on. void Item::turnOn() { isOn = true; }
43df9133ca2ed0694d983e2686e46524a6ec6bb1
6ff470759fc6b0784c15b220346d67a05a548dff
/Player/PlayerStrategies/AggressiveBot.cpp
b36b71a4ad196fb00e499ebe0a509b1b969598eb
[]
no_license
Philippe229/risk
d03be19fcd2cce6a4da2087b3776fcdd29cdfbeb
30d43540092bc6d09ea22e7ecf3bb2a274a97b85
refs/heads/master
2021-08-19T09:56:19.156027
2017-11-24T02:15:27
2017-11-24T02:15:27
103,558,880
1
1
null
null
null
null
UTF-8
C++
false
false
3,524
cpp
AggressiveBot.cpp
#include "AggressiveBot.h" AggressiveBot::AggressiveBot() : Player() { } AggressiveBot::~AggressiveBot() { } AggressiveBot::AggressiveBot(string n) : Player(n) { } void AggressiveBot::reinforce(Map* currMap, Deck* currDeck) { Reinforcement::staticBonusArmies = Reinforcement::getTotalBonusArmies(this, currMap->getContinents()); // Get the strongest country (most armies) vector<Country*> myCountries = Player::getCountries(); Country* strongestCountry = NULL; if (myCountries.size() > 0) { for (int i = 0; i < myCountries.size(); i++) { if (strongestCountry == NULL || myCountries[i]->getArmies() > strongestCountry->getArmies()) { strongestCountry = myCountries[i]; } } if (strongestCountry != NULL) { // Reinforce the strongest country with all bonus armies Reinforcement::reinforcement(this, strongestCountry, Reinforcement::staticBonusArmies); } } } void AggressiveBot::attack(Map* currMap, Deck* currDeck) { // Get the strongest country (most armies) vector<Country*> myCountries = Player::getCountries(); Country* strongestCountry = NULL; if (myCountries.size() > 0) { for (int i = 0; i < myCountries.size(); i++) { if (strongestCountry == NULL || myCountries[i]->getArmies() > strongestCountry->getArmies()) { strongestCountry = myCountries[i]; } } if (strongestCountry != NULL) { // Attack all bordering enemies and assign 1 army if take over is successful vector<Country*> borderingEnemies = strongestCountry->getBorderingEnemies(); for (int i = 0; i < borderingEnemies.size() && strongestCountry->getArmies() > 1; i++) { while (strongestCountry->getArmies() > 1 && borderingEnemies[i]->getOwner() != this) { Attack::attack(currDeck, this, strongestCountry, borderingEnemies[i], min(3, strongestCountry->getArmies() - 1), 1); } } } } } void AggressiveBot::fortify(Map* currMap, Deck* currDeck) { Fortification::startFortify(this); vector<Country*> myCountries = Player::getCountries(); Country* strongestCountry = NULL; if (myCountries.size() > 0) { // Get the strongest country (most armies) for (int i = 0; i < myCountries.size(); i++) { if (strongestCountry == NULL || myCountries[i]->getArmies() > strongestCountry->getArmies()) { strongestCountry = myCountries[i]; } } // Sort countries by amount of armies that surround it sort(myCountries.begin(), myCountries.end(), [](Country* lhs,Country* rhs) { return lhs->getBorderingEnemies().size() < rhs->getBorderingEnemies().size(); }); if (strongestCountry != NULL) { // Try to fortify the country with the most bordering country with the strongest country for (int i = myCountries.size() - 1; i >= 0; i--) { if (strongestCountry == myCountries[i]) { break; } if (Fortification::verifyTargetCountry(this, strongestCountry, myCountries[i])) { Fortification::fortify(this, strongestCountry, myCountries[i], strongestCountry->getArmies() - 1); break; } } } } } int AggressiveBot::defensiveDice(int max) { return max; }
45bab9a39416b013fda779e3fd35bfe8a59eee67
8a7d1a828da87fe58abb3df5f8de5cad7cf81c4a
/RadianceGrabber/DeviceConfig.h
c58d865c1bf328cb33641a88b368b2e7d100f297
[]
no_license
SEETHELIGHTS/RadianceGrabber
25a1b9583d5ef61bb9db27cc48ea1b8f0bdc8337
d511408ef5ef0ca8ad23d1f6bd511c67914c020b
refs/heads/master
2021-07-08T23:56:24.735299
2020-12-13T07:06:10
2020-12-13T08:03:05
219,286,061
0
0
null
null
null
null
UTF-8
C++
false
false
806
h
DeviceConfig.h
#pragma warning( disable : 4819 ) #include <cuda_runtime.h> #include "Define.h" #pragma once namespace RadGrabber { void InitializePlugin(); void ClearPlugin(); int __declspec(dllexport) __stdcall GetDeviceCount(); int __declspec(dllexport) __stdcall GetMaxThreadPerBlock(int device); int __declspec(dllexport) __stdcall GetMaxThreadPerBlockInAllDevice(); struct OptimalLaunchParam { dim3 blockCountInGrid; dim3 threadCountinBlock; int GetMaxThreadCount() { return blockCountInGrid.x * blockCountInGrid.y * blockCountInGrid.z * threadCountinBlock.x * threadCountinBlock.y * threadCountinBlock.z; } }; __host__ void GetOptimalBlockAndThreadDim(IN int deviceIndex, OUT OptimalLaunchParam& outParam); __host__ void GetOptimalBufferItemCount(IN int deviceIndex, OUT int& size); }
5c6dc7f8a8c0182269e72f088dcad6afbd753a9f
0cdbc002d2abd3a36b5b0a5a885595b0a3fc19e7
/algorithm/algorithm/2960.cpp
7b5b27d6d4736ddc847de762f91e85d0371d967b
[]
no_license
joowook/algorithm
a171e6706bc44dc50c3154c0dc757750f1ff7b17
2f18ec5ff37cd3db7339fe8d73895f32407e7529
refs/heads/master
2021-06-03T13:19:09.881328
2020-01-29T14:29:15
2020-01-29T14:29:15
108,651,288
0
0
null
null
null
null
UTF-8
C++
false
false
555
cpp
2960.cpp
//#include <iostream> //using namespace std; //#define MAX 1000 //int flag[MAX + 1]; //int main(void) { // int n, k; // // int count = 0; // // scanf("%d %d", &n, &k); // // for (int i = 2; i <= n; i++) { // for (int j = i; j <= n; j += i) { // if (flag[j] == 0) { // count++; // flag[j] = 1; // } // if (count == k) { // printf("%d", j); // // return 0; // } // } // } // // return 0; //}
a721cd31cbeeadb6a790c2342d804ca3be4e2e4d
ad89390389566993ea4f4805622c98e4fd5d1f96
/symbol.h
bcea59d5944ae9bf46effac63e87193040ffd6c8
[]
no_license
Wiktor-W/QTCalculator
28b5d1a113373c8109811e770aeee9b7c4630eb2
cff32579c78e97632011243ce60f8cc11ad69f78
refs/heads/master
2023-06-07T14:12:58.261122
2021-06-28T13:50:59
2021-06-28T13:50:59
379,375,240
0
0
null
null
null
null
UTF-8
C++
false
false
642
h
symbol.h
#ifndef SYMBOL_H #define SYMBOL_H #include <string> class Symbol { private: float value; char symbol; int priority; bool isNum; bool isChar; public: Symbol(char newChar); Symbol(float newValue); Symbol(); char getChar() const { return symbol; }; float getValue() const { return value; }; int getPriority() const { return priority; }; bool isNumber() const { return isNum; }; bool isCharacter() const { return isChar; }; std::string symbolToString() const { return std::to_string(symbol); } std::string valueToString() const { return std::to_string(value); } }; #endif // SYMBOL_H
4edc2048af7a43edb54aac459f0df69a51ca5d06
cefa148ff401fc6da01a4ea5fdfb962e789ed87b
/12_text/include/TTextNode.h
818ec21be1b4dee2ab6e24d9c370142cccea06bf
[]
no_license
vla5924-practice/algorithms-data-structures
80a602e641f898568ce20d0e2c4dc9701e081f06
2f275ef11f4b171633d53eae84401005b1a8b057
refs/heads/main
2023-05-09T06:50:59.011051
2021-05-31T17:35:50
2021-05-31T17:35:50
363,710,104
0
0
null
null
null
null
UTF-8
C++
false
false
1,105
h
TTextNode.h
#pragma once #include <iostream> class TTextNode { protected: static TTextNode* firstFree; static TTextNode* textNodes; TTextNode* next; TTextNode* down; char c; int level; public: TTextNode(int l = 3, char _c = 0); TTextNode(char* s, int l); TTextNode(const TTextNode& _node); ~TTextNode(); TTextNode* GetNext(); TTextNode* GetDown(); char GetC(); int GetLevel(); void SetNext(TTextNode* _next); void SetDown(TTextNode* _down); void SetC(char _c); void SetLevel(int _l); static void InitMem(int _size = 10); static void FreeMem(); void* operator new(size_t size); void operator delete(void* p); friend std::ostream& operator<<(std::ostream& o, const TTextNode& t) { if (t.level == 3) { o << t.c; if (t.next != nullptr) o << *(t.next); } else { if (t.down != nullptr) o << *(t.down); if (t.next != nullptr) o << *(t.next); } return o; } };
93397d0f2dd6e2fa3ce838cd8f67a8628ca3548e
d36fb072d0b6861bdcb22d4c102e370e27e7a0da
/Project/RPG/Project1/Weapon.cpp
e4e96ad6b670c8ddc9417159a1ec7890c35b8459
[]
no_license
taeyong5th/kimtaeyong
9af42d3f9ea7dd1b37c47787684c4eca22fed850
8df4f237b6b4018bd262632e08c3f96e8054fc72
refs/heads/master
2022-04-06T03:30:39.720920
2020-03-11T05:19:06
2020-03-11T05:19:06
200,011,748
0
0
null
null
null
null
UTF-8
C++
false
false
445
cpp
Weapon.cpp
#include "Weapon.h" #include "Character.h" void Weapon::setProperty(string type, string name, int sellprice, int atkdmg) { m_strType = type; m_strName = name; m_iPrice = sellprice; m_iAtkdmg = atkdmg; } string Weapon::getType() { return m_strType; } string Weapon::getName() { return m_strName; } int Weapon::getPrice() { return m_iPrice; } int Weapon::getAtkDmg() { return m_iAtkdmg; } Weapon::Weapon() { } Weapon::~Weapon() { }
8465e8fae562a6b4dd6e4b3bacbcf12444358c6a
7dd0ed23d862c25c8b479bf203aff5478d74504e
/Bullet.cpp
4e7b9698e3ef63f7505aed3c1e2734646827f30a
[]
no_license
wisemin01/TankGame02
e2083b989ebc946e9a9c52dc821a2c6eff073db1
ce7ab5024eb32b163030770148e6ae2dbda25f99
refs/heads/master
2020-05-15T11:20:49.380078
2019-04-19T07:34:52
2019-04-19T07:34:52
176,657,545
0
0
null
null
null
null
UTF-8
C++
false
false
1,882
cpp
Bullet.cpp
#include "DXUT.h" #include "Bullet.h" #include "Explode.h" Bullet::Bullet() { } Bullet::~Bullet() { } void Bullet::Init() { AC(Transform); AC(Renderer); AC(Collider); AC(Rigidbody); AC(Life); rigidbody->bUseGravity = false; transform->vScale = Vector3(0.5, 0.5, 0.5); life->Setup(1, [&]() { OnDeath(); }); } void Bullet::Update(float dt) { rigidbody->AddForce(vDirection, fSpeed); transform->fRot = atan2f(vDirection.y, vDirection.x); fFrameSkip += dt; if (fFrameSkip >= fDelay) { OnDeath(); } } void Bullet::Render() { } void Bullet::Destroy() { } void Bullet::OnDeath() { auto explode = InstanceEx(Explode)(6); explode->Setup(transform->vPosition, "EXPLODE", 0.15); explode->transform->vScale = Vector3(0.5, 0.5, 0); Kill(); } void Bullet::Setup(Vector3 pos, Vector3 dir, RsKey key, float speed, float damage, float delay, int tType) { vDirection = dir; fSpeed = speed; fDamage = damage; fFrameSkip = 0; fDelay = delay; eType = tType; transform->vPosition = pos; renderer->SetTexture(key); collider->CreateAsTexture(renderer->pTex, [&](Collider* other) { OnCollision(other); }); } void Bullet::OnCollision(Collider * other) { switch (eType) { case ATTACK_TO_PLAYER: if (other->gameObject->CompareTag("PLAYER")) { other->gameObject->life->Attack(fDamage); OnDeath(); } break; case ATTACK_TO_TOP_ENEMY: case ATTACK_TO_BOTTOM_ENEMY: if (other->gameObject->CompareTag("METEOR")) { other->gameObject->life->Attack(fDamage); OnDeath(); } else if (other->gameObject->CompareTag("ENEMY")) { other->gameObject->life->Attack(fDamage); OnDeath(); } else if (other->gameObject->CompareTag("STONE")) { other->gameObject->life->Attack(fDamage); OnDeath(); } else if(other->gameObject->CompareTag("MINE")) { other->gameObject->life->Attack(fDamage); OnDeath(); } break; } }
c49d695d523e1c7a080256452484dfb78df708ea
7d4a51a6a798f45c0a4d2f888dceb21057deefcb
/PathLoss/pathlossCopy.cc
967678ebca66ec5734240b5d0c37f3f80887d46f
[]
no_license
alizainc/cpp
fa2441d37018d157d80aec307af5093dff2947cf
d0fc3740002f0aae7d364ba374bdcce3432f6515
refs/heads/master
2021-01-10T14:24:42.233333
2015-12-25T19:52:15
2015-12-25T19:52:15
48,206,441
0
0
null
null
null
null
UTF-8
C++
false
false
2,068
cc
pathlossCopy.cc
// Wireless path loss assignment // ECE2036, Georgia Tech, Fall 2015 #include "math.h" #include <iostream> #include <fstream> #include "qdisplay.h" #include "Point.h" #include "Line.h" #include "PrintPixel.h" using namespace std; #define WALL_COUNT 56 Line walls[WALL_COUNT]; // Each wall stored here int main(int argc, char** argv) { QApplication a(argc, argv); ifstream w("walls.txt"); if (!w) { cout << "OOps, no walls.txt file" << endl; return(1); } // Read the walls file int ind = 0; while(w) { int x0 = -1; int y0 = -1; int x1 = -1; int y1 = -1; w >> x0 >> y0 >> x1 >> y1; if (x0 < 0) break; // done // Your code here. Save wall info in the walls array if (x0 == x1) { if (y1 < y0) { int temp = y0; y0 = y1; y1 = temp; } } else if (y0 == y1) { if (x1 < x0) { int temp = x0; x0 = x1; x1 = temp; } } Point p1(x0, y0); Point p2(x1, y1); Line l1(p1, p2); walls[ind] = l1; ind++; } w.close(); // Create the display object QDisplay d(a); d.BlankImage(276, 276, 32); // 256x256 plus 10 pixel border (32 bit colors) int h = 256; int w = 256; int depth = 32; ORgb* p = (QRgb*) d.ImageData(); for (int k = 0; k < 56; k++) { int index = 0; Line l = walls[k]; int x0 = l.getPF().getX(); int y0 = l.getPF().getY(); int x1 = l.getPS().getX(); int y1 = l.getPS().getY(); double ln = l.Length(); for (int j = 0; j < ln; j++) { if (x0 == x1) { index = (y0 + j) * w + x0; } } } d.Show(); // Make it screen visible // Your code here. Create 16 threads and compute the signal streangth // at each point; Have the threads update the pixel array with the // correct color as it is computed. // d.Update(); // Uncomment as needed d.Save("pathloss.png"); a.exec(); cout << "Done" << endl; }
8c48b29a39923c5fb17c862c781b0f3751752923
57a1c2838d0116241b256ec8af05319c0bdbc217
/src/common/GmicInputWriter.cpp
8157282c96e4a3cb57ce062bd5bb7504a4666992
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
ganego/gmic-8bf
7468398745a983b7b7f8055991117fc98b14f759
ee49ae507da60d648df582772163e059faa9f4f1
refs/heads/main
2023-03-03T00:55:06.461444
2021-02-11T18:08:01
2021-02-11T18:08:01
338,084,621
0
0
MIT
2021-02-11T16:29:17
2021-02-11T16:29:17
null
UTF-8
C++
false
false
21,003
cpp
GmicInputWriter.cpp
//////////////////////////////////////////////////////////////////////// // // This file is part of gmic-8bf, a filter plug-in module that // interfaces with G'MIC-Qt. // // Copyright (c) 2020, 2021 Nicholas Hayes // // This file is licensed under the MIT License. // See LICENSE.txt for complete licensing and attribution information. // //////////////////////////////////////////////////////////////////////// #include "GmicInputWriter.h" #include "FileUtil.h" #include "InputLayerIndex.h" #include <boost/endian.hpp> #include <string> namespace { struct Gmic8bfInputImageHeader { Gmic8bfInputImageHeader( int32 imageWidth, int32 imageHeight, int32 imageNumberOfChannels, int32 imageBitsPerChannel, bool planarChannelOrder, int32 imageTileWidth, int32 imageTileHeight) { // G8II = GMIC 8BF input image signature[0] = 'G'; signature[1] = '8'; signature[2] = 'I'; signature[3] = 'I'; version = 2; width = imageWidth; height = imageHeight; numberOfChannels = imageNumberOfChannels; bitsPerChannel = imageBitsPerChannel; flags = planarChannelOrder ? 1 : 0; tileWidth = imageTileWidth; tileHeight = imageTileHeight; } char signature[4]; boost::endian::little_int32_t version; boost::endian::little_int32_t width; boost::endian::little_int32_t height; boost::endian::little_int32_t numberOfChannels; boost::endian::little_int32_t bitsPerChannel; boost::endian::little_int32_t flags; boost::endian::little_int32_t tileWidth; boost::endian::little_int32_t tileHeight; }; uint16 Normalize16BitRange(uint16 value) { // The host provides 16-bit data in the range of [0, 32768], convert it to the // normal 16-bit range of [0, 65535]. return value > 32767 ? 65535 : value * 2; } void ScaleSixteenBitDataToOutputRange(void* data, int32 width, int32 height, int32 rowBytes) noexcept { DebugOut("%s, width=%d height=%d", __FUNCTION__, width, height); uint8* scan0 = static_cast<uint8*>(data); for (int32 y = 0; y < height; y++) { uint16* row = reinterpret_cast<uint16*>(scan0 + (static_cast<int64>(y) * rowBytes)); for (int32 x = 0; x < width; x++) { // We always store 16-bit data in little-endian. *row = boost::endian::native_to_little(Normalize16BitRange(*row)); row++; } } } OSErr SaveActiveLayerImpl(FilterRecordPtr filterRecord, const FileHandle* fileHandle) { const bool hasTransparency = filterRecord->inLayerPlanes != 0 && filterRecord->inTransparencyMask != 0; const VPoint imageSize = GetImageSize(filterRecord); int32 width = imageSize.h; int32 height = imageSize.v; int32 bitDepth; switch (filterRecord->imageMode) { case plugInModeGrayScale: case plugInModeRGBColor: bitDepth = 8; break; case plugInModeGray16: case plugInModeRGB48: bitDepth = 16; break; default: return filterBadMode; } int32 numberOfChannels; switch (filterRecord->imageMode) { case plugInModeGrayScale: case plugInModeGray16: numberOfChannels = hasTransparency ? 2 : 1; break; case plugInModeRGBColor: case plugInModeRGB48: numberOfChannels = hasTransparency ? 4 : 3; break; default: return filterBadMode; } const int32 tileWidth = std::min(GetTileWidth(filterRecord->inTileWidth), width); const int32 tileHeight = std::min(GetTileHeight(filterRecord->inTileHeight), height); Gmic8bfInputImageHeader fileHeader(width, height, numberOfChannels, bitDepth, /* planar */ true, tileWidth, tileHeight); OSErr err = WriteFile(fileHandle, &fileHeader, sizeof(fileHeader)); if (err == noErr) { switch (filterRecord->imageMode) { case plugInModeGrayScale: case plugInModeRGBColor: filterRecord->inPlaneBytes = 1; break; case plugInModeGray16: case plugInModeRGB48: filterRecord->inPlaneBytes = 2; break; default: return filterBadMode; } filterRecord->inColumnBytes = filterRecord->inPlaneBytes; filterRecord->inputRate = int2fixed(1); for (int32 i = 0; i < numberOfChannels; i++) { filterRecord->inLoPlane = filterRecord->inHiPlane = static_cast<int16>(i); for (int32 y = 0; y < height; y += tileHeight) { const int32 top = y; const int32 bottom = std::min(y + tileHeight, imageSize.v); const int32 rowCount = bottom - top; for (int32 x = 0; x < width; x += tileWidth) { const int32 left = x; const int32 right = std::min(x + tileWidth, imageSize.h); const int32 columnCount = right - left; SetInputRect(filterRecord, top, left, bottom, right); err = filterRecord->advanceState(); if (err != noErr) { goto error; } int32 outputStride = columnCount; if (bitDepth == 16) { outputStride *= 2; ScaleSixteenBitDataToOutputRange(filterRecord->inData, columnCount, rowCount, filterRecord->inRowBytes); } if (outputStride == filterRecord->inRowBytes) { // If the host's buffer stride matches the output image stride // we can write the buffer directly. err = WriteFile(fileHandle, filterRecord->inData, static_cast<size_t>(rowCount) * outputStride); if (err != noErr) { goto error; } } else { for (int32 j = 0; j < rowCount; j++) { const uint8* row = static_cast<const uint8*>(filterRecord->inData) + (static_cast<int64>(j) * filterRecord->inRowBytes); err = WriteFile(fileHandle, row, outputStride); if (err != noErr) { goto error; } } } } } } } error: // Do not set the FilterRecord data pointers to NULL, some hosts // (e.g. XnView) will crash if they are set to NULL by a plug-in. SetInputRect(filterRecord, 0, 0, 0, 0); return err; } OSErr SaveDocumentLayer( FilterRecordPtr filterRecord, const ReadLayerDesc* layerDescriptor, const FileHandle* fileHandle) { const bool hasTransparency = layerDescriptor->transparency != nullptr; const VPoint imageSize = GetImageSize(filterRecord); int32 width = imageSize.h; int32 height = imageSize.v; int32 bitDepth; switch (filterRecord->imageMode) { case plugInModeGrayScale: case plugInModeRGBColor: bitDepth = 8; break; case plugInModeGray16: case plugInModeRGB48: bitDepth = 16; break; default: return filterBadMode; } int32 numberOfChannels; switch (filterRecord->imageMode) { case plugInModeGrayScale: case plugInModeGray16: numberOfChannels = hasTransparency ? 2 : 1; break; case plugInModeRGBColor: case plugInModeRGB48: numberOfChannels = hasTransparency ? 4 : 3; break; default: return filterBadMode; } const int32 tileWidth = std::min(GetTileWidth(filterRecord->inTileWidth), width); const int32 tileHeight = std::min(GetTileHeight(filterRecord->inTileHeight), height); Gmic8bfInputImageHeader fileHeader(width, height, numberOfChannels, bitDepth, /* planar */ true, tileWidth, tileHeight); OSErr err = WriteFile(fileHandle, &fileHeader, sizeof(fileHeader)); if (err == noErr) { switch (filterRecord->imageMode) { case plugInModeGrayScale: case plugInModeRGBColor: filterRecord->inPlaneBytes = 1; break; case plugInModeGray16: case plugInModeRGB48: filterRecord->inPlaneBytes = 2; break; default: return filterBadMode; } filterRecord->inColumnBytes = filterRecord->inPlaneBytes; filterRecord->inputRate = int2fixed(1); int32 tileRowBytes; if (!TryMultiplyInt32(tileWidth, filterRecord->inColumnBytes, tileRowBytes)) { // The multiplication would have resulted in an integer overflow / underflow. return memFullErr; } BufferID imageDataBufferID; int32 imageDataBufferSize; if (!TryMultiplyInt32(tileHeight, tileRowBytes, imageDataBufferSize)) { // The multiplication would have resulted in an integer overflow / underflow. return memFullErr; } err = filterRecord->bufferProcs->allocateProc(imageDataBufferSize, &imageDataBufferID); if (err == noErr) { void* imageDataBuffer = filterRecord->bufferProcs->lockProc(imageDataBufferID, false); PixelMemoryDesc dest{}; dest.data = imageDataBuffer; dest.depth = filterRecord->depth; if (!TryMultiplyInt32(filterRecord->inColumnBytes, dest.depth, dest.colBits)) { // The multiplication would have resulted in an integer overflow / underflow. err = memFullErr; } if (err == noErr) { ReadChannelDesc* imageChannels[4] = { nullptr, nullptr, nullptr, nullptr }; switch (filterRecord->imageMode) { case plugInModeGrayScale: case plugInModeGray16: imageChannels[0] = layerDescriptor->compositeChannelsList; imageChannels[1] = layerDescriptor->transparency; break; case plugInModeRGBColor: case plugInModeRGB48: imageChannels[0] = layerDescriptor->compositeChannelsList; imageChannels[1] = imageChannels[0]->next; imageChannels[2] = imageChannels[1]->next; imageChannels[3] = layerDescriptor->transparency; break; default: err = filterBadMode; break; } if (err == noErr) { for (int32 i = 0; i < numberOfChannels; i++) { dest.bitOffset = i * dest.depth; for (int32 y = 0; y < height; y += tileHeight) { VRect writeRect{}; writeRect.top = y; writeRect.bottom = std::min(y + tileHeight, imageSize.v); const int32 rowCount = writeRect.bottom - writeRect.top; for (int32 x = 0; x < width; x += tileWidth) { writeRect.left = x; writeRect.right = std::min(x + tileWidth, imageSize.h); const int32 columnCount = writeRect.right - writeRect.left; tileRowBytes = columnCount * filterRecord->inColumnBytes; if (!TryMultiplyInt32(tileRowBytes, dest.depth, dest.rowBits)) { err = memFullErr; goto error; } PSScaling scaling{}; scaling.sourceRect = scaling.destinationRect = writeRect; VRect wroteRect; err = filterRecord->channelPortProcs->readPixelsProc(imageChannels[i]->port, &scaling, &writeRect, &dest, &wroteRect); if (err != noErr) { goto error; } if (wroteRect.top != writeRect.top || wroteRect.left != writeRect.left || wroteRect.bottom != writeRect.bottom || wroteRect.right != writeRect.right) { err = readErr; goto error; } if (bitDepth == 16) { ScaleSixteenBitDataToOutputRange(dest.data, width, rowCount, tileRowBytes); } err = WriteFile(fileHandle, imageDataBuffer, static_cast<size_t>(rowCount) * tileRowBytes); if (err != noErr) { goto error; } } } } } } error: filterRecord->bufferProcs->unlockProc(imageDataBufferID); filterRecord->bufferProcs->freeProc(imageDataBufferID); } } SetInputRect(filterRecord, 0, 0, 0, 0); filterRecord->inData = nullptr; return err; } } OSErr WritePixelsFromCallback( int32 width, int32 height, int32 numberOfChannels, int32 bitsPerChannel, bool planar, int32 tileWidth, int32 tileHeight, WritePixelsCallback writeCallback, void* writeCallbackUserState, const boost::filesystem::path& outputPath) { if (writeCallback == nullptr) { return nilHandleErr; } OSErr err = noErr; std::unique_ptr<FileHandle> file; err = OpenFile(outputPath, FileOpenMode::Write, file); if (err == noErr) { Gmic8bfInputImageHeader fileHeader(width, height, numberOfChannels, bitsPerChannel, planar, tileWidth, tileHeight); err = WriteFile(file.get(), &fileHeader, sizeof(fileHeader)); if (err == noErr) { err = writeCallback( file.get(), width, height, numberOfChannels, bitsPerChannel, writeCallbackUserState); } } return err; } OSErr SaveActiveLayer( const boost::filesystem::path& outputDir, InputLayerIndex* index, FilterRecordPtr filterRecord) { OSErr err = noErr; try { boost::filesystem::path activeLayerPath; err = GetTemporaryFileName(outputDir, activeLayerPath, ".g8i"); if (err == noErr) { std::unique_ptr<FileHandle> file; err = OpenFile(activeLayerPath, FileOpenMode::Write, file); if (err == noErr) { err = SaveActiveLayerImpl(filterRecord, file.get()); if (err == noErr) { const VPoint imageSize = GetImageSize(filterRecord); int32 layerWidth = imageSize.h; int32 layerHeight = imageSize.v; bool layerIsVisible = true; std::string layerName; if (!TryGetLayerNameAsUTF8String(filterRecord, layerName)) { layerName = "Layer 0"; } err = index->AddFile(activeLayerPath, layerWidth, layerHeight, layerIsVisible, layerName); } } } } catch (const std::bad_alloc&) { err = memFullErr; } return err; } #ifdef PSSDK_HAS_LAYER_SUPPORT OSErr SaveAllLayers( const boost::filesystem::path& outputDir, InputLayerIndex* index, int32 targetLayerIndex, FilterRecordPtr filterRecord) { OSErr err = noErr; try { ReadLayerDesc* layerDescriptor = filterRecord->documentInfo->layersDescriptor; int32 activeLayerIndex = 0; int32 pixelBasedLayerCount = 0; int32 layerIndex = 0; char layerNameBuffer[128]{}; while (layerDescriptor != nullptr && err == noErr) { // Skip over any vector layers. if (layerDescriptor->isPixelBased) { boost::filesystem::path imagePath; err = GetTemporaryFileName(outputDir, imagePath, ".g8i"); if (err == noErr) { std::unique_ptr<FileHandle> file; err = OpenFile(imagePath, FileOpenMode::Write, file); if (err == noErr) { err = SaveDocumentLayer(filterRecord, layerDescriptor, file.get()); if (err == noErr) { const VPoint imageSize = GetImageSize(filterRecord); int32 layerWidth = imageSize.h; int32 layerHeight = imageSize.v; bool layerIsVisible = true; std::string utf8Name; if (layerDescriptor->maxVersion >= 2) { layerIsVisible = layerDescriptor->isVisible; if (layerDescriptor->unicodeName != nullptr) { utf8Name = ConvertLayerNameToUTF8(layerDescriptor->unicodeName); } } if (utf8Name.empty()) { int written = std::snprintf(layerNameBuffer, sizeof(layerNameBuffer), "Layer %d", pixelBasedLayerCount); if (written > 0) { utf8Name.assign(layerNameBuffer, layerNameBuffer + written); } else { err = writErr; } } if (err == noErr) { err = index->AddFile(imagePath, layerWidth, layerHeight, layerIsVisible, utf8Name); } } } } if (layerIndex == targetLayerIndex) { activeLayerIndex = pixelBasedLayerCount; } pixelBasedLayerCount++; } layerDescriptor = layerDescriptor->next; layerIndex++; } index->SetActiveLayerIndex(activeLayerIndex); } catch (const std::bad_alloc&) { err = memFullErr; } return err; } #endif // PSSDK_HAS_LAYER_SUPPORT
ec488e2b43f37589f90810db82b016dd42642d04
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/curl/gumtree/curl_repos_function_742_curl-7.15.0.cpp
5233d290de595a36aa682a020e30d4cc91f2a752
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
130
cpp
curl_repos_function_742_curl-7.15.0.cpp
size_t Curl_gtls_version(char *buffer, size_t size) { return snprintf(buffer, size, " GnuTLS/%s", gnutls_check_version(NULL)); }
0be25e3858c6e69335ec67ef5775f18fcaa9318e
20ea524d5219e840ea5fcd01f101e70c5e7e3aea
/UVT/Fibo.cpp
dd33ed1505128ebdc275189cd0d0176e1cd1f131
[]
no_license
AritonV10/Exercises
70e8bbb7b7541061b4a91e7634d2211cf0938b6d
1a299987961e90a6075f0616f4e936cf3d9cbb9f
refs/heads/master
2022-11-25T04:21:33.291175
2020-07-31T12:33:48
2020-07-31T12:33:48
122,197,942
0
0
null
null
null
null
UTF-8
C++
false
false
474
cpp
Fibo.cpp
#include <iostream> void fib_swap(int& a, int& b, int& c){ c = a + b; a = b; b = c; } bool func(const int* n, const int* _p){ int a = 0, b = 1, c = 0; for(int i = 0; i <= *n; i++){ fib_swap(a, b, c); if(c == *_p) return true; } return false; } int main(){ int x = 30, f = 34; int* _p = &x; int* p_ = &f; if(func(_p, p_)) std::cout<<"Is part of fibo"; else std::cout<<"Not part of fibo"; }
787e5f796ae462ae4d26de4259df22dd8e91f063
3d89636208f4f71bd613ce96bf0e31faca179124
/Source/UI/Components/Settings/DebugSettingsPanel.cpp
d89c690e0dd3501c53cddd3760c79bb3e0a01059
[ "Unlicense" ]
permissive
vsicurella/SuperVirtualKeyboard
df2e5333cc11dc3262885a4624c4f919afef71fb
b59549281ea16b70f94b3136fe0b9a1f9fc355e2
refs/heads/master
2022-01-20T07:24:09.975154
2020-11-13T07:20:41
2020-11-13T07:20:41
179,219,567
38
1
null
null
null
null
UTF-8
C++
false
false
3,321
cpp
DebugSettingsPanel.cpp
/* ============================================================================== DebugSettingsPanel.cpp Created: 14 Nov 2019 11:46:31pm Author: Vincenzo Sicurella ============================================================================== */ #include "DebugSettingsPanel.h" DebugSettingsPanel::DebugSettingsPanel(SvkPluginState* pluginStateIn) : SvkSettingsPanel("DebugSettingsPanel", pluginState, { "" }, {}, {}), pluginState(pluginStateIn) { setSize(100, 100); } DebugSettingsPanel::~DebugSettingsPanel() { } // //void DebugSettingsPanel::connectToProcessor() //{ // Label* lbl; // Component* c; // Slider* s; // String paramName; // RangedAudioParameter* param; // AudioParameterInt* api; // // for (int i = 0; i < paramIDs->size(); i++) // { // paramName = paramIDs->getUnchecked(i); // param = processorTree.getParameter(paramName); // // lbl = labels.add(new Label("Lbl" + paramName, param->name)); // lbl->setColour(Label::textColourId, Colours::black); // addAndMakeVisible(lbl); // // const NormalisableRange<float>& range = param->getNormalisableRange(); // s = new Slider("Sld" + paramName); // c = controls.add(s); // // s->setSliderStyle(Slider::LinearHorizontal); // // api = dynamic_cast<AudioParameterInt*>(param); // if (api) // { // s->setNormalisableRange(NormalisableRange<double>(range.start, range.end, 1)); // s->setSliderStyle(Slider::IncDecButtons); // s->setValue(api->get(), dontSendNotification); // } // else // { // s->setNormalisableRange(NormalisableRange<double>(range.start, range.end, 0.01f)); // s->setValue(param->getValue(), dontSendNotification); // } // // s->setScrollWheelEnabled(false); // s->setTextBoxStyle (Slider::TextBoxLeft, false, 60, 20); // s->setColour(Slider::textBoxTextColourId, Colours::black); // s->addListener (this); // // sliderAttachments.add(new SliderAttachment(processorTree, paramName, *s)); // addAndMakeVisible(s); // } //} // //void DebugSettingsPanel::paint(Graphics& g) //{ // g.setColour(Colours::palegreen); // g.fillAll(); // // if (controlIdentifiers.size() == 0) // { // g.setColour(Colours::black); // g.drawText("No parameters", getWidth()/2, getHeight()/2, // getWidth(), getHeight(), Justification::centred); // } //} // //void DebugSettingsPanel::sliderValueChanged(Slider *slider) //{ // String paramName = slider->getName().substring(3); // RangedAudioParameter* param = processorTree.getParameter(paramName); // AudioParameterInt* api; // // if (paramName == IDs::pianoWHRatio.toString()) // { // //param->setValue(slider->getValue()); // //pluginState->getKeyboard()->setKeySizeRatio(param->getValue()); // } // // else if (paramName == IDs::keyboardNumRows.toString()) // { // //api = dynamic_cast<AudioParameterInt*>(param); // //*api = slider->getValue(); // //pluginState->getKeyboard()->setNumRows(api->get()); // } // //} // void DebugSettingsPanel::timerCallback() { }
86e8aa0ce62114ac285ff07d0679b7ee46892548
ba8590faffc378ac6ae1891091feae4ffe8817ce
/src/application/flooding/MySimpleFlooding.cc
50fe123f1a63fec6b89e4e4c576b9dbf6c98e989
[]
no_license
sgoutham2409/Simple_flooding
c6aea4a468ba3dc5e69aef292729ab8189b658b1
3d4341995991727569f56857b044da9fb83bcd6b
refs/heads/master
2022-12-02T21:33:14.077641
2020-08-18T23:14:32
2020-08-18T23:14:32
190,981,454
0
0
null
null
null
null
UTF-8
C++
false
false
4,840
cc
MySimpleFlooding.cc
// // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with this program. If not, see http://www.gnu.org/licenses/. // #include "MySimpleFlooding.h" #define REBROADCAST_TIME 1 #define REPEAT_TX_TIME 2 Define_Module(MySimpleFlooding); MySimpleFlooding::~MySimpleFlooding() { cancelEvent(txEvent); delete(msgCopy); delete(txEvent); } void MySimpleFlooding::initialize(int stage) { DemoBaseApplLayer::initialize(stage); if (stage == 0) { //Initializing members and pointers of your application goes here duplicates.setName("duplicates"); sentMessages.setName("sent_messages"); reachedNodes.setName("reached_nodes"); getParentModule()->getDisplayString().setTagArg("i",1,"red"); sig_hopcount = registerSignal("sig_hopcount"); sig_delay = registerSignal("sig_delay"); numDuplicates = 0; numSent = 0; pktDelay = 0; msgCopy = nullptr; txEvent = new cMessage("txEvent"); } else if (stage == 1) { //Initializing members that require initialized other modules goes here globalStats = Veins::FindModule<GlobalStat*>::findSubModule(getParentModule()->getParentModule()); } } void MySimpleFlooding::finish() { DemoBaseApplLayer::finish(); //maybe you want to record some scalars? recordScalar("#duplicates", numDuplicates); recordScalar("#numSent", numSent); recordScalar("#pktDelay",pktDelay); } void MySimpleFlooding::handleFloodingMsg(FloodingMessage* msg) { bool isDuplicate = false; getParentModule()->getDisplayString().setTagArg("i",1,"green"); annotations->scheduleErase(0.25, annotations->drawLine(curPosition, msg->getOriginPosition(), "red")); getParentModule()->getParentModule()->getDisplayString().setTagArg("i", 1, "yellow"); traciVehicle->setColor(Veins::TraCIColor(255, 0, 0, 255)); findHost()->getDisplayString().updateWith("g=16,green"); // If a car received the message, the car will appear with green color in the UI // if there is no message copy if(!msgCopy) { msgCopy = msg->dup(); pktDelay = simTime() - msg->getCreationTime(); globalStats->incNoCarsReached(); // Schedule the txEvent event for "txEvent" duration scheduleAt(simTime()+uniform(0,REBROADCAST_TIME), txEvent); } else // there is a copy already { isDuplicate = true; // cancel the existing tx event, if any cancelEvent(txEvent); // Schedule the timeout event for "timeout" duration scheduleAt(simTime()+ REPEAT_TX_TIME, txEvent); } msg->setHopCount(msg->getHopCount() + 1); if (isDuplicate) { //TODO: Check for duplicates here numDuplicates++; duplicates.record(numDuplicates); } else { //TODO: The following code block might help you - the statistics are wrong at the moment } } void MySimpleFlooding::handleMessage(cMessage *msg) { if (FloodingMessage* fm = dynamic_cast<FloodingMessage*>(msg)) { handleFloodingMsg(fm); } else if (msg->isSelfMessage()) { handleSelfMsg(msg); } } void MySimpleFlooding::handleSelfMsg(cMessage* msg) { //DemoBaseApplLayer::handleSelfMsg(msg); //this method is for self messages (mostly timers) //it is important to call the DemoBaseApplLayer function for BSM and WSM transmission if(msg == txEvent) { if(msgCopy) { sendFloodingMessage(msgCopy); cancelEvent(txEvent); // Schedule the txEvent event for "txEvent" duration scheduleAt(simTime()+ REPEAT_TX_TIME, txEvent); } } } void MySimpleFlooding::handlePositionUpdate(cObject* obj) { DemoBaseApplLayer::handlePositionUpdate(obj); curPosition = mobility->getPositionAt(simTime()); //the vehicle has moved. Code that reacts to new positions goes here. //member variables such as currentPosition and currentSpeed are updated in the parent class } void MySimpleFlooding::sendFloodingMessage(FloodingMessage* msg) { sentMessages.record(1); numSent++; simtime_t delay = uniform(0, 0.1); sendDelayedDown(msg->dup(), delay); getParentModule()->getDisplayString().setTagArg("i2",0,"status/busy"); }
690f493f93395fb3d95a7e4695e692fbee728b7f
99bbff15c1788eeddbde20b4ba34867ef204b269
/src/xmlrcsd/configuration.cpp
eb5e5c6e249deb51bf38640d4c717d4cda371eef
[]
no_license
phuzion/XMLRCS
2fe9ffd84a6e2f042103e61c7866f71eb62a065f
414512851d4a73c0b2afdbec174725bbd54d8078
refs/heads/master
2023-03-15T22:18:39.254258
2019-04-13T13:41:11
2019-04-13T13:41:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,071
cpp
configuration.cpp
//This program is free software: you can redistribute it and/or modify //it under the terms of the GNU General Public License as published by //the Free Software Foundation, either version 3 of the License, or //(at your option) any later version. //This program is distributed in the hope that it will be useful, //but WITHOUT ANY WARRANTY; without even the implied warranty of //MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //GNU General Public License for more details. #include "configuration.hpp" const std::string Configuration::version = "1.0.5"; bool Configuration::daemon = false; std::string Configuration::redis_host = "localhost"; unsigned int Configuration::redis_port = 6379; unsigned long Configuration::total_conn = 0; unsigned long Configuration::total_io = 0; int Configuration::last_io = 0; std::string Configuration::redis_pref = ""; bool Configuration::auto_kill = true; int Configuration::debugging_level = 0; int Configuration::port = 8822; time_t Configuration::startup_time;
37a91e4be5879603ef7f1bb2a3d68b63f82b8ded
a121e081e9ea0ee2798ec6733869bb3607b39a31
/SolarSystemOpenGL/SolarSystemSimulation/SolarSystem/Engine/ImageSupport/CompressedImage.h
347be492a4dc357b1c28bf247fcb0e16d27c2a14
[]
no_license
nintymiles/SolarSystemSimulation
4206a75233a67eda7513df911f12e1d494a90dad
d5c6bdf020cf4462a8d8f6a8b599b09b2d7ecd35
refs/heads/master
2021-01-07T22:10:52.681040
2020-03-20T09:18:57
2020-03-20T09:18:57
242,069,684
4
0
null
null
null
null
UTF-8
C++
false
false
1,004
h
CompressedImage.h
#pragma once #include "Image.h" namespace namespaceimage { struct ETC2Header { char name[4]; // "PKM " char version[2]; // "20" for ETC2 unsigned short format; // Format == number of mips (== zero) unsigned short paddedWidth; // Padded Texture width dimensions, multiple of 4 (big-endian) unsigned short paddedHeight; // Padded Texture height dimensions, multiple of 4 (big-endian) unsigned short origWidth; // Original width dimensions (big-endian) unsigned short origHeight; // Original height dimensions (big-endian) }; class CompressedImage : public Image { unsigned int byte; unsigned int format; public: CompressedImage(void); ~CompressedImage(void); //! Load the compressed file image. virtual bool loadImage(char* fileName, bool generateTexID = true, GLenum target = GL_TEXTURE_2D); }; }
715bdc8d378c7730d2fdfd5c2eee9b16a4dea57b
4b54fb2e0ce10b469aa7d76f55ecc7b94da0b189
/SelfieSelfie/src/LandscapeGeometry.cpp
dd876b617be1d4d0373cc7348934850a11b96834
[ "MIT" ]
permissive
androidroadies/SelfieSelfie
f6c40fe52ea3274d778b68064f47921b75ef07fb
3f17efc0609623db3ea04fe9a8191d74af3914b6
refs/heads/master
2021-01-12T12:40:14.096998
2015-10-22T16:31:13
2015-10-22T16:31:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,664
cpp
LandscapeGeometry.cpp
// // LandscapeGeometry.cpp // // Created by Soso Limited on 5/28/15. // // #include "LandscapeGeometry.h" #include "cinder/Path2d.h" #include "cinder/Json.h" #include "cinder/Xml.h" #include "cinder/Log.h" #if defined(CINDER_ANDROID) const int kTimeDivisor = 1; #else const int kTimeDivisor = 1; #endif using namespace std; using namespace cinder; using namespace soso; inline std::string toString(const ci::vec2 &vector) { return "[" + toString(vector.x) + "," + toString(vector.y) + "]"; } namespace cinder{ template<> vec2 fromString<vec2>(const std::string &string) { auto parts = split(string, ","); auto x = fromString<float>(parts.at(0).substr(1, parts.at(0).size())); auto y = fromString<float>(parts.at(1).substr(0, parts.at(1).size() - 1)); return vec2(x, y); } } // namespace cinder #pragma mark - Bar Bar::Bar(const ci::vec2 &begin, const ci::vec2 &end, const ci::vec2 &begin_normal, const ci::vec2 &end_normal, int time, float texture_begin, float texture_end, int repeats) : begin(begin), end(end), normal_begin(begin_normal), normal_end(end_normal), time(time), texture_begin(texture_begin), texture_end(texture_end), repeats(repeats) {} Bar::Bar(const ci::XmlTree &xml) : begin(fromString<vec2>(xml.getChild("begin").getValue())), end(fromString<vec2>(xml.getChild("end").getValue())), normal_begin(fromString<vec2>(xml.getChild("normal_begin").getValue())), normal_end(fromString<vec2>(xml.getChild("normal_end").getValue())), time(fromString<int>(xml.getChild("time").getValue()) / kTimeDivisor), texture_begin(fromString<float>(xml.getChild("texture_begin").getValue())), texture_end(fromString<float>(xml.getChild("texture_end").getValue())), repeats(fromString<int>(xml.getChild("repeats").getValue())) {} ci::XmlTree Bar::toXml(float scale) const { auto bar = XmlTree("b", ""); bar.push_back(XmlTree("begin", toString(begin * scale))); bar.push_back(XmlTree("end", toString(end * scale))); bar.push_back(XmlTree("normal_begin", toString(normal_begin))); bar.push_back(XmlTree("normal_end", toString(normal_end))); bar.push_back(XmlTree("time", toString(time))); bar.push_back(XmlTree("texture_begin", toString(texture_begin))); bar.push_back(XmlTree("texture_end", toString(texture_end))); bar.push_back(XmlTree("repeats", toString(repeats))); return bar; } #pragma mark - Section Section::Section(float curve_begin, float curve_end, int time_begin, int spatial_subdivisions, int temporal_steps, int spatial_repeats) : curve_begin(curve_begin), curve_end(curve_end), time_begin(time_begin), spatial_subdivisions(spatial_subdivisions), temporal_steps(temporal_steps), spatial_repeats(spatial_repeats) {} std::vector<Bar> Section::getBars(const Path2dCalcCache &path) const { if (temporal_steps > spatial_subdivisions) { CI_LOG_W("Temporal subdivisions must be less than spatial subdivisions for all to register"); } vector<Bar> bars; for (auto i = 0; i < spatial_subdivisions; i += 1) { const auto t1 = (i + 0.0f) / spatial_subdivisions; const auto t2 = (i + 1.0f) / spatial_subdivisions; const auto time = time_begin + (int)floor(t1 * temporal_steps); auto c1 = path.calcNormalizedTime(mix(curve_begin, curve_end, t1), false); auto c2 = path.calcNormalizedTime(mix(curve_begin, curve_end, t2), false); auto tan1 = path.getPath2d().getTangent( c1 ); auto tan2 = path.getPath2d().getTangent( c2 ); auto n1 = normalize(vec2(- tan1.y, tan1.x)); auto n2 = normalize(vec2(- tan2.y, tan2.x)); auto a = path.getPosition(c1); auto b = path.getPosition(c2); bars.push_back( Bar{ a, b, n1, n2, time, t1, t2, spatial_repeats } ); } return bars; }
4c1eb8bb98902e37d3f1841fdbdb59a1a0b47cfb
0a3b37b3499b059d711b2e48bb144ca1bcf81ae1
/Src/Euler/Src/Create.cpp
1a6a8373bb60278045d39d06d3c18e6c62924ee1
[]
no_license
asdlei99/EulerOperation
bbf33c147dff0be18c7631490a83633f4a4af395
69586218ab1c490cbeebc5e5b982f41e3cea9f8e
refs/heads/master
2022-04-05T16:10:51.158271
2019-11-20T09:44:24
2019-11-20T09:44:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,507
cpp
Create.cpp
#include <EulerOperation/Operation.h> #include <EulerOperation/Create.h> EULER_OPR_BEGIN Solid *CreateFromPolygon(const Polygon2D &polygon, float height) { auto toTopPoint = [y = 0.5f * height](const Vec2 &p) { return Point{ Vec3(p.x, y, p.y) }; }; auto &outerPolygon = polygon.outerLoop; assert(outerPolygon.size() >= 3); auto [solid, startVertex] = MVFS(toTopPoint(outerPolygon[0])); Loop *loop = solid->face->loop; Vertex *lastEnd = startVertex; for(size_t i = 1; i < outerPolygon.size(); ++i) { HalfEdge *halfEdge = MEV(lastEnd, loop, toTopPoint(outerPolygon[i])); lastEnd = halfEdge->end; } auto [sameDir, revDir] = MEF(lastEnd, startVertex, loop); for(const auto &innerPolygon : polygon.innerLoops) { assert(innerPolygon.size() >= 3); Vertex *bridgeStart = revDir->hedge->start; HalfEdge *bridge = MEV(bridgeStart, revDir, toTopPoint(innerPolygon[0])); startVertex = bridge->end; lastEnd = startVertex; for(size_t i = 1; i < innerPolygon.size(); ++i) { HalfEdge *halfEdge = MEV(lastEnd, revDir, toTopPoint(innerPolygon[i])); lastEnd = halfEdge->end; } auto [outer, inner] = KEMR(bridgeStart, startVertex, revDir); auto [sam, rev] = MEF(lastEnd, startVertex, inner); sam->inner = true; } SweepAlongSegment(sameDir->face, Vec3(0, -height, 0)); return solid; } EULER_OPR_END
c9c079974cd96df2b5d7d0a3c58803861db56078
db5664467043ecdf04304ad6e285251c137a803c
/codility/MinPerimeterRectangle/src/utests.cpp
18be1ee6b365c2bfa321cb8cfe5a7cac7a7263f1
[]
no_license
sifaserdarozen/CodeTrain
0cea53ca59bd0583f878f81680b816681c06a5af
1e7aba7383cfba5e3aa55eceab25edf9bfed3499
refs/heads/master
2023-04-07T01:30:20.505660
2023-04-03T18:02:06
2023-04-03T18:02:06
61,748,291
0
0
null
null
null
null
UTF-8
C++
false
false
607
cpp
utests.cpp
/** @file utests.cpp * * Unit tests are performed with Catch v1.3.5 * More information about catch may be seen at their site https://github.com/philsquared/Catch */ // 3rd party libraries #define CATCH_CONFIG_MAIN // provides creation of executable, should be above catch.hpp #include "catch.hpp" extern int solution(int N); TEST_CASE( "Codility tests case", "[solution]" ) { SECTION( "codility test" ) { REQUIRE( 22 == solution(30)); } } TEST_CASE( "Extra tests case", "[solution]" ) { SECTION( "unit area rectangle" ) { REQUIRE( 4 == solution(1)); } }
c4308dc51891dceb523a4b99dc968db93e2e1fea
665edf11b24e94bbdf0555ec6423d90e14bf1f96
/stratego/main.cpp
11685974a1ca9c9405041189980bda2df33dc688
[]
no_license
Dahlbergs/elec3150-cpp-oop
f9e2566305797c77fed7bc0eb8fadedbf2ada824
7a935183b924b1ad3f5a6d41b15325c4d0fadb29
refs/heads/master
2020-04-05T22:56:14.900130
2016-12-12T00:54:10
2016-12-12T00:54:10
68,156,590
0
0
null
null
null
null
UTF-8
C++
false
false
877
cpp
main.cpp
#include <SFML/Graphics.hpp> #include <iostream> #include "game.hpp" int main() { Game game; game.Run(); } /* sf::RenderWindow window(sf::VideoMode(1000, 640), "Stratego Clone"); sf::Texture t_map; if (!t_map.loadFromFile("assets/map.png")) { std::cout << "Unable to load map image" << std::endl; } sf::Sprite s_map; s_map.setTexture(t_map); GamePiece marshall(GamePiece::MARSHALL, GamePiece::BLUE); sf::RectangleShape toolbar(sf::Vector2f(480, 640)); toolbar.setFillColor(sf::Color(100, 100, 100)); toolbar.setPosition(640, 0); while (window.isOpen()) { sf::Event event; while (window.pollEvent(event)) { if (event.type == sf::Event::Closed) { window.close(); } } window.clear(); window.draw(s_map); window.draw(marshall.GetSprite()); window.draw(toolbar); window.display(); } return 0; */
e6c563c0ef5637db98cef576a57390ca1fea9e74
ae162ad5217d78ec2a2aa09400266d270dd83abd
/StepperCuda/include/NewtonCudaHier.hpp
bec11ce3d16ba3fc31e0eaec1440f20fd36c5b73
[]
no_license
desaic/fem
c7a8b52c94d90d79769c4da51dec72d999c4f466
e7f3805df75a3ea56ca8c99ab682e10413c0202f
refs/heads/master
2020-04-06T07:04:48.741741
2017-09-22T19:29:45
2017-09-22T19:29:45
21,632,619
3
0
null
null
null
null
UTF-8
C++
false
false
380
hpp
NewtonCudaHier.hpp
#ifndef NEWTON_CUDA_HIER_HPP #define NEWTON_CUDA_HIER_HPP #include "Stepper.hpp" #include "LinSolveCusp.hpp" class NewtonCudaHier:public Stepper { public: NewtonCudaHier(); void init(ElementMesh * _m); int oneStep(); LinSolveCusp solver; float dx_tol; float h; //number of iterations for linear solver; int linIter; //level it is solving int level; }; #endif
6be3582dc22baaa588201329e225ecc73516f8cf
bb9806fd453fe14af6fef459cbc227ef3b5db1e7
/ClanLib 2D Dijkstra Test/Program.hpp
7ff0e4979edd3ddae3958fcd32253b6fcf3dbd1c
[]
no_license
thecherry94/ClanLib_2D_Dijkstra_Test
53a836e8c55346e6cf7beee9027fee9c95b4377f
f6d240a4e8aa6a81c87cabdfd94e720e0ca46f20
refs/heads/master
2021-01-19T15:33:42.298338
2014-07-08T13:19:47
2014-07-08T13:19:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
121
hpp
Program.hpp
#include "precomp.hpp" #include <vector> class Program { public: static int main(const std::vector<std::string>&); };
fb5521271eec0c8e81a335aa39e039b9af16115d
38d013a187c4d3cfb958a35702894e9bc69f4c4f
/gw/gw_multiresolution/GW_TreeFunction_ABC.cpp
698aad23db0b240a178f3212480488feb3c1b03b
[]
no_license
gpeyre/Orion3D
2a91288071085fedd73b9974ebd62945741f72b0
d96f70ce39cebdcd82355a507026acd25fa91eaf
refs/heads/master
2020-03-14T16:22:08.336181
2018-05-01T09:38:22
2018-05-01T09:38:22
131,696,922
8
0
null
null
null
null
ISO-8859-1
C++
false
false
3,994
cpp
GW_TreeFunction_ABC.cpp
/*------------------------------------------------------------------------------*/ /** * \file GW_TreeFunction_ABC.cpp * \brief Definition of class \c GW_TreeFunction_ABC * \author Gabriel Peyré * \date 10-30-2002 */ /*------------------------------------------------------------------------------*/ #ifdef GW_SCCSID static const char* sccsid = "@(#) GW_TreeFunction_ABC.cpp(c) Gabriel Peyré2002"; #endif // GW_SCCSID #include "stdafx.h" #include "GW_TreeFunction_ABC.h" #ifndef GW_USE_INLINE #include "GW_TreeFunction_ABC.inl" #endif #include "GW_QuadTreeNode.h" #include "GW_QuadTreeVertex.h" using namespace GW; /*------------------------------------------------------------------------------*/ // Name : GW_TreeFunction_ABC::GetValue /** * \param CurNode [CurVertex&] The vertex. * \author Gabriel Peyré * \date 11-29-2002 * * Get the value at a given position. */ /*------------------------------------------------------------------------------*/ GW_Float GW_TreeFunction_ABC::GetValue( GW_Float rU, GW_Float rV ) const { return 0; } /*------------------------------------------------------------------------------*/ // Name : GW_TreeFunction_ABC::ComputeSphericalNormal /** * \param Normal [GW_Vector3D&] the normal * \param theta [GW_Float] the longitude * \param phi [GW_Float] the latitude. * \author Gabriel Peyré * \date 10-30-2002 * * Return the normal at a given point on the surface of a sphere of radius 1. */ /*------------------------------------------------------------------------------*/ void GW_TreeFunction_ABC::ComputeSphericalNormal(GW_Vector3D& Normal, GW_Float theta, GW_Float phi) const { GW_Float rU = theta/GW_TWOPI; GW_Float rV = phi/GW_PI + 0.5f; /* compute local coords */ GW_Vector3D u_theta( (float)-sin(theta), (float)cos(theta), 0 ); GW_Vector3D u_phi ( (float)(-cos(theta)*sin(phi)), (float)(sin(theta)*sin(phi)), (float)cos(phi) ); GW_Vector3D u_r ( (float)(cos(phi)*cos(theta)), (float)(cos(phi)*sin(theta)), (float)sin(phi) ); /* compute the derivatives */ GW_Float rU1 = rU-GW_EPSILON; if( rU1<0 ) rU1=0; GW_Float rU2 = rU+GW_EPSILON; if( rU2>1 ) rU2=1; GW_Float rV1 = rV-GW_EPSILON; if( rV1<0 ) rV1=0; GW_Float rV2 = rV+GW_EPSILON; if( rV2>1 ) rV2=1; GW_Float dtheta = (this->GetValue(rU2, rV) - this->GetValue(rU1, rV))/(rU2-rU1); GW_Float dphi = (this->GetValue(rU, rV2) - this->GetValue(rU, rV1))/(rV2-rV1); /* deduce the gradient to surface (r-1)=f(theta,phi) */ Normal = u_r - u_theta*dtheta - u_phi*dphi; Normal.Normalize(); } /*------------------------------------------------------------------------------*/ // Name : GW_TreeFunction_ABC::ComputePlanarNormal /** * \param Normal [GW_Vector3D&] the normal * \param rU [GW_Float] the \c U coord, in [0,1]. * \param phi [GW_Float] the \c V coord, in [0,1]. * \author Gabriel Peyré * \date 10-30-2002 * * Return the normal at a given point on the surface of a plane. */ /*------------------------------------------------------------------------------*/ void GW_TreeFunction_ABC::ComputePlanarNormal(GW_Vector3D& Normal, GW_Float rU, GW_Float rV) const { /* compute the derivatives */ GW_Float dU = (this->GetValue(rU+GW_EPSILON, rV) - this->GetValue(rU-GW_EPSILON, rV))/(2*GW_EPSILON); GW_Float dV = (this->GetValue(rU, rV+GW_EPSILON) - this->GetValue(rU, rV-GW_EPSILON))/(2*GW_EPSILON); /* deduce the gradient to surface (r-1)=f(theta,phi) */ Normal = GW_Vector3D(1, -dU, -dV); Normal.Normalize(); } /////////////////////////////////////////////////////////////////////////////// // Copyright (c) Gabriel Peyré /////////////////////////////////////////////////////////////////////////////// // END OF FILE // ///////////////////////////////////////////////////////////////////////////////
3648666dddacb11eb5fae14cf515bc3c23bd661e
c88801bcccb01610d44fc1d1154ea0383ccefa77
/include/barrier.h
ebb92465ce9e22fd028d40b71f8b07c3d55f9e76
[]
no_license
walmeida/EP2_Concorrente
1fe52363ce261cf5b1a3b759a6ec53250d4e6e61
0d0dacde9471ef854aa98225fc7350906773a490
refs/heads/master
2021-01-20T12:37:26.811650
2012-05-14T02:46:11
2012-05-14T02:46:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
316
h
barrier.h
#ifndef BARRIER_H_ #define BARRIER_H_ class Barrier { private: volatile unsigned long *arrive_; int num_threads_; int num_stages_; public: Barrier (int num_threads); ~Barrier (); void sync (int thread_id); void setFinished (int thread_id); }; #endif
8404125fe563a4260dc878d1921ba70a9f8cc6b8
29d2f5f846d59e4c317ed6638629404e8a14c46e
/fantastic-finale-amorris6/src/Character.cpp
bbc4ab2f81c05b25ca3e394693eda960b973354b
[]
no_license
amorris6/Level-Up
ec57f9bcc274dc52b4996198a663256e58e6c57f
51613f70f1eb5950e6ad66f66eddd3cf42a46281
refs/heads/master
2020-12-07T05:54:29.913439
2019-12-12T05:55:05
2019-12-12T05:55:05
232,649,484
0
0
null
null
null
null
UTF-8
C++
false
false
868
cpp
Character.cpp
#include "Character.h" ofVec2f Character::getPos() { return position_; } int Character::getGold() { return gold_; } int Character::getExp() { return exp_; } int Character::getAtk() { return atk_; } int Character::getDef() { return def_; } int Character::getHealth() { return health_; } float Character::getCrit() { return crit_chance_; } ofRectangle Character::getRect() { return ofRectangle(position_.x, position_.y, kCharWidth, kCharHeight); } bool Character::operator==(Character const& other) const { return this->position_ == other.position_ && this->gold_ == other.gold_ && this->exp_ == other.exp_ && this->atk_ == other.atk_ && this->def_ == other.def_ && this->health_ == other.health_ && this->crit_chance_ == other.crit_chance_; } bool Character::operator!=(Character const& other) const { return !(*this == other); }
3387b669e18e8c0e960faf1e29c64753f7eec07f
5c34da2af58f790de4d01da27f3d46d7ff5d5700
/src/contests/552/A.cpp
15a9ef605aef151669d5435a587d48f2d03e103a
[]
no_license
nschepsen/codeforces
ea124a4d43c07b7106f087d38b24602059e1c159
963b624045b67aabfa16c235f857800742a866b7
refs/heads/master
2021-09-08T23:17:10.099340
2021-09-01T16:39:30
2021-09-01T16:39:30
134,918,112
1
0
null
null
null
null
UTF-8
C++
false
false
769
cpp
A.cpp
#include <iostream> #include <vector> /* * Contest: Code Forces Round #308 (Task 552-A) * URL: http://codeforces.ru/contest/552/problem/A */ int main(int argc, char** argv) { std::ios_base::sync_with_stdio(0); int n, sum = 0; std::cin >> n; std::vector<std::vector<int> > v(100, std::vector<int>(100, 0)); for (int i = 0, a, b, c, d; i < n; ++i) { std::cin >> a >> b >> c >> d; for (int x = (a - 1); x < c; ++x) { for (int y = (b - 1); y < d; ++y) { v[x][y]++; } } } for (int i = 0; i < 100; ++i) { for (int j = 0; j < 100; ++j) { sum += v[i][j]; } } std::cout << sum << std::endl; return 0; }
a68ad9cbe2322b7a8fcb08d8fdf839c0c2153262
3cc21e7c4a4d6ae4a1b6f6117594e52594d47edb
/src/charstring.h
4dcb216df4050a573d1c0c58c108aa816be96fb8
[ "MIT" ]
permissive
AllanCameron/PDFR
abbf377c26cccadf65200df112512471a7b317fb
955c122cd0efa0ed4c0924e1ec8ec6340207d151
refs/heads/master
2023-05-23T20:56:44.545742
2023-05-05T14:43:52
2023-05-05T14:43:52
159,937,563
33
4
NOASSERTION
2023-04-06T01:59:14
2018-12-01T11:25:38
C++
UTF-8
C++
false
false
5,309
h
charstring.h
//---------------------------------------------------------------------------// // // // PDFR CharString header file // // // // Copyright (C) 2018 - 2019 by Allan Cameron // // // // Licensed under the MIT license - see https://mit-license.org // // or the LICENSE file in the project root directory // // // //---------------------------------------------------------------------------// #ifndef PDFR_CHARSTRING //---------------------------------------------------------------------------// #define PDFR_CHARSTRING #include<string> #include<iostream> // The CharString class offers cheap, read-only access to std::strings and // C-style strings without having to copy data at any point. It is effectively // a glorified struct{const char* string, size_t length;} with member functions // such as operator[](), size(), begin(), end(), find() and substr() that // function as one might expect. It can be created from a std::string, a // const char* or a string literal, and can be compared directly for equality // against each of these using operator==(). It has its own output stream // method so it can be written directly to the console. // // Although it doesn't own any other resources, it will only remain valid as // long as the string to which it points exists, and this can make it // problematic unless care is taken to ensure its lifetime falls strictly // within the lifetime of the pointed-to string. // // It is used in PDFR because the entire pdf file is read into the free store as // an std::string and sits there for the duration of the parsing process. It // is therefore a safe and efficient tool for this job. // // This class is a wheel that has been reinvented many times, not least by the // C++17 addition of string_view. My guess is that string_view is much more // efficient, safe and portable than this class, but isn't available in C++11. // I have tried to give the member functions the same names as those in // string_view so that the code base can be easily upgraded in the future. // // Most of the methods are inlined, and only those that are a bit more complex // such as the find() and substr() methods are defined seperately in the // implementation file class CharString { public: // There are several ways to construct a Charstring: // Give it a pointer, a starting offset and an endpoint CharString(const char* ptr, size_t start, size_t end) : begin_(ptr + start), length_(end - start) {} // Or just a pointer and a length CharString(const char* ptr, size_t length) : begin_(ptr), length_(length) {} // Or just a pointer to a zero-terminated string CharString(const char* ptr) : begin_(ptr), length_(0) { while (*(begin_ + length_)) ++length_; } // Or an std::string CharString(const std::string& s) : begin_(s.c_str()), length_(s.size()) {} // Or an std::string with a starting offset CharString(const std::string& str, size_t start) : begin_(str.c_str() + start), length_(str.size() - start) {} // Or another CharString CharString(const CharString&) = default; CharString& operator=(const CharString& chunk) = default; CharString& operator=(CharString&& chunk) noexcept = default; // Empty constructor CharString() : begin_(nullptr), length_(0) {} // The comparators are seperately defined bool operator==(const CharString& other) const; bool operator==(const std::string& string) const; bool operator==(const char* cstring) const; // Find and substr also require seperate definition const char* find(const char* target) const; const char* find(const CharString& target) const; CharString substr(size_t start, size_t length) const; CharString CarveOut(const char* left, const char* right) const; // The basic reading operations are all inlined char operator[](int index) const {return *(begin_ + index);} std::string AsString() const {return {begin_, length_};} const char* begin() const {return begin_;} const char* end() const {return begin_ + length_;} char back() const {return *(end() - 1);} bool empty() const {return length_ == 0;} size_t size() const {return length_;} const char* find(const std::string& str) const {return find(str.c_str());} bool contains(const char* target) const {return find(target) != end();} bool contains(std::string target) const {return find(target) != end();} private: const char* begin_; size_t length_; }; // Declaration for output stream interface doesn't need to be a member std::ostream& operator<<(std::ostream& os, const CharString& charstring); // Create a string literal CharString directly inline CharString operator "" _cs(const char* cstr) { return CharString(cstr);} #endif
12b2ca1c2f71956e719f8fce1b8936083ccfb3a9
02f7a71eb8274b47daf5cd3d62fd09bfc6768ee0
/include/qc/matrix/square_matrix.hpp
129b5783f4897bdd1a5bb287445c126acac70d93
[]
no_license
sndtkrh/qcirs
5985ce73f51e48172b70f4c009c7d33f3a08f898
a07cef7fafc13f01a2605c06b46eff1910eb2807
refs/heads/master
2021-09-16T19:57:12.287397
2018-06-24T06:00:59
2018-06-24T06:00:59
122,168,631
0
0
null
null
null
null
UTF-8
C++
false
false
246
hpp
square_matrix.hpp
#ifndef SQ_MAT #define SQ_MAT namespace qc { class SquareMat : public Mat { public: SquareMat(); SquareMat(std::vector<std::vector<std::complex<double>>> m); std::size_t size() const; protected: std::size_t N; }; } #endif
46bac7addb1d96df7f94eba61ddaba7cfd8c34a1
8f3cfeb1dadfaee5f3ed9a4f2508601e3f3a5881
/machFnMap/machfnmap.h
a6cbafc4da139b6343ecd4e56942497c270f57d3
[]
no_license
athena255/Macos
1e8a3a967db444cfd7d5d062b4d985ffc84f7274
6d2ec4fef593dac3d0272aaec4849bf66ab66dfc
refs/heads/master
2020-09-15T03:14:29.025831
2020-04-27T01:20:32
2020-04-27T01:20:32
223,334,799
0
0
null
null
null
null
UTF-8
C++
false
false
844
h
machfnmap.h
#pragma once #include <mach-o/loader.h> #include <mach-o/nlist.h> #include <mach-o/stab.h> #include <vector> /** * An interface that maps function pointers to load_commands, segments, or sections. * When execute is called, go through the mach file and execute the commands on each * element */ template <typename T> class Functor { private: T* me; public: explicit Functor(T*); T* operator()(size_t idx) const { } friend class MachFnMap; }; class MachFnMap { public: MachFnMap(const char* fileName); ~MachFnMap(); /** * @brief iterates through the given file and executes the registered functions */ void execute(); void commit(const char* fileName); private: mach_header* pMachHeader; std::vector<load_command*> lcVec; // working copy of machfile char* filedata; };
4a96ebfcdc4b0cc242d967bcb07f83d2f111e2af
c9a47a95e0011b0836b446001eac593325457662
/linux/leapeventlistener.cpp
69cec554de8a20a3319fa9a6949c07748f1f2c50
[]
no_license
houdini22/drone_blackbox
310a957eafdb0d5a8995ee98775dc796e5b951ed
8b05b7dd8f5236a07778be1d4302edf4a9633a50
refs/heads/master
2020-04-12T10:44:23.656013
2019-08-31T20:30:04
2019-08-31T20:30:04
162,438,846
0
0
null
null
null
null
UTF-8
C++
false
false
2,115
cpp
leapeventlistener.cpp
#include "include.h" /* void LeapEventListener::onConnect(const Controller & controller) { SteeringData * data = this->steeringLeapMotion->getData(); data->isConnected = true; this->steeringLeapMotion->setData(data); } void LeapEventListener::onDisconnect(const Controller & controller) { SteeringData * data = this->steeringLeapMotion->getData(); data->isConnected = false; this->steeringLeapMotion->setData(data); } void LeapEventListener::onFrame(const Controller& controller) { Frame frame = controller.frame(); Leap::HandList hands = frame.hands(); Leap::Hand firstHand = hands[0]; InteractionBox iBox = controller.frame().interactionBox(); Pointable pointable = controller.frame().pointables().frontmost(); Vector leapPoint = pointable.stabilizedTipPosition(); float pitch = firstHand.direction().pitch(); float yaw = firstHand.direction().yaw(); float roll = firstHand.palmNormal().roll(); bool isAvailable = firstHand.id() != -1; bool fist = firstHand.sphereRadius() <= 50.0f; HandPosition handPosition; handPosition.pitch = floor(pitch * 100) / 100; handPosition.yaw = floor(yaw * 100) / 100; handPosition.roll = floor(roll * 100) / 100; handPosition.isAvailable = isAvailable; handPosition.fist = fist; handPosition.x = leapPoint.x; handPosition.y = leapPoint.y; handPosition.z = leapPoint.z; handPosition.pitch = std::min(std::max(handPosition.pitch, (float) -0.6), (float) 0.6); handPosition.yaw = std::min(std::max(handPosition.yaw + (float) 0.2, (float) -0.6), (float) 0.6); handPosition.roll = - std::min(std::max(handPosition.roll, (float) -0.6), (float) 0.6); handPosition.x = std::min(std::max(handPosition.x, (float) -200), (float) 200) / 200; handPosition.y = std::min(std::max(handPosition.y, (float) 0), (float) 400) / 400; handPosition.z = std::min(std::max(handPosition.z, (float) -200), (float) 200) / 200; } void LeapEventListener::setSteeringLeapMotion(SteeringLeapMotion * steeringLeapMotion) { this->steeringLeapMotion = steeringLeapMotion; } */
de485cd753899bfce084fc1bf62753d7d301e01a
5545a328ab35eaae33b77ccdeae52f01cf487a3f
/Vetores/string.cpp
cd8e34160dc05143cef14da1d34ba9611bff4d55
[]
no_license
neiva098/exerciciosC
bbec95e0420a90ed31894efc4755123e0137e813
ce0573d24c2e883315c8f109686470e6e9bd06af
refs/heads/master
2022-04-19T01:21:47.699786
2020-04-11T01:30:40
2020-04-11T01:30:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,096
cpp
string.cpp
#include <stdio.h> int tamanho(char string[]) { int i; for (i = 0; string[i] != '\0'; i++) ; return i; } void concatenar(char string1[], char string2[]) { int a = tamanho(string1); ; int i; for (i = 0; string2[i] != '\0'; i++, a++) { string1[a] = string2[i]; } string1[a] = '\0'; printf("%s\n", string1); } void copia(char s1[], char s2[]) { int i = 0; for (i = 0; s1[i] != '\0'; i++) { s2[i] = s1[i]; } s2[i] = '\0'; } void copiaparam(char s1[], char s2[], int n) { int i = 0; for (i = 0; i < n; i++) { s2[i] = s1[i]; } s2[i] = '\0'; } int compara(char s1[], char s2[]) { int i; for (i = 0; s1[i] != '\0' || s2[i] != '\0'; i++) { if (s1[i] != s2[i]) { return 0; } } return 1; } main() { int n = 2; char string1[50]; char string2[50]; char string3[50]; char string4[50]; gets(string1); gets(string2); printf("V OU F %d\n", compara(string1, string2)); copia(string1, string3); copiaparam(string1, string4, n); printf("%d\n", tamanho(string1)); printf("COPIA %s\n", string3); printf("COPIA2 %s\n", string4); concatenar(string1, string2); }
39fd539d54b6b39a27478f6f0df99e1d1991c25f
045ad86b79d87f501cfd8252ecd8cc3c1ac960dd
/NetworkLib/Socket/IOBase.h
f94111b6fcc13e7d18cb9104f1897caa3c07a572
[ "MIT" ]
permissive
intact-software-systems/cpp-software-patterns
9513e4d988342d88c100e4d85a0e58a3dbd9909e
e463fc7eeba4946b365b5f0b2eecf3da0f4c895b
refs/heads/master
2020-04-08T08:22:25.073672
2018-11-26T14:19:49
2018-11-26T14:19:49
159,176,259
1
0
null
null
null
null
UTF-8
C++
false
false
1,570
h
IOBase.h
#pragma once #include "NetworkLib/IncludeExtLibs.h" #include "NetworkLib/Export.h" namespace NetworkLib { /** * @brief The IOWriter class */ class DLL_STATE IOWriter { public: virtual ~IOWriter() {} CLASS_TRAITS(IOWriter) virtual int Write(const char* bytes, const int& length) = 0; virtual int WriteDatagram(const char* bytes, const int& length, const std::string& hostAddress, const int& port) = 0; virtual void Close() = 0; virtual bool Flush() = 0; }; /** * @brief The IOReader class */ class DLL_STATE IOReader { public: virtual ~IOReader() {} CLASS_TRAITS(IOReader) virtual int Read(char* bytes, const int& length) = 0; virtual int ReadDatagram(char* bytes, const int& length, std::string& hostAddress, int& port) = 0; virtual void Close() = 0; }; /** * @brief The IOReaderWriter class */ class DLL_STATE IOReaderWriter : public IOReader, public IOWriter { public: virtual ~IOReaderWriter() {} CLASS_TRAITS(IOReaderWriter) }; /** * @brief The BufferWriter class */ template <typename T, typename Container = std::vector<T> > class DLL_STATE BufferWriter { public: CLASS_TRAITS(BufferWriter) virtual bool Write(const Container&) { return false; } virtual void Clear() {} }; /** * @brief The BufferReader class */ template <typename T, typename Container = std::vector<T> > class DLL_STATE BufferReader { public: virtual ~BufferReader() {} CLASS_TRAITS(BufferReader) virtual Container Read() { return Container(); } }; }
04fb1594bb3e5cf326b40ce87a5400c3bb0d5108
df1468ef96a5e281a5c8cc649928ca26345e8dcc
/maxinf_v2.1.0/code/mis.h
1131c716dce29c784a8cef9922f2a78e37ad5d4d
[]
no_license
lichao-sun/Multi-Round-Influence-Maximization
73f8695eedd75118b7d34ae974e9f31c81d4a153
1c31fceabb319244c07ade188c5793cc8c5a05d0
refs/heads/master
2021-07-31T20:47:25.994800
2021-07-27T20:07:36
2021-07-27T20:07:36
169,465,897
4
0
null
null
null
null
UTF-8
C++
false
false
621
h
mis.h
#ifndef MIS_H #define MIS_H #include <vector> #include <string> #include "topic_aware.h" #include "graph.h" #include "algo_base.h" /// Topic-Aware: /// Marginal Influence Sort (MIS) Algorithm class MIS : public AlgoBase { protected: std::string file; std::string timerfile; void EstimateSeeds(std::vector<double>& distribution, Graph& gf); int FindSeedByNum(std::vector<MINode>& candidates, int num); struct MINodeGreater { bool operator () (const MINode& left, const MINode& right) const; }; public: MIS(); void Build(Graph& gf, int set_size, std::vector<double>& distribution); }; #endif ///:~ MIS_H
3bd3941bf705d80a7f57ad14d16f3e5490410f9f
458f8349f506391f68ed9b85f0da3228ed1a4415
/DobotCheck/DobotCheckDlg.cpp
2844acb25a19fc0e6d8c5a183daec6df2094d1ea
[]
no_license
adteng/dobotcheck
1a8170c0f089542e5f8322b7bd54a2a38d0f832d
a208cb9c505a6064aad300e3b3f0da0a53ef2f2f
refs/heads/master
2021-01-11T04:39:23.597106
2017-06-06T10:09:59
2017-06-06T10:09:59
71,120,839
0
0
null
null
null
null
GB18030
C++
false
false
16,669
cpp
DobotCheckDlg.cpp
// DobotCheckDlg.cpp : 实现文件 // #include "stdafx.h" #include "DobotCheck.h" #include "DobotCheckDlg.h" #include "afxdialogex.h" //#include "common/utility.h" #include <Setupapi.h> #include <devguid.h> #include "ACard.h" #include "OperDobot2.h" #pragma comment(lib, "setupapi") #ifdef _DEBUG #define new DEBUG_NEW #endif //#pragma comment(lib, "lib/utility") //#pragma comment(lib, "setupapi") //#pragma comment(lib, "lib/common_d") // 用于应用程序“关于”菜单项的 CAboutDlg 对话框 class CAboutDlg : public CDialogEx { public: CAboutDlg(); // 对话框数据 enum { IDD = IDD_ABOUTBOX }; protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持 // 实现 protected: DECLARE_MESSAGE_MAP() }; CAboutDlg::CAboutDlg() : CDialogEx(CAboutDlg::IDD) { } void CAboutDlg::DoDataExchange(CDataExchange* pDX) { CDialogEx::DoDataExchange(pDX); } BEGIN_MESSAGE_MAP(CAboutDlg, CDialogEx) END_MESSAGE_MAP() // CDobotCheckDlg 对话框 CDobotCheckDlg::CDobotCheckDlg(CWnd* pParent /*=NULL*/) : CDialogEx(CDobotCheckDlg::IDD, pParent) , m_f1(0) , m_f7(0) , m_f8(0) , m_f9(0) , m_f10(0) , m_f2(0) , m_f3(0) , m_f4(0) , m_f5(0) , m_f6(0) { m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME); } void CDobotCheckDlg::DoDataExchange(CDataExchange* pDX) { CDialogEx::DoDataExchange(pDX); DDX_Control(pDX, IDC_TAB1, m_TabCtrl); } BEGIN_MESSAGE_MAP(CDobotCheckDlg, CDialogEx) ON_WM_SYSCOMMAND() ON_WM_PAINT() ON_WM_QUERYDRAGICON() ON_BN_CLICKED(IDC_BUTTON1, &CDobotCheckDlg::OnBnClickedButton1) ON_BN_CLICKED(IDC_Send, &CDobotCheckDlg::OnBnClickedSend) ON_BN_CLICKED(IDOK, &CDobotCheckDlg::OnBnClickedOk) ON_BN_CLICKED(IDC_BUTTON2, &CDobotCheckDlg::OnBnClickedButton2) ON_BN_CLICKED(IDC_BUTTON3, &CDobotCheckDlg::OnBnClickedButton3) ON_NOTIFY(TCN_SELCHANGE, IDC_TAB1, &CDobotCheckDlg::OnTcnSelchangeTab1) // ON_WM_LBUTTONDOWN() ON_BN_CLICKED(IDC_BUTTON_MARK, &CDobotCheckDlg::OnBnClickedButtonMark) //ON_BN_CLICKED(IDC_BUTTON_BACK, &CDobotCheckDlg::OnBnClickedButtonBack) END_MESSAGE_MAP() // CDobotCheckDlg 消息处理程序 void ShowDobotStatus(float f1,float f2,float f3,float f4,float f5,float f6,float f7,float f8,float f9,float f10); OperDobot *g_OperDobot; CDobotCheckDlg *g_dlg; CACard *g_pCardOP; void ShowLog(const char *pInf) { CString str(pInf); g_dlg->ShowInfo(str); } BOOL CDobotCheckDlg::OnInitDialog() { CDialogEx::OnInitDialog(); // 将“关于...”菜单项添加到系统菜单中。 // IDM_ABOUTBOX 必须在系统命令范围内。 ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX); ASSERT(IDM_ABOUTBOX < 0xF000); CMenu* pSysMenu = GetSystemMenu(FALSE); if (pSysMenu != NULL) { BOOL bNameValid; CString strAboutMenu; bNameValid = strAboutMenu.LoadString(IDS_ABOUTBOX); ASSERT(bNameValid); if (!strAboutMenu.IsEmpty()) { pSysMenu->AppendMenu(MF_SEPARATOR); pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu); } } // 设置此对话框的图标。当应用程序主窗口不是对话框时,框架将自动 // 执行此操作 SetIcon(m_hIcon, TRUE); // 设置大图标 SetIcon(m_hIcon, FALSE); // 设置小图标 // TODO: 在此添加额外的初始化代码 g_dlg = this; g_OperDobot = new OperDobot2(); g_pCardOP = new CACard(); g_OperDobot->SetLogInfoFun(ShowLog); g_OperDobot->ShowDobotStatus=ShowDobotStatus; g_pCardOP->SetLogInfoFun(ShowLog); char sComName[8] = {0}; //SearchCOM(sComName,"Arduino Mega 2560");//"USB-SERIAL CH340" SearchCOM(sComName,"USB-SERIAL CH340"); CString strCom; strCom.Format( "//./%s",sComName); g_OperDobot->SetCOM((LPCTSTR)strCom); //g_wmd->ShowWindow(SW_HIDE); m_TabCtrl.InsertItem(0,"压力测试"); m_TabCtrl.InsertItem(1,"闪卡测试"); m_TabCtrl.InsertItem(2,"近邻位置点测试"); //m_TabCtrl.InsertItem(2,"压力测试"); m_PressureCard.Create(IDD_DIALOG_M3,GetDlgItem(IDC_TAB1)); m_ScandCard.Create(IDD_DIALOG_M1,GetDlgItem(IDC_TAB1)); m_FlashCard.Create(IDD_DIALOG_M2,GetDlgItem(IDC_TAB1)); //m_PressureCardNew.Create(IDD_DIALOG_M4,GetDlgItem(IDC_TAB1)); RECT rect; GetClientRect(&rect); rect.top += 21; m_PressureCard.MoveWindow(&rect); m_ScandCard.MoveWindow(&rect); m_FlashCard.MoveWindow(&rect); ((CButton *)GetDlgItem(IDC_RADIO3))->SetCheck(TRUE); if(!g_pCardOP->FindCard()) MessageBox("未发现读卡器"); if(!g_pCardOP->ConnectReader()) MessageBox("连接读卡器失败"); //m_ScandCard.ShowWindow(TRUE); m_PressureCard.ShowWindow(TRUE); return TRUE; // 除非将焦点设置到控件,否则返回 TRUE } bool CDobotCheckDlg::SearchCOM(char *pName,const char *pFindName) { bool bArduino = false; // 得到设备信息集 HDEVINFO hDevInfo = SetupDiGetClassDevs( (LPGUID)&GUID_DEVCLASS_PORTS,NULL,0,DIGCF_PRESENT/* | DIGCF_ALLCLASSES*/); if(hDevInfo==INVALID_HANDLE_VALUE) { printf("Error! SetupDiGetClassDevs() return %d\n", GetLastError()); SetupDiDestroyDeviceInfoList(hDevInfo); return 0; } TCHAR szBuf[MAX_PATH]; SP_DEVINFO_DATA spDevInfoData = {sizeof(SP_DEVINFO_DATA)}; // 开始列举设备 DWORD i = 0; for(i = 0;SetupDiEnumDeviceInfo(hDevInfo, i,&spDevInfoData); i++) { // 得到设备名称 if(SetupDiGetDeviceRegistryProperty(hDevInfo,&spDevInfoData,SPDRP_FRIENDLYNAME,NULL,(PBYTE)szBuf, MAX_PATH,NULL)) { if(memcmp(szBuf,pFindName,strlen(pFindName)) == 0)//过滤虚拟串口 { string strPort = szBuf; int nPos1,nPos2; nPos1 = strPort.find("(",0); nPos2 = strPort.find(")",nPos1); strPort = strPort.substr(nPos1+1,nPos2-nPos1-1); OperDobot::strTrim(strPort); strcpy(pName,strPort.c_str()); bArduino = true; break; } } } return bArduino; } void CDobotCheckDlg::OnSysCommand(UINT nID, LPARAM lParam) { if ((nID & 0xFFF0) == IDM_ABOUTBOX) { CAboutDlg dlgAbout; dlgAbout.DoModal(); } else { CDialogEx::OnSysCommand(nID, lParam); } } // 如果向对话框添加最小化按钮,则需要下面的代码 // 来绘制该图标。对于使用文档/视图模型的 MFC 应用程序, // 这将由框架自动完成。 void CDobotCheckDlg::OnPaint() { if (IsIconic()) { CPaintDC dc(this); // 用于绘制的设备上下文 SendMessage(WM_ICONERASEBKGND, reinterpret_cast<WPARAM>(dc.GetSafeHdc()), 0); // 使图标在工作区矩形中居中 int cxIcon = GetSystemMetrics(SM_CXICON); int cyIcon = GetSystemMetrics(SM_CYICON); CRect rect; GetClientRect(&rect); int x = (rect.Width() - cxIcon + 1) / 2; int y = (rect.Height() - cyIcon + 1) / 2; // 绘制图标 dc.DrawIcon(x, y, m_hIcon); } else { CDialogEx::OnPaint(); } } //当用户拖动最小化窗口时系统调用此函数取得光标 //显示。 HCURSOR CDobotCheckDlg::OnQueryDragIcon() { return static_cast<HCURSOR>(m_hIcon); } void CDobotCheckDlg::ShowInfo(CString inf) { CString strTmp; GetDlgItem(IDC_EDIT1)->GetWindowText(strTmp); strTmp+="\r\n"; if(strTmp.GetLength() > 10240) strTmp = ""; GetDlgItem(IDC_EDIT1)->SetWindowText(strTmp + inf); ((CEdit *)GetDlgItem(IDC_EDIT1))->SetSel(0,strTmp.GetLength()); } void ShowDobotStatus(float f1,float f2,float f3,float f4,float f5,float f6,float f7,float f8,float f9,float f10) { char sData[512] = {0}; sprintf(sData,"%0.4f",f1); g_dlg->GetDlgItem(IDC_EDIT2)->SetWindowText(sData);g_dlg->m_PressureCard.GetDlgItem(IDC_EDIT_X)->SetWindowTextA(sData); sprintf(sData,"%0.4f",f2); g_dlg->GetDlgItem(IDC_EDIT3)->SetWindowText(sData);g_dlg->m_PressureCard.GetDlgItem(IDC_EDIT_Y)->SetWindowTextA(sData); sprintf(sData,"%0.4f",f3); g_dlg->GetDlgItem(IDC_EDIT4)->SetWindowText(sData);g_dlg->m_PressureCard.GetDlgItem(IDC_EDIT_Z)->SetWindowTextA(sData); sprintf(sData,"%0.4f",f4); g_dlg->GetDlgItem(IDC_EDIT5)->SetWindowText(sData); sprintf(sData,"%0.4f",f5); g_dlg->GetDlgItem(IDC_EDIT6)->SetWindowText(sData); sprintf(sData,"%0.4f",f6); g_dlg->GetDlgItem(IDC_EDIT7)->SetWindowText(sData); sprintf(sData,"%0.4f",f7); g_dlg->GetDlgItem(IDC_EDIT8)->SetWindowText(sData); sprintf(sData,"%0.4f",f8); g_dlg->GetDlgItem(IDC_EDIT9)->SetWindowText(sData); sprintf(sData,"%0.4f",f9); g_dlg->GetDlgItem(IDC_EDIT10)->SetWindowText(sData); sprintf(sData,"%0.4f",f10); g_dlg->GetDlgItem(IDC_EDIT11)->SetWindowText(sData); sprintf(sData,"已连接\r\nX轴坐标:\t%0.5\tY轴坐标:%0.5f\tZ轴坐标:\t%0.5f\tR轴绝对位置:\t%0.5f\r\n底座角度:%0.5f\t大臂角度:%0.5f\t小臂角度:%0.5f\t舵机角度:\t%0.5f\r\n爪子角度:%0.5f",f1,f2,f3,f4,f5,f6,f7,f8,f10); g_dlg->GetDlgItem(IDC_EDIT_DOBOT_STATUS)->SetWindowText(sData); } void CDobotCheckDlg::OnBnClickedButton1() { // TODO: 在此添加控件通知处理程序代码 //g_wmd->ShowWindow(FALSE); //CWnd *wmd = GetDlgItem( IDC_BUTTON1 )->EnableWindow(FALSE); g_OperDobot->DobotStart(); } unsigned int __stdcall FlashingReading(void * param) { /* list<CAngle> pList; pList.clear(); CAngle p[] ={ {0, 36.000,18.000}, {0, 73.314,43.057}, {0, 36.000,18.000}, {0, 73.314,43.057}, {-45.0,73.314,43.057}, {-45.0,36.000,18.000}, {0, 36.000,18.000}}; for(int i=0;i<7;i++) { pList.push_back(p[i]); } for(list<CAngle>::iterator it = pList.begin();it!=pList.end();it++) { g_OperDobot->Move2AnglePoint(*it); Sleep(1000); } */ CDobotPoint p1 = g_OperDobot->GetCurrentAbsolutePosition(); int a = 100; int b = 100; CDobotPoint p2,p3,p4; p2.x = p1.x + a; p2.y = p1.y; p2.z = p1.z; p3.x = p2.x; p3.y = p2.y + b; p3.z = p2.x; p4.x = p3.x - a; p4.y = p3.y; p4.z = p3.z; //g_OperDobot->Move2AbsolutePosition(p1); //Sleep(1000); g_OperDobot->Move2AbsolutePosition(p2); //Sleep(1000); g_OperDobot->Move2AbsolutePosition(p3); //Sleep(1000); g_OperDobot->Move2AbsolutePosition(p4); //Sleep(1000); return 0; } void CDobotCheckDlg::OnBnClickedSend() { // TODO: 在此添加控件通知处理程序代码 UpdateData(true); // g_wmd->ShowWindow(SW_SHOW); DobotOrder m_NewDobotOrder; memset(&m_NewDobotOrder,0,sizeof(DobotOrder)); int iLoopT = 1; //m_CMDList.clear(); //stringToHEX(IntTostrHex(iLoopT,8),&m_NewDobotOrder.cState[0]); //m_CMDList.push_back(m_NewDobotOrder);//把循环次数带进去 m_f1 = 3; m_f2 = 0; m_f3 = 0;//165.756 + 100 -20;//31.400; m_f4 = 45;//101.178-100-50-20 +68.823;//36.686; m_f5 = 45;//55.981-20-20;//29.595; m_f6 = 0.0; m_f7 = 0; m_f8 = 0; m_f9 = 0.0; m_f10 = 0.0; m_NewDobotOrder.cHead[0] = 0xA5; m_NewDobotOrder.cEnd[0] = 0x5A; OperDobot::FloatToByte(m_f1,m_NewDobotOrder.cState); OperDobot::FloatToByte(m_f2,m_NewDobotOrder.cAxis); OperDobot::FloatToByte(m_f3,m_NewDobotOrder.cX); OperDobot::FloatToByte(m_f4,m_NewDobotOrder.cY); OperDobot::FloatToByte(m_f5,m_NewDobotOrder.cZ); OperDobot::FloatToByte(m_f6,m_NewDobotOrder.cRHead); OperDobot::FloatToByte(m_f7,m_NewDobotOrder.cIsGrip); OperDobot::FloatToByte(m_f8,m_NewDobotOrder.cStartVe); OperDobot::FloatToByte(m_f9,m_NewDobotOrder.cEndVel); OperDobot::FloatToByte(m_f10,m_NewDobotOrder.cMaxVe); //if(g_OperDobot != NULL) //g_OperDobot->AddOrderList(m_NewDobotOrder); } void CDobotCheckDlg::OnBnClickedOk() { // TODO: 在此添加控件通知处理程序代码 //CDialogEx::OnOK(); //g_bRunning = false; //CDobotPoint p = g_OperDobot->GetStartAbsolutePosition(); g_OperDobot->DobotStop(); GetDlgItem( IDC_BUTTON1 )->EnableWindow(TRUE); CRect rect1(0,0,20,20),rect2(22,0,42,20); COLORREF crColor; static bool b = true; if(b) crColor = RGB(255, 0, 0); else crColor = RGB(0, 0, 255); //PaintDobotPoint(rect1,crColor); //PaintDobotPoint(rect2,crColor); b = !b; } void CDobotCheckDlg::OnBnClickedButton2() { // TODO: 在此添加控件通知处理程序代码 /* g_OperDobot->Go2StartPoint(); CDobotPoint p = {0,0,0}; CDobotPoint p1; SetupPosition(400.0,300.0,10,8,3,p); //for(int z=0;z<3;z++) for(int y=0;y<6;y++) for(int x=0;x<8;x++) { p1 = g_PositionGroup[x][y][2]; PaintDobotPoint(p1,RGB(50,50,150)); } */ //g_OperDobot->PointMoving(2,((CButton *)GetDlgItem(IDC_RADIO1))->GetCheck()); //AfxBeginThread(CheckThread, (LPVOID)this); CString strCardNo; unsigned long fee0; BOOL b = g_pCardOP->checkcard(fee0,strCardNo); CString strMsg; strMsg.Format("余额:%ld",fee0); MessageBox(strMsg); } void CDobotCheckDlg::OnBnClickedButton3() { // TODO: 在此添加控件通知处理程序代码 /* unsigned int nThreadAddr; HANDLE hSession = (HANDLE)_beginthreadex(0, 0, FlashingReading, this, 0, &nThreadAddr); if(hSession) CloseHandle( hSession ); */ //g_OperDobot->PointMoving(0,((CButton *)GetDlgItem(IDC_RADIO1))->GetCheck()); g_pCardOP->Consume(); } void CDobotCheckDlg::OnTcnSelchangeTab1(NMHDR *pNMHDR, LRESULT *pResult) { // TODO: 在此添加控件通知处理程序代码 int CurSel = m_TabCtrl.GetCurSel(); switch(CurSel) { case 0: m_PressureCard.ShowWindow(TRUE); m_FlashCard.ShowWindow(FALSE); m_ScandCard.ShowWindow(FALSE); m_ScandCard.KillTimer(1); break; case 1: m_PressureCard.ShowWindow(FALSE); m_FlashCard.ShowWindow(TRUE); m_ScandCard.ShowWindow(FALSE); m_ScandCard.KillTimer(1); break; case 2: m_PressureCard.ShowWindow(FALSE); m_FlashCard.ShowWindow(FALSE); m_ScandCard.ShowWindow(TRUE); m_ScandCard.SetTimer(1,300,NULL); default: break; } *pResult = 0; } BOOL CDobotCheckDlg::PreTranslateMessage(MSG* pMsg) { // TODO: 在此添加专用代码和/或调用基类 if(pMsg->message == WM_LBUTTONDOWN) { if(pMsg->hwnd == GetDlgItem(IDC_BUTTON_LEFT)->m_hWnd) { // 按钮按下 if(((CButton *)GetDlgItem(IDC_RADIO1))->GetCheck() || ((CButton *)GetDlgItem(IDC_RADIO2))->GetCheck()) g_OperDobot->PointMoving(2,TRUE); else g_OperDobot->PointMoving(4,FALSE); } if(pMsg->hwnd == GetDlgItem(IDC_BUTTON_RIGHT)->m_hWnd) { if(((CButton *)GetDlgItem(IDC_RADIO1))->GetCheck() || ((CButton *)GetDlgItem(IDC_RADIO2))->GetCheck()) g_OperDobot->PointMoving(1,TRUE); else g_OperDobot->PointMoving(3,FALSE); } if(pMsg->hwnd == GetDlgItem(IDC_BUTTON_UP)->m_hWnd) { if(((CButton *)GetDlgItem(IDC_RADIO1))->GetCheck()) g_OperDobot->PointMoving(4,TRUE); else if(((CButton *)GetDlgItem(IDC_RADIO2))->GetCheck()) g_OperDobot->PointMoving(6,TRUE); else g_OperDobot->PointMoving(5,FALSE); } if(pMsg->hwnd == GetDlgItem(IDC_BUTTON_DOWN)->m_hWnd) { if(((CButton *)GetDlgItem(IDC_RADIO1))->GetCheck()) g_OperDobot->PointMoving(3,TRUE); else if(((CButton *)GetDlgItem(IDC_RADIO2))->GetCheck()) g_OperDobot->PointMoving(5,TRUE); else g_OperDobot->PointMoving(6,FALSE); } if(pMsg->hwnd == GetDlgItem(IDC_BUTTON_BACK)->m_hWnd) { g_OperDobot->PointMoving(2,FALSE); } if(pMsg->hwnd == GetDlgItem(IDC_BUTTON_FORWARD)->m_hWnd) { g_OperDobot->PointMoving(1,FALSE); } } else if(pMsg->message == WM_LBUTTONUP) { if(pMsg->hwnd == GetDlgItem(IDC_BUTTON_LEFT)->m_hWnd) { g_OperDobot->PointMoving(0,((CButton *)GetDlgItem(IDC_RADIO1))->GetCheck());// 按钮弹起 //m_PressureCardNew.m_PressureCardDlg->OnBnClickedButtonRefresh(); } if(pMsg->hwnd == GetDlgItem(IDC_BUTTON_RIGHT)->m_hWnd) { g_OperDobot->PointMoving(0,((CButton *)GetDlgItem(IDC_RADIO1))->GetCheck()); //m_PressureCardNew.m_PressureCardDlg->OnBnClickedButtonRefresh(); } if(pMsg->hwnd == GetDlgItem(IDC_BUTTON_UP)->m_hWnd) { g_OperDobot->PointMoving(0,((CButton *)GetDlgItem(IDC_RADIO1))->GetCheck()); //m_PressureCardNew.m_PressureCardDlg->OnBnClickedButtonRefresh(); } if(pMsg->hwnd == GetDlgItem(IDC_BUTTON_DOWN)->m_hWnd) { g_OperDobot->PointMoving(0,((CButton *)GetDlgItem(IDC_RADIO1))->GetCheck()); //m_PressureCardNew.m_PressureCardDlg->OnBnClickedButtonRefresh(); } if(pMsg->hwnd == GetDlgItem(IDC_BUTTON_BACK)->m_hWnd) { g_OperDobot->PointMoving(0,FALSE); //m_PressureCardNew.m_PressureCardDlg->OnBnClickedButtonRefresh(); } if(pMsg->hwnd == GetDlgItem(IDC_BUTTON_FORWARD)->m_hWnd) { g_OperDobot->PointMoving(0,FALSE); //m_PressureCardNew.m_PressureCardDlg->OnBnClickedButtonRefresh(); } } return CDialogEx::PreTranslateMessage(pMsg); } void CDobotCheckDlg::OnBnClickedButtonMark() { // TODO: 在此添加控件通知处理程序代码 /* g_OperDobot->theDobotStatusCritical.Lock(); g_OperDobot->m_DobotStartStatus = g_OperDobot->m_DobotAndWinStatus.m_DS; g_OperDobot->theDobotStatusCritical.Unlock(); GetDlgItem(IDC_BUTTON_MARK)->EnableWindow(FALSE); */ ((OperDobot2 *)g_OperDobot)->GoHome(); }
0ec1a62a6390c8f2eeed6c5069ec1ae5c170d77d
7ff50831c7f3609079fef9a556fd52280d6fcc3e
/grades/SourceFiles/arrayaverages.cpp
664828d7d9f73a042bc46465e3d2c3d0ab40eb11
[]
no_license
SnowyFork/business-report
3395125cf7eab0ad55596a8c1079f4e56095781d
a9d464122f23466240dd1c34d74095a6961e044e
refs/heads/master
2020-03-31T02:49:35.121123
2015-06-11T19:03:59
2015-06-11T19:03:59
30,886,062
0
0
null
null
null
null
UTF-8
C++
false
false
1,419
cpp
arrayaverages.cpp
//By Chauke A. #include <iostream> #include <string> #include <iomanip> using namespace std; double rank1(double grades[], double total2, int a, const int fix1); double higher (double grades[], int c, const int fix1); int main () { const int fix1=14; double grades[fix1] = {90, 95, 60, 81, 100, 30, 57, 90, 92, 68, 79, 87, 95, 74}; double total1=0, highgrade, deevii[fix1]={0}, fix; int a=0, b=0, c=0; cout << "welcome to the grade average calculator! \n"; cout << "the grades are "; for(b=0; b < fix1; b++) { cout << grades[b] << setw(4); } total1 = rank1(grades, total1, a, fix1); cout << "\n\nThe grade average is " << total1 << endl; highgrade = higher(grades, c, fix1); cout << "the highest grade is " << highgrade << endl; cout << "here is the standard deviation: \n"; cout << "grades " << setw(15) << " deviation " << endl; for(b=0; b < fix1; b++) { deevii[b] = grades[b] - total1; cout << setw(3) << grades[b] << setw(18) << deevii[b] << endl; } cin >> fix; return 0; } //get the average double rank1(double grades[], double total2, int a, const int fix1) { for(a=0; a < fix1; a++) { total2 = total2 + grades[a]; } total2 = total2 / fix1; return total2; } //find highest grade double higher (double grades[], int c, const int fix1) { double maxed = grades[0]; for(c=0; c < fix1; c++) { if(grades[c] > maxed) { maxed = grades[c]; } } return maxed; }
d25ad43564c55349582b9cfa61f33f85c1251c5b
df881d555c3631255ba6bdd86f9a407435d4ef2e
/cmlib/image/Algorithm.h
7dc9dfbc39ff3a1a83fc843576d6ca30f0494ea9
[ "BSL-1.0" ]
permissive
github-bing/cmlib
19f49b96fdcc29928336d406a8b75b226831333b
b301ef4b8c1acd59a23ea379ee95b149165c3ba5
refs/heads/master
2020-06-18T13:39:14.345590
2012-06-27T06:13:20
2012-06-27T06:13:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
620
h
Algorithm.h
/* Copyright NTU CSIE CMLAB 2005 - 2012 Distributed under the Boost Software License, Version 1.0. (See accompanying file ../../LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ #ifndef CMLIB_IMAGE_ALGORITHM #define CMLIB_IMAGE_ALGORITHM namespace cmlib { namespace image{ template<typename InputItor1, typename InputItor2, typename Op> InputItor1 inplace_transform(InputItor1 begin1, InputItor1 end1, InputItor2 begin2, Op op) { for (; begin1 != end1; ++begin1, ++begin2) op(*begin1, *begin2); return begin1; } } // namespace image } // namespace cmlib #endif // CMLIB_IMAGE_ALGORITHM
c7795229bb29d0da3d6b65f8f57144ede3e8b975
f713035338506bb6945555fef5fc45e02fe22fff
/BERT/src/bert_layer/dnnl_ops.hpp
5fbbcd7fb4731677a01a28ddc887786d2522000b
[ "Apache-2.0" ]
permissive
intel/light-model-transformer
504fab68e9a9390c5d86383be15bc05a2041ca0e
8042c79ed9af247d876455bb2184224346d2ebf5
refs/heads/main
2023-09-02T13:25:53.276727
2023-05-25T14:54:27
2023-05-25T15:03:23
142,940,716
69
18
Apache-2.0
2023-05-16T08:12:09
2018-07-31T00:10:39
Python
UTF-8
C++
false
false
19,812
hpp
dnnl_ops.hpp
// Copyright (C) 2022 Intel Corporation // SPDX-License-Identifier: Apache-2.0 // #ifndef __DNNL_OPS__ #define __DNNL_OPS__ #include "dnnl_common.h" #include "dnnl_attr.hpp" #include "dnnl_data.hpp" #include <string> namespace dnnl_wrappers { /////////////////////////////////////////////////////////////////////////////////////////////////// // MatMul class MatMul { public: MatMul(const dnnl::engine& eng, const dnnl::memory::desc& src_md, const dnnl::memory::desc& weights_md, const dnnl::memory::desc& bias_md, const dnnl::memory::desc& dst_md, const BuildAttrs& attr) : attrs_(attr) , prim_{dnnl::matmul::primitive_desc{eng, src_md, weights_md, bias_md, dst_md, attrs_.GetAttrs()}} { } MatMul(const dnnl::primitive& prim) : prim_(prim) {} void Compute(dnnl::stream& stm, DataSource& src, DataSource& weights, DataSource& bias, dnnl::memory& dst_memory, dnnl::memory scratchpad = {}) { const auto prim_desc = PrimDesc(); assert(prim_desc.dst_desc() == dst_memory.get_desc()); auto src_memory = src.GetData(stm, prim_desc.src_desc()); auto weights_memory = weights.GetData(stm, prim_desc.weights_desc()); auto bias_memory = bias.GetData(stm, prim_desc.bias_desc()); auto args = attrs_.GetArgs(); args.insert({ { DNNL_ARG_SRC, src_memory }, { DNNL_ARG_WEIGHTS, weights_memory }, { DNNL_ARG_BIAS, bias_memory }, { DNNL_ARG_DST, dst_memory }, { DNNL_ARG_SCRATCHPAD, scratchpad } }); prim_.execute(stm, args); // FIXME(rfsaliev) have to wait due to lifetime of x_memory variables stm.wait(); } void ComputeWithPostOps(dnnl::stream& stm, DataSource& src, DataSource& weights, std::unordered_map<int, std::reference_wrapper<DataSource>>& post_op_data, dnnl::memory& dst_memory, dnnl::memory scratchpad = {}) { const auto prim_desc = PrimDesc(); assert(prim_desc.dst_desc() == dst_memory.get_desc()); auto src_memory = src.GetData(stm, prim_desc.src_desc()); auto weights_memory = weights.GetData(stm, prim_desc.weights_desc()); auto args = attrs_.GetArgs(); args.insert({ {DNNL_ARG_SRC, src_memory}, {DNNL_ARG_WEIGHTS, weights_memory}, {DNNL_ARG_DST, dst_memory}, {DNNL_ARG_SCRATCHPAD, scratchpad} }); // (krzychut) // Due to https://github.com/oneapi-src/oneDNN/issues/1337, // we have to get the attrs and post_ops in separate lines to ensure // proper lifetime of the attr object. auto attr = prim_desc.get_primitive_attr(); auto post_ops = attr.get_post_ops(); // Do NOT chain get_primitive_attr().get_post_ops() like this until the above issue is fixed: // auto post_ops = prim_desc.get_primitive_attr().get_post_ops(); for(auto& item : post_op_data) { auto idx = item.first; auto& data_source = item.second.get(); dnnl::algorithm alg; dnnl::memory::desc desc; post_ops.get_params_binary(idx, alg, desc); auto data = data_source.GetData(stm, desc); args.emplace(DNNL_ARG_ATTR_MULTIPLE_POST_OP(idx) | DNNL_ARG_SRC_1, data); } prim_.execute(stm, args); // FIXME(rfsaliev) have to wait due to lifetime of x_memory variables stm.wait(); } dnnl::matmul::primitive_desc PrimDesc() const { auto c_desc = prim_.get_primitive_desc(); return dnnl::matmul::primitive_desc{const_cast<dnnl_primitive_desc_t>(c_desc)}; } const dnnl::primitive& Prim() const { return prim_; } private: BuildAttrs attrs_; dnnl::primitive prim_; }; struct MatMulDims { MatMulDims(int batch, int m, int n, int k, bool bias_2d = false) : src_tz{batch, m, k} , weights_tz{1, k, n} , bias_tz{1, bias_2d ? m : 1, n} , dst_tz{batch, m, n} {} dnnl::memory::dims src_tz; dnnl::memory::dims weights_tz; dnnl::memory::dims bias_tz; dnnl::memory::dims dst_tz; }; inline MatMul MakeMatMul(const dnnl::engine& eng, int batch, int m, int n, int k, dnnl::memory::data_type src_dt, dnnl::memory::data_type weights_dt, dnnl::memory::data_type bias_dt, dnnl::memory::data_type dst_dt, const BuildAttrs& attr = {}) { const MatMulDims dims{batch, m, n, k}; // plain memory format can be defined using empty strides argument dnnl::memory::dims plain{}; using fmt = dnnl::memory::format_tag; const auto src_md = dnnl::memory::desc(dims.src_tz , src_dt, plain); const auto weights_md = dnnl::memory::desc(dims.weights_tz, weights_dt, fmt::any); const auto bias_md = dnnl::memory::desc(dims.bias_tz, bias_dt, plain); const auto dst_md = dnnl::memory::desc(dims.dst_tz, dst_dt, plain); return MatMul{eng, src_md, weights_md, bias_md, dst_md, attr}; } template <typename T_src, typename T_wei, typename T_bias, typename T_dst> MatMul MakeMatMul(const dnnl::engine& eng, int batch, int m, int n, int k, const BuildAttrs& attr = {}) { const auto src_dt = DnnlDataType<T_src>::value; const auto weights_dt = DnnlDataType<T_wei>::value; const auto bias_dt = DnnlDataType<T_bias>::value; const auto dst_dt = DnnlDataType<T_dst>::value; return MakeMatMul(eng, batch, m, n, k, src_dt, weights_dt, bias_dt, dst_dt, attr); } /////////////////////////////////////////////////////////////////////////////////////////////////// // InnerProduct template <class PrimType> PrimType BuildInnerProductPrim( const dnnl::engine& eng, const dnnl::memory::desc& src_md, const dnnl::memory::desc& weights_md, const dnnl::memory::desc& bias_md, const dnnl::memory::desc& dst_md, const dnnl::primitive_attr& attr); template <> dnnl::inner_product_forward BuildInnerProductPrim<dnnl::inner_product_forward>( const dnnl::engine& eng, const dnnl::memory::desc& src_md, const dnnl::memory::desc& weights_md, const dnnl::memory::desc& bias_md, const dnnl::memory::desc& dst_md, const dnnl::primitive_attr& attr) { return dnnl::inner_product_forward{ dnnl::inner_product_forward::primitive_desc{ eng, dnnl::prop_kind::forward_inference, src_md, weights_md, bias_md, dst_md, attr }}; } template <> dnnl::convolution_forward BuildInnerProductPrim<dnnl::convolution_forward>( const dnnl::engine& eng, const dnnl::memory::desc& src_md, const dnnl::memory::desc& weights_md, const dnnl::memory::desc& bias_md, const dnnl::memory::desc& dst_md, const dnnl::primitive_attr& attr) { return dnnl::convolution_forward{ dnnl::convolution_forward::primitive_desc{ eng, dnnl::prop_kind::forward_inference, dnnl::algorithm::convolution_direct, src_md, weights_md, bias_md, dst_md, {1,1}, {0,0}, {0,0}, attr }}; } template<class PrimType> constexpr bool AsymQuantizationSupported(); template<> constexpr bool AsymQuantizationSupported<dnnl::inner_product_forward>(){ return false; } template<> constexpr bool AsymQuantizationSupported<dnnl::convolution_forward>(){ return true; } template <class PrimType> class InnerProduct { public: InnerProduct(const dnnl::engine& eng, const dnnl::memory::desc& src_md, const dnnl::memory::desc& weights_md, const dnnl::memory::desc& bias_md, const dnnl::memory::desc& dst_md, const BuildAttrs& attr) : attrs_{attr} , prim_{BuildInnerProductPrim<PrimType>(eng, src_md, weights_md, bias_md, dst_md, attrs_.GetAttrs())} { } InnerProduct(const dnnl::primitive& prim) : prim_(prim) {} void Compute(dnnl::stream& stm, DataSource& src, DataSource& weights, DataSource& bias, dnnl::memory& dst_memory, dnnl::memory scratchpad = {}) { const auto prim_desc = PrimDesc(); assert(prim_desc.dst_desc() == dst_memory.get_desc()); auto src_memory = src.GetData(stm, prim_desc.src_desc()); auto weights_memory = weights.GetData(stm, prim_desc.weights_desc()); auto bias_memory = bias.GetData(stm, prim_desc.bias_desc()); auto args = attrs_.GetArgs(); args.insert({ { DNNL_ARG_SRC, src_memory }, { DNNL_ARG_WEIGHTS, weights_memory }, { DNNL_ARG_BIAS, bias_memory }, { DNNL_ARG_DST, dst_memory }, { DNNL_ARG_SCRATCHPAD, scratchpad } }); prim_.execute(stm, args); // FIXME(rfsaliev) have to wait due to lifetime of x_memory variables stm.wait(); } void ComputeWithPostOps(dnnl::stream& stm, DataSource& src, DataSource& weights, std::unordered_map<int, std::reference_wrapper<DataSource>>& post_op_data, dnnl::memory& dst_memory, dnnl::memory scratchpad = {}) { const auto prim_desc = PrimDesc(); assert(prim_desc.dst_desc() == dst_memory.get_desc()); auto src_memory = src.GetData(stm, prim_desc.src_desc()); auto weights_memory = weights.GetData(stm, prim_desc.weights_desc()); auto args = attrs_.GetArgs(); args.insert({ {DNNL_ARG_SRC, src_memory}, {DNNL_ARG_WEIGHTS, weights_memory}, {DNNL_ARG_DST, dst_memory}, {DNNL_ARG_SCRATCHPAD, scratchpad} }); // (krzychut) // Due to https://github.com/oneapi-src/oneDNN/issues/1337, // we have to get the attrs and post_ops in separate lines to ensure // proper lifetime of the attr object. auto attr = prim_desc.get_primitive_attr(); auto post_ops = attr.get_post_ops(); // Do NOT chain get_primitive_attr().get_post_ops() like this until the above issue is fixed: // auto post_ops = prim_desc.get_primitive_attr().get_post_ops(); for(auto& item : post_op_data) { auto idx = item.first; auto& data_source = item.second.get(); dnnl::algorithm alg; dnnl::memory::desc desc; post_ops.get_params_binary(idx, alg, desc); auto data = data_source.GetData(stm, desc); args.emplace(DNNL_ARG_ATTR_MULTIPLE_POST_OP(idx) | DNNL_ARG_SRC_1, data); } prim_.execute(stm, args); // FIXME(rfsaliev) have to wait due to lifetime of x_memory variables stm.wait(); } typename PrimType::primitive_desc PrimDesc() const { auto c_desc = prim_.get_primitive_desc(); return typename PrimType::primitive_desc{const_cast<dnnl_primitive_desc_t>(c_desc)}; } const dnnl::primitive& Prim() const { return prim_; } private: BuildAttrs attrs_; dnnl::primitive prim_; }; struct InnerProductDims { dnnl::memory::dims src_tz; dnnl::memory::dims weights_tz; dnnl::memory::dims bias_tz; dnnl::memory::dims dst_tz; dnnl::memory::format_tag src_fmt; dnnl::memory::format_tag weights_fmt; dnnl::memory::format_tag bias_fmt; dnnl::memory::format_tag dst_fmt; }; template <class PrimType> InnerProductDims MakeInnerProductDims(dnnl::memory::dim batch, int m, int n, int ); template <> InnerProductDims MakeInnerProductDims<dnnl::inner_product_forward>(dnnl::memory::dim batch, int m, int n, int k) { return { {batch * m, k}, // src_tz {n, k}, // weights_tz {n}, // bias_tz {batch * m, n}, // dst_tz dnnl::memory::format_tag::nc, // src_fmt dnnl::memory::format_tag::any, // weights_fmt dnnl::memory::format_tag::any, // bias_fmt dnnl::memory::format_tag::nc // dst_fmt }; } template <> InnerProductDims MakeInnerProductDims<dnnl::convolution_forward>(dnnl::memory::dim batch, int m, int n, int k) { return { {1, k, batch * m}, // src_tz {n, k, 1}, // weights_tz {n}, // bias_tz {1, n, batch * m}, // dst_tz dnnl::memory::format_tag::nwc, // src_fmt dnnl::memory::format_tag::any, // weights_fmt dnnl::memory::format_tag::any, // bias_fmt dnnl::memory::format_tag::nwc // dst_fmt }; } #define PERMUTE_ACBD {0,2,1,3} #define PERMUTE_ADBC {0,3,1,2} #define PERMUTE_NHWC PERMUTE_ACBD #define PERMUTE_ACB {0,2,1} #define PERMUTE_NWC PERMUTE_ACB inline dnnl::memory::desc ConvertIPDataDims(const dnnl::memory::desc& md, size_t dims_num) { // to be synchronized with MakeInnerProductDims<dnnl::convolution_forward>() const auto src_dims = md.get_dims(); const auto src_dims_num = src_dims.size(); if (src_dims_num == dims_num) { return md; } else if (src_dims_num == 4 && dims_num == 2) { return md.reshape({src_dims[1], src_dims[2]}).permute_axes({1,0}); } else if (src_dims_num == 2 && dims_num == 4) { return md.reshape({1, src_dims[0], src_dims[1], 1}).permute_axes(PERMUTE_NHWC); } else if (src_dims_num == 3 && dims_num == 2) { return md.reshape({src_dims[1], src_dims[2]}).permute_axes({1,0}); } else if (src_dims_num == 2 && dims_num == 3) { return md.reshape({1, src_dims[0], src_dims[1]}).permute_axes(PERMUTE_NWC); } throw std::runtime_error("Unsupported dimensions conversion from " + std::to_string(src_dims_num) + " to " + std::to_string(dims_num)); } template <class PrimType = dnnl::inner_product_forward> InnerProduct<PrimType> MakeInnerProduct(const dnnl::engine& eng, int batch, int m, int n, int k, dnnl::memory::data_type src_dt, dnnl::memory::data_type weights_dt, dnnl::memory::data_type bias_dt, dnnl::memory::data_type dst_dt, const BuildAttrs& attr = {}) { const auto dims = MakeInnerProductDims<PrimType>(batch, m, n, k); const auto src_md = dnnl::memory::desc(dims.src_tz , src_dt, dims.src_fmt); const auto weights_md = dnnl::memory::desc(dims.weights_tz, weights_dt, dims.weights_fmt); const auto bias_md = dnnl::memory::desc(dims.bias_tz, bias_dt, dims.bias_fmt); const auto dst_md = dnnl::memory::desc(dims.dst_tz, dst_dt, dims.dst_fmt); return InnerProduct<PrimType>{eng, src_md, weights_md, bias_md, dst_md, attr}; } /////////////////////////////////////////////////////////////////////////////////////////////////// // Softmax class SoftMax { public: SoftMax(const dnnl::engine& eng, const dnnl::memory::desc& data_md, int axis, const BuildAttrs& attr = {}) : attrs_{attr} , prim_{ dnnl::softmax_forward::primitive_desc{ eng, dnnl::prop_kind::forward_inference, dnnl::algorithm::softmax_accurate, data_md, data_md, axis, attrs_.GetAttrs() }} {} SoftMax(const dnnl::primitive& prim) : prim_(prim) {} void Compute(dnnl::stream& stm, DataSource& src, dnnl::memory& dst_memory) { const auto prim_desc = PrimDesc(); assert(prim_desc.dst_desc() == dst_memory.get_desc()); auto src_memory = src.GetData(stm, prim_desc.src_desc()); auto args = attrs_.GetArgs(); args.insert({ { DNNL_ARG_SRC, src_memory }, { DNNL_ARG_DST, dst_memory } }); prim_.execute(stm, args); // FIXME(rfsaliev) have to wait due to lifetime of x_memory variables stm.wait(); } dnnl::softmax_forward::primitive_desc PrimDesc() const { auto c_desc = prim_.get_primitive_desc(); return dnnl::softmax_forward::primitive_desc{const_cast<dnnl_primitive_desc_t>(c_desc)}; } const dnnl::primitive& Prim() const { return prim_; } private: BuildAttrs attrs_; dnnl::primitive prim_; }; inline SoftMax MakeSoftmax(const dnnl::engine& eng, int batch, int m, int n, dnnl::memory::data_type src_dt, int axis, const BuildAttrs& attr = {}) { const dnnl::memory::dims data_tz = {batch, m, n}; const auto data_md = dnnl::memory::desc(data_tz, src_dt, dnnl::memory::dims{}); return SoftMax{eng, data_md, axis, attr}; } template <typename T_data> SoftMax MakeSoftmax(const dnnl::engine& eng, int batch, int m, int n, int axis, const BuildAttrs& attr = {}) { const auto data_dt = DnnlDataType<T_data>::value; return MakeSoftmax(eng, batch, m, n, data_dt, axis, attr); } /////////////////////////////////////////////////////////////////////////////////////////////////// // LayerNorm class LayerNorm { public: LayerNorm(const dnnl::engine& eng, const dnnl::memory::desc& data_md, float epsilon, dnnl::normalization_flags flags = dnnl::normalization_flags::use_scale | dnnl::normalization_flags::use_shift, const BuildAttrs& attr = {}) : attrs_{attr} , prim_{dnnl::layer_normalization_forward::primitive_desc{ eng, dnnl::prop_kind::forward_inference, data_md, data_md, epsilon, flags, attrs_.GetAttrs()}} { } LayerNorm(const dnnl::primitive& prim) : prim_(prim) {} void Compute(dnnl::stream& stm, DataSource& src, DataSource& scale, DataSource& shift, dnnl::memory& dst_memory) { const auto prim_desc = PrimDesc(); assert(prim_desc.dst_desc() == dst_memory.get_desc()); const auto src_md = prim_desc.src_desc(); auto src_memory = src.GetData(stm, src_md); const auto scaleshift_md = dnnl::memory::desc{{1, src_md.get_dims().at(1)}, dnnl::memory::data_type::f32, dnnl::memory::dims{}}; auto scale_memory = scale.GetData(stm, scaleshift_md); auto shift_memory = shift.GetData(stm, scaleshift_md); auto args = attrs_.GetArgs(); args.insert({ { DNNL_ARG_SRC, src_memory }, { DNNL_ARG_SCALE, scale_memory }, { DNNL_ARG_SHIFT, shift_memory }, { DNNL_ARG_DST, dst_memory } }); prim_.execute(stm, args); // FIXME(rfsaliev) have to wait due to lifetime of x_memory variables stm.wait(); } dnnl::layer_normalization_forward::primitive_desc PrimDesc() const { auto c_desc = prim_.get_primitive_desc(); return dnnl::layer_normalization_forward::primitive_desc{const_cast<dnnl_primitive_desc_t>(c_desc)}; } const dnnl::primitive& Prim() const { return prim_; } private: BuildAttrs attrs_; dnnl::primitive prim_; }; inline LayerNorm MakeLayerNorm(const dnnl::engine& eng, int batch, int m, int n, dnnl::memory::data_type data_dt, float epsilon, dnnl::normalization_flags flags = dnnl::normalization_flags::use_scale | dnnl::normalization_flags::use_shift, const BuildAttrs& attr = {}) { const dnnl::memory::dims data_tz = {batch, m, n}; const auto data_md = dnnl::memory::desc(data_tz, data_dt, dnnl::memory::dims{}); return LayerNorm{eng, data_md, epsilon, flags, attr}; } template <typename T_data> LayerNorm MakeLayerNorm(const dnnl::engine& eng, int batch, int m, int n, float epsilon, dnnl::normalization_flags flags = dnnl::normalization_flags::use_scale | dnnl::normalization_flags::use_shift, const BuildAttrs& attr = {}) { const auto data_dt = DnnlDataType<T_data>::value; return MakeLayerNorm(eng, batch, m, n, data_dt, epsilon, flags, attr); } } // namespace dnnl_wrappers #endif //__DNNL_OPS__
bc7824023aa464a406c5dc6dbdd0f7256d2679af
f00c5e9cba9f530374604d23c13ba481c87c3402
/src/inventory/InventoryCraftResult.h
15ab1380786752125be2d7b94809396b385a149f
[]
no_license
NeatMonster/Serveur
1fca508979a850efa6828a286338e2554137c402
c37250e9e6fbbb3cd0d458f620b57c713c39ce2b
refs/heads/master
2021-01-18T14:59:00.362375
2015-02-18T12:32:04
2015-02-18T12:32:04
27,356,132
0
1
null
null
null
null
UTF-8
C++
false
false
484
h
InventoryCraftResult.h
#ifndef __Serveur__InventoryCraftResult__ #define __Serveur__InventoryCraftResult__ #include "Inventory.h" class InventoryCraftResult : public Inventory { public: std::shared_ptr<ItemStack> getStack(short_t); void setStack(short_t, std::shared_ptr<ItemStack>); std::shared_ptr<ItemStack> decrStackSize(short_t, count_t); count_t getInventoryStackLimit(); private: std::shared_ptr<ItemStack> stack; }; #endif /* defined(__Serveur__InventoryCraftResult__) */
6868b7fd3bbd40db635dcc7da26548e2d63a29e5
67576488ece4f098d4abbc469a3838a75d926e67
/NumericalAnalysis/BisectionMethod.cpp
53d67c3c5afcd9ca0a24fddedcc8297439756ee5
[]
no_license
minaminao/algorithms
374ff62abdcaa718033c04e8a0b165e4e5d7c628
23595613c9fcd65eb2b84ba5bf9eb0c27ffafc18
refs/heads/master
2022-11-22T00:29:33.364688
2022-11-04T11:08:08
2022-11-04T11:08:08
172,819,078
11
2
null
2020-11-04T11:22:37
2019-02-27T01:23:15
C++
UTF-8
C++
false
false
418
cpp
BisectionMethod.cpp
#include "NumericalAnalysis.cpp" // 二分法 // 方程式の求根アルゴリズム // f(l) < 0 かつ 0 < f(r) の場合に限る double bisectionMethod(double l, double r, function<double(double)> f) { double yl = f(l), yr = f(r); if (yl > yr)swap(l, r); assert((yl - EPS) * (yr + EPS) <= 0); for (int i = 0; i < 200; i++) { double m = (l + r) / 2; if (f(m) > 0) r = m; else l = m; } return l; }
9dfc51bc183e009821a2386150d44b883cf25059
f77bc10199babaeacf09cae45de40563cbf6824f
/BitViewerIni.cpp
8441ee1ea6f30fd1b890f49c7d34c84721635eb3
[ "MIT" ]
permissive
d-wizard/BitViewer
a9503afd03feeed5bfc763ff79dad0297f4b496f
a763bb8e369a27994d07c5703380bfc5958cf3ca
refs/heads/master
2023-07-15T11:34:36.492812
2023-07-05T00:15:41
2023-07-05T00:15:41
158,479,586
1
0
null
null
null
null
UTF-8
C++
false
false
17,077
cpp
BitViewerIni.cpp
/* Copyright 2012 - 2018, 2021, 2023 Dan Williams. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy of this * software and associated documentation files (the "Software"), to deal in the Software * without restriction, including without limitation the rights to use, copy, modify, merge, * publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons * to whom the Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all copies or * substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR * PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE * FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ #include <QMainWindow> #include <vector> #include <QModelIndex> #include <QLineEdit> #include <QSpinBox> #include <QCheckBox> #include <QPlainTextEdit> #include "DataTypes.h" #include "IOUtilities.h" #include <QStringListModel> #include <stdio.h> #include <iostream> #include <sstream> #include "dString.h" #include "FileSystemOperations.h" #include "BitViewerIni.h" static const std::string INI_TAB_ACTIVE_INDEX = "ActiveTabIndex"; static const std::string INI_TAB_DELIM = "GuiTab"; static const std::string INI_TAB_NUM = "TabNumber"; static const std::string INI_TAB_NAME = "TabName"; static const std::string INI_TAB_INPUT = "TabInput"; static const std::string INI_TAB_DELIMITER = "TabDelimiter"; static const std::string INI_TAB_IN_BASE = "TabInBase"; static const std::string INI_TAB_IN_BITS_PER = "TabInBitsPer"; static const std::string INI_TAB_IN_BIT_SHIFT = "TabInBitShift"; static const std::string INI_TAB_OUT_BASE = "TabOutBase"; static const std::string INI_TAB_OUT_BITS_PER = "TabOutBitsPer"; static const std::string INI_TAB_OUT_BIT_SHIFT = "TabOutBitShift"; static const std::string INI_TAB_NUM_ROWS = "TabNumRows"; static const std::string INI_TAB_IN_BASE64 = "TabInBase64"; static const std::string INI_TAB_IN_ASCII = "TabInAscii"; static const std::string INI_TAB_IN_SIGNED = "TabInSigned"; static const std::string INI_TAB_IN_BYTE_REV = "TabInByteRev"; static const std::string INI_TAB_IN_BIT_REV = "TabInBitRev"; static const std::string INI_TAB_OUT_BASE64 = "TabOutBase64"; static const std::string INI_TAB_OUT_ASCII = "TabOutAscii"; static const std::string INI_TAB_OUT_SIGNED = "TabOutSigned"; static const std::string INI_TAB_OUT_BYTE_REV = "TabOutByteRev"; static const std::string INI_TAB_OUT_BIT_REV = "TabOutBitRev"; static const std::string INI_TAB_BIT_INVERT = "TabBitInvert"; static const std::string INI_TAB_C_ARRAY = "TabcArray"; static const std::string INI_TAB_AUTO_DELIM = "TabAutoDelim"; static const std::string INI_TAB_LINE_END_DELIM = "TabLineEndDelim"; static const std::string INI_START_OPEN = "{"; static const std::string INI_START_CLOSE = "}="; static const std::string INI_END_OPEN = "{/"; static const std::string INI_END_CLOSE = "}\r\n"; static std::string writeIniInt(const std::string& t_delim, const int i_val) { std::stringstream ss(""); ss << INI_START_OPEN << t_delim << INI_START_CLOSE << i_val << INI_END_OPEN << t_delim << INI_END_CLOSE; return ss.str(); } static std::string writeIniStr(const std::string& t_delim, const std::string& t_val) { std::stringstream ss(""); ss << INI_START_OPEN << t_delim << INI_START_CLOSE << t_val << INI_END_OPEN << t_delim << INI_END_CLOSE; return ss.str(); } static std::string writeIniBool(const std::string& t_delim, const bool b_val) { std::stringstream ss(""); int i_val = b_val ? 1 : 0; ss << INI_START_OPEN << t_delim << INI_START_CLOSE << i_val << INI_END_OPEN << t_delim << INI_END_CLOSE; return ss.str(); } static void addOrOverrideToIni(std::string& t_iniText, const std::string& curIniText, const std::string& newIniText) { if(dString::InStr(t_iniText, curIniText) >= 0) { // There is already an entry. Replace it with the new text. t_iniText = dString::Replace(t_iniText, curIniText, newIniText); } else { // No entry exists, add to the beginning. t_iniText = newIniText + t_iniText; } } void writeIniInt(const std::string& t_delim, const int i_val, std::string& t_iniText) { // Add / override entry in ini. auto origVal = readIniInt(t_delim, t_iniText); auto curIniText = writeIniInt(t_delim, origVal); auto newIniText = writeIniInt(t_delim, i_val); addOrOverrideToIni(t_iniText, curIniText, newIniText); } void writeIniStr(const std::string& t_delim, const std::string& t_val, std::string& t_iniText) { // Add / override entry in ini. auto origVal = readIniStr(t_delim, t_iniText); auto curIniText = writeIniStr(t_delim, origVal); auto newIniText = writeIniStr(t_delim, t_val); addOrOverrideToIni(t_iniText, curIniText, newIniText); } void writeIniBool(const std::string& t_delim, const bool b_val, std::string& t_iniText) { // Add / override entry in ini. auto origVal = readIniBool(t_delim, t_iniText); auto curIniText = writeIniBool(t_delim, origVal); auto newIniText = writeIniBool(t_delim, b_val); addOrOverrideToIni(t_iniText, curIniText, newIniText); } int readIniInt(const std::string& t_delim, std::string t_iniText) { std::string t_searchStart(""); std::string t_searchEnd(""); std::string t_strReturn(""); t_searchStart.append(INI_START_OPEN).append(t_delim).append(INI_START_CLOSE); t_searchEnd.append(INI_END_OPEN).append(t_delim).append(INI_END_CLOSE); t_strReturn = dString::GetMiddle(&t_iniText, t_searchStart, t_searchEnd); return asciiToInt(t_strReturn, 10, true); } std::string readIniStr(const std::string& t_delim, std::string t_iniText) { std::string t_searchStart(""); std::string t_searchEnd(""); t_searchStart.append(INI_START_OPEN).append(t_delim).append(INI_START_CLOSE); t_searchEnd.append(INI_END_OPEN).append(t_delim).append(INI_END_CLOSE); return dString::GetMiddle(&t_iniText, t_searchStart, t_searchEnd); } bool readIniBool(const std::string& t_delim, std::string t_iniText) { std::string t_searchStart(""); std::string t_searchEnd(""); std::string t_strReturn(""); t_searchStart.append(INI_START_OPEN).append(t_delim).append(INI_START_CLOSE); t_searchEnd.append(INI_END_OPEN).append(t_delim).append(INI_END_CLOSE); t_strReturn = dString::GetMiddle(&t_iniText, t_searchStart, t_searchEnd); return (asciiToInt(t_strReturn, 10, true) != 0); } void writeToIniFile(std::string t_iniPath, std::vector<tIniParam>& t_iniParams) { std::vector<tIniParam>::iterator t_iter; std::string t_iniFile(""); std::string t_line(""); for(t_iter = t_iniParams.begin(); t_iter < t_iniParams.end(); ++t_iter) { switch(t_iter->e_type) { case INI_PLAIN_TEXT_EDIT: t_line = writeIniStr(t_iter->t_name, ((QPlainTextEdit*)t_iter->p_param)->toPlainText().toStdString()); break; case INI_LINE_TEXT: t_line = writeIniStr(t_iter->t_name, ((QLineEdit*)t_iter->p_param)->text().toStdString()); break; case INI_SPIN_BOX: t_line = writeIniInt(t_iter->t_name, ((QSpinBox*)t_iter->p_param)->value()); break; case INI_CHECK_BOX: t_line = writeIniBool(t_iter->t_name, ((QCheckBox*)t_iter->p_param)->isChecked()); break; case INI_NANOSEC_MAX_UINT: { char ac_ns[100]; snprintf(ac_ns, sizeof(ac_ns), "%f", (float)(*((INT_UMAX*)t_iter->p_param))/((float)1000000000.0) ); t_line = writeIniStr(t_iter->t_name, ac_ns); } break; } t_iniFile.append(t_line); } fso::WriteFile(t_iniPath, t_iniFile); } void readFromIniFile(std::string t_iniPath, std::vector<tIniParam>& t_iniParams) { std::vector<tIniParam>::iterator t_iter; std::string t_iniFile = fso::ReadFile(t_iniPath); if(t_iniFile != "") { for(t_iter = t_iniParams.begin(); t_iter < t_iniParams.end(); ++t_iter) { switch(t_iter->e_type) { case INI_PLAIN_TEXT_EDIT: ((QPlainTextEdit*)t_iter->p_param)->setPlainText(QString::fromStdString(readIniStr(t_iter->t_name, t_iniFile))); break; case INI_LINE_TEXT: ((QLineEdit*)t_iter->p_param)->setText(QString::fromStdString(readIniStr(t_iter->t_name, t_iniFile))); break; case INI_SPIN_BOX: ((QSpinBox*)t_iter->p_param)->setValue(readIniInt(t_iter->t_name, t_iniFile)); break; case INI_CHECK_BOX: ((QCheckBox*)t_iter->p_param)->setChecked(readIniBool(t_iter->t_name, t_iniFile)); break; // Do nothing default: case INI_NANOSEC_MAX_UINT: break; } } } } void addIniParamToVector(std::vector<tIniParam>& t_iniParams, std::string t_name, eIniType e_type, void* p_param) { tIniParam t_newParam; t_newParam.t_name = t_name; t_newParam.e_type = e_type; t_newParam.p_param = p_param; t_iniParams.push_back(t_newParam); } void writeActiveTabToIni(std::string t_iniPath, UINT_32 i_tabNum) { std::string t_iniFile = fso::ReadFile(t_iniPath); t_iniFile.append("\r\n").append(writeIniInt(INI_TAB_ACTIVE_INDEX, i_tabNum)).append("\r\n"); fso::WriteFile(t_iniPath, t_iniFile); } void writeTabToIni(std::string t_iniPath, UINT_32 i_tabNum, const std::string& t_tabName, BitViewerData& t_bitViewerData) { std::string t_iniFile = fso::ReadFile(t_iniPath); std::string t_tabText("\r\n"); t_iniFile.append("\r\n######## TAB ").append(intToAscii(i_tabNum, 10, 32, false)).append(" ########\r\n"); t_tabText.append(writeIniInt (INI_TAB_NUM , i_tabNum)); t_tabText.append(writeIniStr (INI_TAB_NAME , t_tabName)); t_tabText.append(writeIniStr (INI_TAB_INPUT , t_bitViewerData.m_Input.toStdString())); t_tabText.append(writeIniStr (INI_TAB_DELIMITER , t_bitViewerData.m_Delimiter.toStdString())); t_tabText.append(writeIniInt (INI_TAB_IN_BASE , t_bitViewerData.m_InBase )); t_tabText.append(writeIniInt (INI_TAB_IN_BITS_PER , t_bitViewerData.m_InBitsPer )); t_tabText.append(writeIniInt (INI_TAB_IN_BIT_SHIFT , t_bitViewerData.m_InBitShift )); t_tabText.append(writeIniInt (INI_TAB_OUT_BASE , t_bitViewerData.m_OutBase )); t_tabText.append(writeIniInt (INI_TAB_OUT_BITS_PER , t_bitViewerData.m_OutBitsPer )); t_tabText.append(writeIniInt (INI_TAB_OUT_BIT_SHIFT , t_bitViewerData.m_OutBitShift )); t_tabText.append(writeIniInt (INI_TAB_NUM_ROWS , t_bitViewerData.m_NumRows )); t_tabText.append(writeIniBool(INI_TAB_IN_BASE64 , t_bitViewerData.m_InBase64 )); t_tabText.append(writeIniBool(INI_TAB_IN_ASCII , t_bitViewerData.m_InAscii )); t_tabText.append(writeIniBool(INI_TAB_IN_SIGNED , t_bitViewerData.m_InSigned )); t_tabText.append(writeIniBool(INI_TAB_IN_BYTE_REV , t_bitViewerData.m_InByteRev )); t_tabText.append(writeIniBool(INI_TAB_IN_BIT_REV , t_bitViewerData.m_InBitRev )); t_tabText.append(writeIniBool(INI_TAB_OUT_BASE64 , t_bitViewerData.m_OutBase64 )); t_tabText.append(writeIniBool(INI_TAB_OUT_ASCII , t_bitViewerData.m_OutAscii )); t_tabText.append(writeIniBool(INI_TAB_OUT_SIGNED , t_bitViewerData.m_OutSigned )); t_tabText.append(writeIniBool(INI_TAB_OUT_BYTE_REV , t_bitViewerData.m_OutByteRev )); t_tabText.append(writeIniBool(INI_TAB_OUT_BIT_REV , t_bitViewerData.m_OutBitRev )); t_tabText.append(writeIniBool(INI_TAB_BIT_INVERT , t_bitViewerData.m_BitInvert )); t_tabText.append(writeIniBool(INI_TAB_C_ARRAY , t_bitViewerData.m_cArray )); t_tabText.append(writeIniBool(INI_TAB_AUTO_DELIM , t_bitViewerData.m_AutoDelim )); t_tabText.append(writeIniBool(INI_TAB_LINE_END_DELIM, t_bitViewerData.m_LineEndDelim)); t_iniFile.append(writeIniStr(INI_TAB_DELIM, t_tabText)); fso::WriteFile(t_iniPath, t_iniFile); } static std::string getTabInfoFromIni(std::string t_iniText, UINT_32 i_tabNum) { std::string t_searchStart(""); std::string t_searchEnd(""); std::string t_tabText(""); std::string t_requestedTabText(""); UINT_32 i_curTabNum = 0; t_searchStart.append(INI_START_OPEN).append(INI_TAB_DELIM).append(INI_START_CLOSE); t_searchEnd.append(INI_END_OPEN).append(INI_TAB_DELIM).append(INI_END_CLOSE); while(dString::InStr(t_iniText, t_searchStart) >= 0) { t_tabText = dString::GetMiddle(&t_iniText, t_searchStart, t_searchEnd); if(t_tabText != "") { i_curTabNum = readIniInt(INI_TAB_NUM, t_tabText); if(i_curTabNum == i_tabNum) { t_requestedTabText = t_tabText; } } } return t_requestedTabText; } UINT_32 getActiveTabFromIni(std::string t_iniPath) { return readIniInt(INI_TAB_ACTIVE_INDEX, fso::ReadFile(t_iniPath)); } UINT_32 getNumGuiTabsFromIni(std::string t_iniPath) { std::string t_iniFile = fso::ReadFile(t_iniPath); UINT_32 i_maxTabNum = 0; while(1) { if(getTabInfoFromIni(t_iniFile, i_maxTabNum) != "") { ++i_maxTabNum; } else { break; } } return i_maxTabNum; } std::string getTabNameFromIni(std::string t_iniPath, UINT_32 i_tabNum) { return readIniStr(INI_TAB_NAME, getTabInfoFromIni(fso::ReadFile(t_iniPath), i_tabNum)); } BitViewerData getTabBitViewerDataFromIni(std::string t_iniPath, UINT_32 i_tabNum) { BitViewerData t_bitViewerData; std::string t_iniFile = fso::ReadFile(t_iniPath); std::string t_tabText = getTabInfoFromIni(t_iniFile, i_tabNum); if(t_tabText != "") { t_bitViewerData.m_Input = QString::fromStdString(readIniStr(INI_TAB_INPUT, t_tabText)); t_bitViewerData.m_Delimiter = QString::fromStdString(readIniStr(INI_TAB_DELIMITER, t_tabText)); t_bitViewerData.m_InBase = readIniInt (INI_TAB_IN_BASE , t_tabText); t_bitViewerData.m_InBitsPer = readIniInt (INI_TAB_IN_BITS_PER , t_tabText); t_bitViewerData.m_InBitShift = readIniInt (INI_TAB_IN_BIT_SHIFT , t_tabText); t_bitViewerData.m_OutBase = readIniInt (INI_TAB_OUT_BASE , t_tabText); t_bitViewerData.m_OutBitsPer = readIniInt (INI_TAB_OUT_BITS_PER , t_tabText); t_bitViewerData.m_OutBitShift = readIniInt (INI_TAB_OUT_BIT_SHIFT , t_tabText); t_bitViewerData.m_NumRows = readIniInt (INI_TAB_NUM_ROWS , t_tabText); t_bitViewerData.m_InBase64 = readIniBool(INI_TAB_IN_BASE64 , t_tabText); t_bitViewerData.m_InAscii = readIniBool(INI_TAB_IN_ASCII , t_tabText); t_bitViewerData.m_InSigned = readIniBool(INI_TAB_IN_SIGNED , t_tabText); t_bitViewerData.m_InByteRev = readIniBool(INI_TAB_IN_BYTE_REV , t_tabText); t_bitViewerData.m_InBitRev = readIniBool(INI_TAB_IN_BIT_REV , t_tabText); t_bitViewerData.m_OutBase64 = readIniBool(INI_TAB_OUT_BASE64 , t_tabText); t_bitViewerData.m_OutAscii = readIniBool(INI_TAB_OUT_ASCII , t_tabText); t_bitViewerData.m_OutSigned = readIniBool(INI_TAB_OUT_SIGNED , t_tabText); t_bitViewerData.m_OutByteRev = readIniBool(INI_TAB_OUT_BYTE_REV , t_tabText); t_bitViewerData.m_OutBitRev = readIniBool(INI_TAB_OUT_BIT_REV , t_tabText); t_bitViewerData.m_BitInvert = readIniBool(INI_TAB_BIT_INVERT , t_tabText); t_bitViewerData.m_cArray = readIniBool(INI_TAB_C_ARRAY , t_tabText); t_bitViewerData.m_AutoDelim = readIniBool(INI_TAB_AUTO_DELIM , t_tabText); t_bitViewerData.m_LineEndDelim = readIniBool(INI_TAB_LINE_END_DELIM, t_tabText); } return t_bitViewerData; }
858e3eb1dfce9f9ec918d8061a4013737aef27cc
6e0d29946554e9eaa96d14cabf16e488be118a91
/SuperFlow3000/IO/IO.hpp
a4febf63753f6907c4a7b1cd37847134955cd538
[]
no_license
feelX46/NumSim
a16badfcf6373cf937ac9a40d76ce839256e022b
e1b55810185b49f2e34852e570a1ae9a6ba1b932
refs/heads/master
2016-09-08T02:40:41.353420
2014-01-10T15:14:57
2014-01-10T15:14:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,682
hpp
IO.hpp
//! The class implements the IO /*! * @author diehlpk * @date 2012 */ #include "../Misc/typedef.h" #ifndef IO_HPP_ #define IO_HPP_ #include <iostream> #include <fstream> #include "../Structs/simparam.h" #include "../Grid/gridfunction.h" class IO { public: /*! Construktor * @param input Path to the file with the simulation parameters. * @param outout Path to the directory for the vtk files. */ IO (char *input, char *output); //! Destructor ~IO (); //! Method writes the GridFunctions u,v,p in the vtk data format to the hard disk. //! The files are named in the following convention: field_(step).vts. /*! * \param griddimension The dimension of the gridfunctions. * \param u The gridfunction u. * \param v The gridfunction v. * \param p The gridfunction p. * \param delta The mesh width in x direction and y direction * \param step The number of the timestep. */ void writeVTKFile (const MultiIndexType& griddimension, GridFunctionType u, GridFunctionType v, GridFunctionType p, const PointType& delta, int step); // new!!! for MPI void writeVTKMasterfile(const IndexType& mpiSizeH, const IndexType& mpiSizeV, int step, int localgriddimensionX, int localgriddimensionY); void writeVTKSlavefile (GridFunction& u_gridfunction, GridFunction& v_gridfunction, GridFunction& p_gridfunction, const PointType& delta, int mpiSizeH, int mpiSizeV, int step, int rank); //! Method that returns private member variable simparam Simparam getSimparam () { return simparam; } private: //! Path where to write the vtk files. char *output; Simparam simparam; //! Structure with simulation parameters from input file /*! * Methods reads the simulation parameters from the specified input file. * * @param filename The name of the file with the simulations paremters */ void readInputfile (char *filename); //! Method interpolates the velocity for u in the staggered grid. /*! * \param x Value of the x coordinate. * \param y Value of the y coordinate. * \param u The gridfunction u. * \param delta The mesh width in x direction and y direction. */ RealType interpolateVelocityU (RealType x, RealType y, GridFunctionType & u, const PointType & delta); //! Method interpolates the velocity for v in the staggered grid. /*! * \param x Value of the x coordinate. * \param y Value of the y coordinate. * \param u The gridfunction v. * \param delta The mesh width in x direction and y direction. */ RealType interpolateVelocityV (RealType x, RealType y, GridFunctionType & v, const PointType & delta); }; #endif
8f55d188414d4d360e6854f88a69755320c9269f
5cfe145f5523fc6a8a39a47ab793f7bf1fef2a27
/src/Points/Relaxator.cc
f7e0c3444687735a656e85c6e752cfd0fcae8fcf
[ "Apache-2.0" ]
permissive
quinor/tspart
eb458da89d5492deda1030a72c12225861678ba5
26807d2901bcc1aa02735320df4e4595415f5fd7
refs/heads/master
2023-04-16T11:46:31.269259
2023-04-07T20:54:50
2023-04-07T20:54:50
54,729,567
29
4
Apache-2.0
2022-02-26T00:55:54
2016-03-25T15:57:53
C++
UTF-8
C++
false
false
1,127
cc
Relaxator.cc
#include "Points/Relaxator.hh" PointsRelaxator::PointsRelaxator() : mass_field(this) , voronoi_cells(this) , in(this) , out(this) { name = "PointsRelaxator"; } void PointsRelaxator::compute() { auto& input = in.get_data(); auto& mass = mass_field.get_data(); auto& cells = voronoi_cells.get_data(); auto& output = data_hook(out); output.size = input.size; output.scale = input.scale; output.pts = std::vector<sf::Vector2f>(); auto progress = logger.progress(Logger::Level::Verbose, "Redistribution pass", cells.size()); int l = 0; for (auto& e : cells) { if (l%(cells.size()/10) == 0) progress.update(l); l++; WeightedElement m; for (auto edge : e.second) { auto p = edge.first, k = edge.second; int sgn = 1; if (p.y > k.y) { std::swap(p, k); sgn*=-1; } auto shift = k-p; for (int i = 0; i < shift.y; i++) { int x = p.x + (shift.x*i)/shift.y; int y = p.y + i; m += mass.data[y*input.size.x+x] * sgn; } } output.pts.push_back(m.ws == 0 ? e.first : m.middle()); } }
b86cfaee3af9a3786e5195bbe3b208995c9348d2
adcd1a0efcd34150631bd4eb86f278240d9a1a9f
/serverplugin/AHTTransfer/src/AHTTransfer.cpp
2e99ccea9a175aaf482a5f5fc8a857af377f16bc
[ "BSD-3-Clause" ]
permissive
victorzjl/BPE
a91bf8d6781ba1ea7fb118fdc809f99423f9be14
b919e655337df53fe45515b8d5aed831ffdb2a19
refs/heads/master
2020-02-26T14:16:00.513976
2016-06-28T09:20:52
2016-06-28T09:20:52
61,704,491
1
2
null
null
null
null
UTF-8
C++
false
false
22,783
cpp
AHTTransfer.cpp
#include "AHTTransfer.h" #include <stdlib.h> #include <time.h> #include "HTDealerServiceLog.h" #include "PluginRegister.h" #include <XmlConfigParser.h> #include "HTErrorMsg.h" #include <boost/algorithm/string.hpp> #include <SapTLVBody.h> #include "jsonMsg.h" #include "CodeConverter.h" #include "JsonAdapter.h" #include "HTInfo.h" #include "SapMessage.h" #include <set> using namespace boost::algorithm; using std::set; using namespace sdo::sap; using namespace sdo::common; CAHTTransfer::CAHTTransfer() { HT_XLOG(XLOG_DEBUG,"CAHTTransfer::%s\n", __FUNCTION__); Initialize("./avenue_conf"); } CAHTTransfer::~CAHTTransfer() { HT_XLOG(XLOG_DEBUG,"CAHTTransfer::%s\n", __FUNCTION__); if( !m_HostMap.empty()) m_HostMap.clear(); if(m_pAvenueServiceConfigs) delete m_pAvenueServiceConfigs; } int CAHTTransfer::Initialize(const char *szXmlConfigFilePath) { HT_XLOG(XLOG_DEBUG,"CAHTTransfer::%s\n", __FUNCTION__); vector<int> m_vecService; //加载服务描述文件中的相关项 m_pAvenueServiceConfigs = new CAvenueServiceConfigs; m_pAvenueServiceConfigs->LoadAvenueServiceConfigs("./avenue_conf",m_vecService); //m_pAvenueServiceConfigs->LoadAvenueServiceConfigByFile(); map<unsigned int , SServiceConfig> & mapServiceConfigById = m_pAvenueServiceConfigs->GetServiceConfigByIdMap(); map<unsigned int , SServiceConfig>::iterator iterServiceConfig; for (iterServiceConfig = mapServiceConfigById.begin(); iterServiceConfig != mapServiceConfigById.end(); iterServiceConfig++) { m_vecServiceIds.push_back(iterServiceConfig->first); SServiceConfig &objServiceConfig = iterServiceConfig->second; map<int, SConfigType> mapTypeByCode = objServiceConfig.oConfig.GetTypeByCodeMap(); map<int, SConfigType>::iterator iterConfitType; CODE_TYPE_MAP mapNewTypeByCode; for (iterConfitType = mapTypeByCode.begin(); iterConfitType != mapTypeByCode.end(); iterConfitType++) { mapNewTypeByCode.insert(make_pair(iterConfitType->first, iterConfitType->second.eType)); } //m_mapCodeTypeByService.insert(make_pair(iterServiceConfig->first, mapNewTypeByCode)); } //读取config文件 CXmlConfigParser objConfigParser; if(objConfigParser.ParseFile("./config.xml") != 0) { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, Config Parser fail, file[./config.xml], error[%s]\n", __FUNCTION__, objConfigParser.GetErrorMessage().c_str()); return HT_CONFIG_ERROR; } vector<string> vecHtSosList = objConfigParser.GetParameters("HttpSosList"); vector<string>::const_iterator iter; unsigned int dwServiceId; //HT_XLOG(XLOG_DEBUG,"CAHTTransfer::%s --- getHost vecHostsize[%d] vecHostContent[%s]\n", __FUNCTION__,vecHtSosList.size(),vecHtSosList.at(0).c_str()); //构建serviceId和Host相对应的MAP for( iter = vecHtSosList.begin(); iter != vecHtSosList.end(); iter++) { CXmlConfigParser tempCXMLP; HT_XLOG(XLOG_DEBUG,"CAHTTransfer::%s --- HostContent[%s]\n", __FUNCTION__,iter->c_str()); if (tempCXMLP.ParseDetailBuffer(iter->c_str()) != 0) { HT_XLOG(XLOG_ERROR,"CAHTTransfer::%s config parse fail!\n", __FUNCTION__); return HT_CONFIG_ERROR; } vector<ahConfValue> vecAddrs; vector<string> serAddr; dwServiceId = atoi((tempCXMLP.GetParameter("serviceid").c_str())); serAddr = tempCXMLP.GetParameters("serveraddr"); vector<string>::const_iterator iter_2; HT_XLOG(XLOG_DEBUG,"CAHTTransfer::%s --- Host[%d]\n", __FUNCTION__,serAddr.size()); for(iter_2 = serAddr.begin(); iter_2 != serAddr.end(); iter_2++) { string keyNameLog; HT_XLOG(XLOG_DEBUG,"CAHTTransfer::%s --- ServerAddr[%s]\n", __FUNCTION__,iter_2->c_str()); ahConfValue temp; size_t npos = iter_2->find('@'); if( npos == string::npos ) { //不存在签名项 temp.hostName = *iter_2; temp.key = ""; temp.name = ""; } else { //存在签名项 string str = *iter_2; int pos = str.find("/"); string str1 = str.substr(0,pos); string str2 = str.substr(pos+1,str.size()-pos-1); HT_XLOG(XLOG_DEBUG,"CAHTTransfer::%s --- getHost str1[%s] str2[%s]\n", __FUNCTION__,str1.c_str(),str2.c_str()); vector<string> v1; boost::split(v1,str1,boost::is_any_of("@")); if(v1.size() < 2) return HT_CONFIG_ERROR; temp.name = v1.at(0); temp.key = v1.at(1); temp.hostName = str2; } keyNameLog.append(temp.name +"@" + temp.key + "^_^"); HT_XLOG(XLOG_DEBUG,"CAHTTransfer::%s --- ServerAddr[%s] keyNameLog[%s]\n", __FUNCTION__,temp.hostName.c_str(),keyNameLog.c_str()); vecAddrs.push_back(temp); } HT_XLOG(XLOG_DEBUG,"CAHTTransfer::%s --- getHost dwServiceId[%d] addr[%d]\n", __FUNCTION__,dwServiceId,vecAddrs.size()); m_HostMap.insert(make_pair(dwServiceId, vecAddrs)); } return 0; } int CAHTTransfer::AvenueToHttp(IN unsigned int dwServiceId, IN unsigned int dwMsgId, IN unsigned int dwSequenceId,IN const char *pAvenueBody, IN unsigned int nAvenueLen, OUT char *pHttpReqPacket, INOUT int &nHttpReqPacketLen, OUT string &serverUri, OUT string &serverAddr) { HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, dwServiceId[%d] dwMsgId[%d] dwSeq[%d]\n", __FUNCTION__, dwServiceId, dwMsgId, dwSequenceId); //根据服务号获得服务配置文件 SServiceConfig *pServiceConfig = NULL; int nRet = m_pAvenueServiceConfigs->GetServiceById(dwServiceId, &pServiceConfig); if( nRet != 0) { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, dwServiceId not supported[%d]\n", __FUNCTION__, dwServiceId); return HT_UNSUPPORT_SERVICE; } //根据消息号获得相应的服务描述 SConfigMessage *pConfigMessage = NULL; nRet = pServiceConfig->oConfig.GetMessageTypeById(dwMsgId, &pConfigMessage); if(nRet != 0) { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, SerivceId[%d] ,MsgId[%d] not supported\n", __FUNCTION__, dwServiceId, dwMsgId); return HT_UNSUPPORT_MESSAGE; } bool reqUri = false; //uri存在于请求参数中 string uri; //uri string uriParaN; //存放uri的参数名 string SendFunc; //构建http包体所用的函数 string method; //http请求的发送方法 string host; //主机地址 string key; //签名所用key string name; //签名所用name /* * 服务描述头解析 */ //判断uri是否存在于请求参数中 unsigned int npos = (pConfigMessage->url).find("$req."); if( npos == string::npos ) { uri = pConfigMessage->url; } else { reqUri = true; int size = (pConfigMessage->url).size() - 5; int start = 5; // $req. uriParaN = (pConfigMessage->url).substr(start, size); } //获取SendFunc if( pConfigMessage->SendFunc == "") { SendFunc = "HpsSignature"; } else { SendFunc = pConfigMessage->SendFunc; } //获取http发送方法 if( pConfigMessage->method == "") { method = "GET"; } else { method = pConfigMessage->method; } HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s method[%s] SendFunc[%s]\n", __FUNCTION__,method.c_str(), SendFunc.c_str()); /* *获取发送函数参数名 */ map<string, string> paraNameMap;//参数名和值 vector<string> paraNVec; //用于记录参数顺序 string paraLog; string tempStr; if( strcmp(SendFunc.c_str(), "HpsSignature" ) != 0) { //用户自定义函数 size_t posS = SendFunc.find("("); size_t posE = SendFunc.find(")"); if((posS == string::npos)|| (posE == string::npos)) { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, SerivceId[%d] MsgId[%d] SendFunc[%s] uncorrect\n", __FUNCTION__, dwServiceId,dwMsgId, SendFunc.c_str()); return HT_UNCORRECT_SNEDFUNC; } else { //获取函数参数 if( posE-posS-1 > 0) tempStr = SendFunc.substr(posS + 1, posE-posS-1); else { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, SerivceId[%d] MsgId[%d] SendFunc[%s] uncorrect\n", __FUNCTION__, dwServiceId,dwMsgId, SendFunc.c_str()); return HT_UNCORRECT_SNEDFUNC; } //获取发送函数名 SendFunc = SendFunc.substr(0,posS); vector<string> tempVecStr; boost::split(tempVecStr,tempStr,boost::is_any_of(",")); HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s SendFunc[%s] para[%s] vecParaSize[%d]\n", __FUNCTION__,SendFunc.c_str(),tempStr.c_str(),tempVecStr.size()); //函数参数解析 vector<string>::iterator itVec = tempVecStr.begin(); { //获得函数参数名 for( ;itVec != tempVecStr.end(); itVec++) { HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s SendFunc[%s] paraName[%s]\n", __FUNCTION__,SendFunc.c_str(),itVec->c_str()); size_t posotion = itVec->find("$req."); if(posotion == string::npos) { paraNameMap.insert(make_pair(*itVec,*itVec)); paraNVec.push_back(*itVec); paraLog.append(*itVec + "^_^"); } else { int start = itVec->find("."); // $req. int size = itVec->size() - start -1; string temp = itVec->substr(start+1,size); paraLog.append(temp + "^_^"); paraNameMap.insert(make_pair(temp,"")); paraNVec.push_back(temp); } } } } } //服务描述文件中SendFunc参数最多6个 if( paraNVec.size() > 6) { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, SerivceId[%d] MsgId[%d]parameter number[%d] uncorrect!\n", __FUNCTION__, dwServiceId,dwMsgId,paraNVec.size()); return HT_UNCORRECT_PARA_SENDFUNC; } HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s SendFunc[%s] para[%s]\n", __FUNCTION__,SendFunc.c_str(),paraLog.c_str()); /* *判断发送函数是否存在 */ PLUGIN_FUNC_SEND funcAddr; if( CPluginRegister::GetInstance()->getSendFuncAddrByName(SendFunc, funcAddr) != 0 ) { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, SerivceId[%d] ,MsgId[%d]--SendFunc[%s] not exists!\n", __FUNCTION__, dwServiceId, dwMsgId,SendFunc.c_str()); return HT_SENDFUNC_NOT_SUPPORT; } HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, Get HOST NAME\n", __FUNCTION__); //主机地址获取 SID_HOST_MAP::iterator iter = m_HostMap.find(dwServiceId); if( iter == m_HostMap.end() ) { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, SerivceId[%d] host name not exists\n", __FUNCTION__, dwServiceId); return HT_NO_HOST; } else { //HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, what??????\n", __FUNCTION__); //随机选取一个服务配置 vector<ahConfValue> &ahConfVec = iter->second; HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, alConfig[%d]\n", __FUNCTION__,ahConfVec.size()); srand((unsigned int )time(NULL)); int idx; if( ahConfVec.size() == 1) idx = 0; else idx = rand() % (ahConfVec.size()); HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, choose[%d]\n", __FUNCTION__, idx); ahConfValue &ahConf = ahConfVec.at(idx); host = ahConf.hostName; key = ahConf.key; name = ahConf.name; } serverAddr = host; HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, SeriverAddr[%s]\n", __FUNCTION__, serverAddr.c_str()); //获得avenue体 SSapMsgHeader *pSapMsgHeader = (SSapMsgHeader *)pAvenueBody; char *pExtBuffer = (char *)pAvenueBody + pSapMsgHeader->byHeadLen; int nExtLen = nAvenueLen-pSapMsgHeader->byHeadLen; CSapTLVBodyDecoder msgDecoder(pExtBuffer, nExtLen); //特殊参数解析 map<string, SConfigField>::iterator iterS; string keyValue = ""; bool bFirst = true; map<string,string>::iterator iterMap; //入参解析并构建keyValue参数,获取SendFunc的参数 for (iterS = pConfigMessage->oRequestType.mapFieldByName.begin(); iterS != pConfigMessage->oRequestType.mapFieldByName.end(); iterS++) { SConfigField &objConfigField = iterS->second; SConfigType objConfigType; nRet = pServiceConfig->oConfig.GetTypeByName(objConfigField.strTypeName, objConfigType); HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, paraType[%s]\n", __FUNCTION__, objConfigField.strTypeName.c_str()); if(nRet != 0) { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, SerivceId[%d] ,MsgId[%d] not have TypeName[%s]\n", __FUNCTION__, dwServiceId, dwMsgId, objConfigField.strTypeName.c_str()); return HT_CONFIG_TYPE_NOT_EXIST; } string strValue; if(objConfigField.bHasDefault) { if(objConfigType.eType == MSG_FIELD_INT) { char szTemp[16] = {0}; snprintf(szTemp, sizeof(szTemp)-1, "%d", objConfigField.nDefaultValue); strValue = szTemp; } else if(objConfigType.eType == MSG_FIELD_STRING) { strValue = objConfigField.strDefaultValue; } else { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, SerivceId[%d] ,MsgId[%d] Type[%d] is not supported\n", __FUNCTION__, dwServiceId, dwMsgId, objConfigType.eType); return HT_DATA_TYPE_NOT_EXIST; } } else { HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, eType[%d] paraTypeCode[%d]\n", __FUNCTION__,objConfigType.eType,objConfigType.nCode); if(objConfigType.eType == MSG_FIELD_INT) { unsigned int dwValue = 0; nRet = msgDecoder.GetValue(objConfigType.nCode, &dwValue); char szTemp[16] = {0}; snprintf(szTemp, sizeof(szTemp)-1, "%d", dwValue); strValue = szTemp; } else if(objConfigType.eType == MSG_FIELD_STRING) { nRet = msgDecoder.GetValue(objConfigType.nCode, strValue); } else { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, SerivceId[%d] ,MsgId[%d] Type[%d] is not supported\n", __FUNCTION__, dwServiceId, dwMsgId, objConfigType.eType); return HT_DATA_TYPE_NOT_EXIST; } HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, paraValue[%s]\n", __FUNCTION__,strValue.c_str()); } //Request参数不存在 if(nRet != 0) { HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, SerivceId[%d] ,MsgId[%d] FieldName[%s] not exist\n", __FUNCTION__, dwServiceId, dwMsgId, objConfigField.strName.c_str()); continue; } if(objConfigField.eEncodeMode == ENCODE_GBK) { Utf82Ascii objCodeTransfer; char szGbkCode[1024] = {0}; HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, GBK IN(%s)\n", __FUNCTION__, strValue.length()); objCodeTransfer.Convert((char *)strValue.c_str(), strValue.length(), szGbkCode,sizeof(szGbkCode)); strValue = szGbkCode; HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, GBK OUT(%s)\n", __FUNCTION__, strValue.length()); } else if(objConfigField.eEncodeMode == ENCODE_UTF8) { Ascii2Utf8 objCodeTransfer; char szUtf8Content[1024] = {0}; HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, UTF8 IN(%s)\n", __FUNCTION__, strValue.length()); objCodeTransfer.Convert((char *)strValue.c_str(), strValue.length(), szUtf8Content,sizeof(szUtf8Content)); strValue = szUtf8Content; HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, UTF8 OUT(%s)\n", __FUNCTION__, strValue.length()); } //if( !objConfigField.bUrlParameter) { HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, paraName[%s], para[%s]\n", __FUNCTION__, objConfigField.strOriName.c_str(),strValue.c_str()); //string strValueEncoded = UrlEncoder::encode(strValue.c_str()); iterMap = paraNameMap.find(objConfigField.strOriName); //判断是否是发送函数的参数,是则跳过不放入keyValue中 if( iterMap != paraNameMap.end()) { HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s map insert paraName[%s] para[%s]\n", __FUNCTION__, objConfigField.strOriName.c_str(),strValue.c_str()); iterMap->second = strValue; //continue; } if(strcmp(uriParaN.c_str(),objConfigField.strOriName.c_str() )==0) { uri = strValue; continue; } if(bFirst) { keyValue += objConfigField.strOriName + "=" + strValue; bFirst = false; } else { keyValue += "&" + objConfigField.strOriName + "=" + strValue; } } } //判断uri是否存在 if( uri == "" ) { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, dwServiceId[%d] dwMsgId[%d] uri not exists!\n", __FUNCTION__, dwServiceId, dwMsgId); return HT_NO_URI; } HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s construct httbody!\n", __FUNCTION__,method.c_str()); /* * *调用构造http包体函数构造http包体 * */ //构建参数体 AHTPara tempPara; tempPara.uri = uri; tempPara.method = method; tempPara.hostName = host; tempPara.key = key; tempPara.name = name; tempPara.keyValue = keyValue; //按顺序获取相应的参数值 string valueLog; vector<string> paraValue; vector<string>::iterator iterPa = paraNVec.begin(); for(;iterPa != paraNVec.end();iterPa++) { iterMap = paraNameMap.find(*iterPa); if( iterMap != paraNameMap.end() ) { paraValue.push_back(iterMap->second); valueLog.append(iterMap->second + " "); } } int paraNum = paraValue.size(); if( paraNum < 6 ) { for(int i = paraNum; i < 6; i++) { //参数值小于6用空补齐 paraValue.push_back(""); } } HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s valueLog[%s]\n", __FUNCTION__,valueLog.c_str()); //发送函数调用 string httpBody; HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s keyValue[%s]\n", __FUNCTION__,keyValue.c_str()); int retVal = funcAddr( tempPara, httpBody, paraValue.at(0), paraValue.at(1),paraValue.at(2),paraValue.at(3), paraValue.at(4), paraValue.at(5)); if( retVal != 0 ) { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, SerivceId[%d] ,MsgId[%d] httpbody build fail!\n", __FUNCTION__, dwServiceId, dwMsgId); return HT_BUILD_HTTPBODY_FAIL; } //返回http包体 和最终的uri nHttpReqPacketLen = httpBody.size(); memcpy(pHttpReqPacket,httpBody.c_str(),nHttpReqPacketLen); pHttpReqPacket[nHttpReqPacketLen] = 0; serverUri = host + uri; HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s httpBody[\n%s\n]\n", __FUNCTION__,httpBody.c_str()); return 0; } int CAHTTransfer::HttpToAvenue(IN unsigned int dwServiceId, IN unsigned int dwMsgId, IN const char *pHttpResPacket, IN int nHttpResLen, OUT char *pAvenueBody, INOUT int &nAvenueLen, OUT int &nRetCode) { nRetCode = 0; HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, dwServiceId[%d] dwMsgId[%d]\n", __FUNCTION__, dwServiceId, dwMsgId); //根据服务号获得服务配置文件 SServiceConfig *pServiceConfig = NULL; int nRet = m_pAvenueServiceConfigs->GetServiceById(dwServiceId, &pServiceConfig); if( nRet != 0) { HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, dwServiceId not supported[%d]\n", __FUNCTION__, dwServiceId); nRetCode = HT_UNSUPPORT_SERVICE; return HT_UNSUPPORT_SERVICE; } //根据消息号获得相应的服务描述 SConfigMessage *pConfigMessage = NULL; nRet = pServiceConfig->oConfig.GetMessageTypeById(dwMsgId, &pConfigMessage); if(nRet != 0) { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, SerivceId[%d] ,MsgId[%d] not supported\n", __FUNCTION__, dwServiceId, dwMsgId); nRetCode = HT_UNSUPPORT_MESSAGE; return HT_UNSUPPORT_MESSAGE; } string ReceiveFunc; //获取RecveiveFunc if( pConfigMessage->ReceiveFunc == "") { ReceiveFunc = "JsonCommonConvert"; } else { ReceiveFunc = pConfigMessage->ReceiveFunc; //去掉括号 size_t end = ReceiveFunc.find("("); ReceiveFunc=ReceiveFunc.substr(0,end); } PLUGIN_FUNC_RECV funcAddr; //判断是否存在相应的函数 if( CPluginRegister::GetInstance()->getRecvFuncAddrByName(ReceiveFunc, funcAddr) != 0 ) { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, SerivceId[%d] ,MsgId[%d]--ReceiveFunc[%s] not exists!\n", __FUNCTION__, dwServiceId, dwMsgId,ReceiveFunc.c_str()); nRetCode = HT_UNSUPPORT_MESSAGE; return HT_RECVFUNC_NOT_SUPPORT; } string jsonBody; //http转为json if( funcAddr(jsonBody,pHttpResPacket,nHttpResLen) != 0) { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, SerivceId[%d] ,MsgId[%d]--ReceiveFunc[%s] http transfer fail!\n", __FUNCTION__, dwServiceId, dwMsgId,ReceiveFunc.c_str()); nRetCode = HT_HTTP_TO_JSON_FAIL; return HT_HTTP_TO_JSON_FAIL; } else { HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, SerivceId[%d] ,MsgId[%d]--jsonBody[%s] http to json success!\n", __FUNCTION__, dwServiceId, dwMsgId,jsonBody.c_str()); } /* * *json转换为avenue * */ HT_XLOG(XLOG_DEBUG, "CAHTTransfer::%s, dwServiceId[%d], dwMsgId[%d] JsonToAvenue json[%s]\n", __FUNCTION__, dwServiceId, dwMsgId,jsonBody.c_str()); CSapTLVBodyEncoder objTlvBodyEncoder; CJsonDecoder objJsonder; objJsonder.Decoder(jsonBody.c_str(), jsonBody.length()); map<string, SConfigField>::iterator iter; //json转为avenue for (iter = pConfigMessage->oResponseType.mapFieldByName.begin(); iter != pConfigMessage->oResponseType.mapFieldByName.end(); iter++) { SConfigField &objConfigField = iter->second; SConfigType objConfigType; nRet = pServiceConfig->oConfig.GetTypeByName(objConfigField.strTypeName, objConfigType); if(nRet != 0) { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, SerivceId[%d] ,MsgId[%d] not have TypeName[%s]\n", __FUNCTION__, dwServiceId, dwMsgId, objConfigField.strTypeName.c_str()); nRetCode = HT_CONFIG_TYPE_NOT_EXIST; return HT_CONFIG_TYPE_NOT_EXIST; } string strValue; nRet = CJsonAdapter::GetJsonData(objJsonder, objConfigField.strJsonPath, strValue); HT_XLOG(XLOG_DEBUG,"CAHTTransfer::%s, SerivceId[%d] ,MsgId[%d] strValue[%s]",__FUNCTION__, dwServiceId, dwMsgId,strValue.c_str()); if(nRet != 0) { HT_XLOG(XLOG_TRACE, "CAHTTransfer::%s, SerivceId[%d] ,MsgId[%d] response data without name[%s]\n", __FUNCTION__, dwServiceId, dwMsgId, objConfigField.strOriName.c_str()); continue; } if(objConfigField.eEncodeMode == ENCODE_GBK) { Utf82Ascii objCodeTransfer; char szGbkCode[1024] = {0}; objCodeTransfer.Convert((char *)strValue.c_str(), strValue.length(), szGbkCode,sizeof(szGbkCode)); strValue = szGbkCode; } else if(objConfigField.eEncodeMode == ENCODE_UTF8) { Ascii2Utf8 objCodeTransfer; char szUtf8Content[1024] = {0}; objCodeTransfer.Convert((char *)strValue.c_str(), strValue.length(), szUtf8Content,sizeof(szUtf8Content)); strValue = szUtf8Content; } if(objConfigType.eType == MSG_FIELD_INT) { objTlvBodyEncoder.SetValue(objConfigType.nCode, atoi(strValue.c_str())); } else if(objConfigType.eType == MSG_FIELD_STRING) { objTlvBodyEncoder.SetValue(objConfigType.nCode, strValue); } else { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, SerivceId[%d] ,MsgId[%d] Type[%d] is not supported\n", __FUNCTION__, dwServiceId, dwMsgId, objConfigType.eType); nRetCode = HT_DATA_TYPE_NOT_EXIST; return HT_DATA_TYPE_NOT_EXIST; } if(objConfigField.bReturnField) { nRetCode = atoi(strValue.c_str()); } } objJsonder.Destroy(); //复制avenue到结果 int nFinalAvenueLen = objTlvBodyEncoder.GetLen(); if(nFinalAvenueLen > nAvenueLen) { HT_XLOG(XLOG_ERROR, "CAHTTransfer::%s, Return AvenueBody len is longer than the buffer\n", __FUNCTION__); nRetCode = HT_AVENUE_PACKET_TOO_LONG; return HT_AVENUE_PACKET_TOO_LONG; } else { nAvenueLen = nFinalAvenueLen; memcpy(pAvenueBody,objTlvBodyEncoder.GetBuffer(),nAvenueLen); pAvenueBody[nAvenueLen] = 0 ; } return 0; }
d287f91f3ad7d69314971d272c51d374afcbf221
e82e314083b4c879f3017891b46fd9b97e119133
/ASOstl/main.cpp
1cb22f50c8d7b270432f435b77520afa69e22c04
[]
no_license
isaswing/ASO
efd38dec5853344e1f3d38c7778dce325bf1a748
fb7ec762ff629ed30ad61e595b2971cc459678ae
refs/heads/master
2021-01-10T20:59:24.727780
2015-02-25T03:29:43
2015-02-25T03:29:43
31,051,746
2
2
null
2015-02-20T19:27:26
2015-02-20T05:03:21
C++
UTF-8
C++
false
false
10,491
cpp
main.cpp
#include "ASPSolver.h" #include "QBFSolver.h" char *dir = "../DataGen/data/"; int looptimes = 3; int timeout = 500; /* In ASPSolver: solveMode = 1: Using clingo solveMode = 2: Using gringo+clasp solveMode = 3: Using gringo+claspD solveMode = 4: Using gringo+claspD2 In QBFSolver: solveMode = 1: Using gringo+clasp3 solveMode = 2: Using gringo+claspD solveMode = 3: Using gringo+claspD2 solveMode = 4: Using dlv */ int solveMode = 1; void GetInputFileName(TSmallStr &fileName, int dataset) { if (dataset < 1 || dataset > 3) { printf("Please select a correct data set.\n"); return; } fileName = dir; if (dataset == 1) { fileName += "oneRankData.in"; } else if (dataset == 2) { fileName += "twoRanksData.in"; } else if (dataset = 3) { fileName += "twoTreesData.in"; } } void GetOutputFileName(TSmallStr &fileName, int method, int problem, int dataset, bool dis = false) { if (method < 1 || method > 3) { printf("Please select an available method.\n"); return; } if (problem < 1 || problem > 3) { printf("Please select an available problem.\n"); return; } if (dataset < 1 || dataset > 3) { printf("Please select an available data set.\n"); return; } fileName = dir; if (problem == 1) { fileName += "one"; } else if (problem == 2) { fileName += "ano"; } else if (problem == 3) { if (dis) { fileName += "dis"; } else { fileName += "sim"; } } if (method == 1 || method == 2) { fileName += "Iterative"; } else if (method == 3) { fileName += "DLP"; } if (dataset == 1) { fileName += "1Rank.txt"; } else if (dataset == 2) { fileName += "2Ranks.txt"; } else if (dataset = 3) { fileName += "2Trees.txt"; } } /* The input is a txt file storing the paths of data instances (generator and preferences). For example "../DataGen/data/oneRankData.in". method = 1 if using Iterative method (original for finding sim/dis). method = 2 if using Iterative method (new method for finding sim/dis). method = 3 if using disjunctive logic programming. method = 4 if using disjunctive logic programming by DLV. problem = 1 if finding one optimal answer set. problem = 2 if finding another optimal answer set. problem = 3 if finding a similar/dissimilar optimal answer set. dataset = 1 if using the data set with one rank. dataset = 2 if using the data set with two ranks. dataset = 3 if using the data set generated from two LP-trees. dis = true if finding a dissimilar optimal answer set. dis = false if finding a similar optimal answer set. The output is a txt file storing the time used to solve the problem for each data instance. For example: "../DataGen/data/oneIterative1Rank.txt". */ bool Solve(int method, int problem, int dataset, bool dis = false, int dist = 0) { if (solveMode < 1 || solveMode > 4) { printf("Please select an available solver.\n"); return true; } if (method < 1 || method > 3) { printf("Please select an available method.\n"); return true; } if (problem < 1 || problem > 3) { printf("Please select an available problem to solve.\n"); return true; } if (dataset < 1 || dataset > 3) { printf("Please select an available data set.\n"); return true; } if (dist < 0 || dist > 10) { printf("Please input a valid distance.\n"); return true; } //input file TSmallStr fileName; GetInputFileName(fileName, dataset); FileIO file; if (file.Open(fileName(), "rb") == false) { return false; } TSmallStr buffer; buffer.SetLen(file.size()); if (file.Read(buffer(), 1, file.size()) == false) { return false; } file.Close(); char *ptr = buffer(); char *end = ptr; //output file GetOutputFileName(fileName, method, problem, dataset, dis); if (file.Open(fileName()) == false) { return false; } TSmallStr result; //for every file while (ptr) { end = strstr(ptr, " "); TSmallStr gen; gen.SetFast(ptr, end-ptr); ptr = end + 1; end = strstr(ptr, " "); TSmallStr pref; pref.SetFast(ptr, end-ptr); TSmallStr imp; //If the data set has ranks, get the files storing ranks. if (dataset != 1) { ptr = end + 1; end = strstr(ptr, " "); imp.SetFast(ptr, end-ptr); } printf("generator: %s\n", gen()); float minTime = timeout; int found = 0; //run three times and pick the fastest one for (int i=0; i<looptimes; i++) { float time = 0; //Iterative method if (method == 1 || method == 2) { ASPSolver ASO; if (ASO.Init(gen(), pref(), dataset != 1, imp()) == false) { return false; } if (ASO.GetFirstOptAS(&time) == -1) { return false; } //finding another optimal answer set if (problem == 2) { if (ASO.GetAnoOptAS(&time) == -1) { return false; } } //finding a similar/dissimilar optimal answer set else if (problem == 3) { vector<bool> given = ASO.answerSet; if (method == 1) { found = ASO.GetDisOpt(dis, given, (ASO.numAtom/10)*dist, &time); } else { found = ASO.GetDisOptNew(dis, given, (ASO.numAtom/10)*dist, &time); } if (found == -1) { return false; } } } //The disjunctive logic programming method else { QBFSolver ASO; if (ASO.Parse(gen(), pref(), dataset != 1, imp()) == false) { return false; } if (ASO.GetOneOptAS(&time) == -1) { return false; } //finding another optimal answer set if (problem == 2) { if (ASO.GetAnoOptAS(&time) == -1) { return false; } } //finding a similar/dissimilar optimal answer set else if (problem == 3) { vector<bool> given = ASO.answerSet; if (ASO.GetDisOptAS(dis, given, (ASO.numAtom/10)*dist, &time) == -1) { return false; } } } if (time > timeout) { printf("Time out!\n"); return true; } if (minTime > time) { minTime = time; } } printf("minTime: %f\n", minTime); result.Format("%lf\n", minTime); if (file.Write(result(), 1, result.Len) == false) { return false; } file.Flush(); ptr = end+1; while (*ptr == ' ') { ptr++; } if (*ptr == '\0') { break; } while (*ptr == '\n' || *ptr == '\r') { ptr++; } } file.Close(); return true; } int main(int argc, char *argv[]) { if (argc < 5) { printf("Incorrect arguments!\n"); return 1; } solveMode = atoi(argv[1]); int method = atoi(argv[2]); int problem = atoi(argv[3]); int dataset = atoi(argv[4]); bool dis = false; if (argc > 5) { dis = strcmp(argv[5], "dis") == 0; } int dist = 0; if (argc > 6) { dist = atoi(argv[6]); } if (Solve(method, problem, dataset, dis, dist) == false) { return 1; } //Test code // solveMode = 3; //Using iterative method to find one optimal answer set from the dataset //with one rank. // if (Solve(4, 1, 1) == false) // { // return 1; // } //Using iterative method to find another optimal answer set from the dataset //with one rank. // if (Solve(1, 2, 1) == false) // { // return 1; // } //Using the original iterative method to find a dissimilar optimal answer //set from the dataset with one rank. // if (Solve(1, 3, 1, true, 1) == false) // { // return 1; // } //Using the original iterative method to find a similar optimal answer set //from the dataset with one rank. // if (Solve(1, 3, 1, false, 3) == false) // { // return 1; // } //Using the new iterative method to find a dissimilar optimal answer set //from the dataset with one rank. // if (Solve(2, 3, 1, true) == false) // { // return 1; // } //Using the new iterative method to find a similar optimal answer set from //the dataset with one rank. // if (Solve(2, 3, 1, false) == false) // { // return 1; // } //Using iterative method to find one optimal answer set from the dataset //generated from two LP trees. // if (Solve(1, 1, 3) == false) // { // return 1; // } //Using disjunctive logic programming by claspD to find one optimal answer //set from the dataset with one rank. // if (Solve(3, 1, 1) == false) // { // return 1; // } //Using disjunctive logic programming by DLV to find one optimal answer //set from the dataset with one rank. // if (Solve(4, 1, 1) == false) // { // return 1; // } // if (Solve(2, 3, 1, false, 6) == false) // { // return 1; // } return 0; }
39cf82385043bfedf6115c354caf94745468b321
74c4925616d82da77356a055715160e26b16fcae
/arduino/auto_controlled_engine_set_oop/MotorController.cpp
589d2085e59f0ae813c220febabe90e91713be32
[]
no_license
marksurnin/Quadrocopter
c0b83c9a74789f73c30763c400e55a8f3b2b74c7
7de06808b2abb734952bd006b272aad248ef5ecc
refs/heads/master
2021-01-21T00:00:47.693005
2013-04-14T12:15:32
2013-04-14T12:15:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,614
cpp
MotorController.cpp
#include "MotorController.h" #include "Arduino.h" #include "TimerCount.h" #include "RVector3D.h" double MotorController::getSpeed(RVector3D torqueVec, int motor) { double res = getForce(); res += torqueVec.x * coordinatesOfMotors[motor].y - torqueVec.y * coordinatesOfMotors[motor].x; // it is necessary because the motor controller starts a motor with greater speed than needed if (res <= MIN_SPEED && getForce() != 0) res = MIN_SPEED; // motors offline if(getForce() < MIN_SPEED) res = 0; // use_motors implementation if(!useMotors[motor]) res = 0; return(res); } void MotorController::setTorque(RVector3D torqueVec) { for (int i = 0; i < N_MOTORS; i++) motors_[i].setPower(getSpeed(torqueVec, i)); } void MotorController::setMotors(double power[N_MOTORS]) { for (int i = 0; i < N_MOTORS; i++) motors_[i].setPower(power[i]); } MotorController::MotorController(const int motorControlPins[N_MOTORS]) { useMotors[A] = 1; useMotors[B] = 1; useMotors[C] = 1; useMotors[D] = 1; for (int i = 0; i < N_MOTORS; i++) { motors_[i].setControlPin(motorControlPins[i]); motors_[i].setPower(0); } // wait for ESC delay(INIT_TIMEOUT); setForce(0); setTorque(RVector3D()); coordinatesOfMotors[A] = RVector3D(1, 0, 0); coordinatesOfMotors[B] = RVector3D(0, -1, 0); coordinatesOfMotors[C] = RVector3D(-1, 0, 0); coordinatesOfMotors[D] = RVector3D(0, 1, 0); } double MotorController::getForce() { return(force); } void MotorController::setForce(double a) { force = a; }
d325c5db69437fbf06368f9b14f2e27fdff523c1
afe309889abcef315ff10cd36115dabb272b895a
/CG/main.cpp
3478c4271831d348f9e608276fe989714e9023e4
[]
no_license
GaoWeiCR7/CG_finalwork
4410b08c05dc4c51f8a15de94f60bb55873f8ff7
f198339a62c8920e0e56123b43336db1d1e37edb
refs/heads/master
2022-10-06T09:13:55.181011
2020-06-08T05:42:21
2020-06-08T05:42:21
270,542,965
0
0
null
null
null
null
UTF-8
C++
false
false
364
cpp
main.cpp
#include "mainwindow.h" #include <QApplication> int main(int argc, char *argv[]) { QApplication a(argc, argv); MainWindow w; if(argc == 3) { QString path = argv[1]; QString contentpath = argv[2]; QFile file(path); w.getcontentpath(contentpath); w.filedeal(file); } w.show(); return a.exec(); }
8643f7ab330b7b932394f4550a5ac2db6ca6dd2f
f894de2759bc27c8de4904fa00424813b9096968
/GameCircle6.cpp
2b3773e22253a27bb37ea77f5c611a3fc5bc45dc
[]
no_license
satavi211/kurs
66004f1d0b11905fce75dd880da00696309ab9c3
08c21c0624833efee9c3abb08790f142ab75f2d2
refs/heads/master
2021-02-01T12:12:54.988780
2020-03-04T13:50:56
2020-03-04T13:50:56
243,521,462
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
3,613
cpp
GameCircle6.cpp
#include "TXLib.h" // Игра. Большой красный шарик управляется клавишами LEFT, RIGHT, UP, DOWN. // Большим красным шариком нужно ловить все остальные. при соприкосновении с ними, он меняет свой цвет void DrawCircle(double x,double y, int r, COLORREF color); void Motion(); void phisics( double *x,double *y,double *vx,double *vy, COLORREF color, int r); double Distance(double x1, double y1, double x2, double y2); void Uprav(double *x,double *y,double *vx, double *vy, COLORREF color,int r); void Fon(); int main () { txCreateWindow (800, 600); Motion(); return 0; } void Motion() { double x1=0, y1=0, dx1=5, dy1=2; double x2=800, y2=600, dx2=1, dy2=1; int r1=20, r2=50, r3=30, r4=20; double x3=800, y3=0, dx3=3, dy3=2; double x4=0, y4=600, dx4=2, dy4=3; int k=0; while (!txGetAsyncKeyState(VK_ESCAPE)) { Fon(); phisics(&x1, &y1, &dx1, &dy1, RGB(20, 20, 255),r1); phisics(&x2, &y2, &dx2, &dy2, RGB(200, 50, 10), r2); Uprav(&x2, &y2, &dx2, &dy2, RGB(k+240, k+30, k+10), r2); if (Distance(x1, y1, x2, y2)<=(r1+r2)*( r1+r2)) { k+=5; k=k % 200; } phisics(&x3, &y3, &dx3, &dy3, RGB(10, 150, 200),r3); if (Distance(x3, y3, x2, y2)<=(r3+r2)*( r3+r2)) { k+=5; k=k % 200; } phisics(&x4, &y4, &dx4, &dy4, RGB(200, 200, 10),r4); if (Distance(x4, y4, x2, y2)<=(r4+r2)*( r4+r2)) { k+=5; k=k % 200; } txSleep(10); //txClear(); } } void DrawCircle(double x,double y, int r, COLORREF color ) { txSetFillColor (color); txCircle(x,y,r); } void phisics( double *x,double *y,double *vx, double *vy, COLORREF color,int r) { *x+=*vx; *y+=*vy; //txSetFillColor (color); DrawCircle(*x,*y, r, color); if (*y>600-r) { *y=600-r; *vy=-*vy; } if (*y<r) { *y=r; *vy=-*vy; } if (*x>800-r) { *x=800-r; *vx=-*vx; } if (*x<r) { *x=r; *vx=-*vx; } } double Distance(double x1, double y1, double x2, double y2) { double dist=(x1-x2)*(x1-x2)+(y1-y2)*(y1-y2); return dist; } void Uprav(double *x,double *y,double *vx, double *vy, COLORREF color,int r) { if (txGetAsyncKeyState(VK_RIGHT) ) { *x+=20; } if (txGetAsyncKeyState(VK_LEFT) ) { *x-=20; } if (txGetAsyncKeyState(VK_UP) ) { *y-=20; } if (txGetAsyncKeyState(VK_DOWN)) { *y+=20; } //*x+=*vx; //*y+=*vy; txSetFillColor (color); DrawCircle(*x,*y,r, color); if (*y>600-r) { *y=600-r; *vy=-*vy; } if (*y<r) { *y=r; *vy=-*vy; } if (*x>800-r) { *x=800-r; *vx=-*vx; } if (*x<r) { *x=r; *vx=-*vx; } } void Fon() { txSetColor (TX_WHITE); txSetFillColor (TX_WHITE); txRectangle (800, 0, 0, 600); txFloodFill (765, 400); }
51e144fda5ed39218579db61560dab40800be4fb
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/enduser/speech/sapi/sapi/mmmixerline.h
fd738a02a8d1e00b80773c3208153a88615933b8
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C++
false
false
3,511
h
mmmixerline.h
/**************************************************************************** * mmaudioin.h * Declarations for the CMMAudioIn class * * Owner: agarside * Copyright (c) 2000 Microsoft Corporation All Rights Reserved. *****************************************************************************/ #pragma once #ifndef _WIN32_WCE //--- Includes -------------------------------------------------------------- //--- Class, Struct and Union Definitions ----------------------------------- class CMMMixerLine { // === Ctor, Dtor === public: CMMMixerLine(); CMMMixerLine(HMIXER &hMixer); virtual ~CMMMixerLine(); // === Methods === public: // Initialisation functions HRESULT CreateDestinationLine(UINT type); HRESULT CreateFromMixerLineStruct(const MIXERLINE *mixerLine); // sub-line functions // Retrieve source line specified by (optional) componentType and or substring. HRESULT GetMicSourceLine(CMMMixerLine *mixerLine); HRESULT GetSourceLine(CMMMixerLine *sourceMixerLine, DWORD index); HRESULT GetSourceLine(CMMMixerLine *mixerLine, DWORD componentType, const TCHAR *lpszNameSubstring); HRESULT GetLineNames(WCHAR **szCoMemLineList); // Retrieve control specified by (optional) controlType and or substring. Throws if no match found HRESULT GetControl(MIXERCONTROL &mixerControl, DWORD controlType, const TCHAR *lpszNameSubstring); // Line status queries BOOL IsInitialised(void); // Control availability queries BOOL HasAGC(void); BOOL HasBoost(void); BOOL HasSelect(void); BOOL HasVolume(void); BOOL HasMute(void); HRESULT GetConnections(UINT *nConnections); // Control state queries HRESULT GetAGC(BOOL *bState); HRESULT GetBoost(BOOL *bState); HRESULT GetSelect(DWORD *lState); HRESULT GetVolume(DWORD *lState); HRESULT GetMute(BOOL *bState); // Update control state HRESULT SetAGC(BOOL agc); HRESULT SetBoost(BOOL boost); HRESULT ExclusiveSelect(const CMMMixerLine *mixerLine); HRESULT ExclusiveSelect(UINT lineID); HRESULT SetVolume(DWORD volume); HRESULT SetMute(BOOL mute); // General control operations HRESULT QueryBoolControl(DWORD ctlID, BOOL *bState); HRESULT SetBoolControl(DWORD ctlID, BOOL bNewState); HRESULT QueryIntegerControl(DWORD ctlID, DWORD *lState); HRESULT SetIntegerControl(DWORD ctlID, DWORD lNewState); // === Data === private: HMIXER m_hMixer; // m_bUseMutesForSelect: // true => ExclusiveSelect will use mute controls to select the input // device if there is no MIXER or MUX control. // false => disable this feature. BOOL m_bUseMutesForSelect; BOOL m_bCaseSensitiveCompare; BOOL m_bDestination; // true if this is a 'destination' line. false if a 'source' line MIXERLINE m_mixerLineRecord; // Volume control DWORD m_nVolMin; // minimum value for volume control DWORD m_nVolMax; // maximum value for volume control int m_nVolCtlID; // volume control int m_nAGCCtlID; // AGC mixer control int m_nBoostCtlID; // boost mixer control int m_nMuteCtlID; // mute control BOOL m_bSelTypeMUX; // false => mixer (multiple select), true=>mux (single select) int m_nSelectCtlID; // input select mixer control int m_nSelectNumItems; // number of selectable items on this line HRESULT InitFromMixerLineStruct(); BOOL m_bInitialised; // true if this line is initialised with valid data }; #endif // _WIN32_WCE
1fdbfe0f3efd31eb8b74357c7743cfde17619e8f
a3d6556180e74af7b555f8d47d3fea55b94bcbda
/chrome/browser/ash/crostini/crostini_installer_unittest.cc
8764caa5be6ad2fc40944b44f1efba5db055f46a
[ "BSD-3-Clause" ]
permissive
chromium/chromium
aaa9eda10115b50b0616d2f1aed5ef35d1d779d6
a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c
refs/heads/main
2023-08-24T00:35:12.585945
2023-08-23T22:01:11
2023-08-23T22:01:11
120,360,765
17,408
7,102
BSD-3-Clause
2023-09-10T23:44:27
2018-02-05T20:55:32
null
UTF-8
C++
false
false
15,626
cc
crostini_installer_unittest.cc
// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/ash/crostini/crostini_installer.h" #include "base/functional/bind.h" #include "base/functional/callback_helpers.h" #include "base/memory/raw_ptr.h" #include "base/task/single_thread_task_runner.h" #include "base/test/metrics/histogram_tester.h" #include "base/test/task_environment.h" #include "base/test/test_future.h" #include "chrome/browser/ash/crostini/ansible/ansible_management_test_helper.h" #include "chrome/browser/ash/crostini/crostini_installer_ui_delegate.h" #include "chrome/browser/ash/crostini/crostini_test_helper.h" #include "chrome/browser/ash/crostini/crostini_types.mojom.h" #include "chrome/browser/component_updater/fake_cros_component_manager.h" #include "chrome/browser/notifications/system_notification_helper.h" #include "chrome/test/base/browser_process_platform_part_test_api_chromeos.h" #include "chrome/test/base/scoped_testing_local_state.h" #include "chrome/test/base/testing_browser_process.h" #include "chrome/test/base/testing_profile.h" #include "chromeos/ash/components/dbus/chunneld/chunneld_client.h" #include "chromeos/ash/components/dbus/cicerone/cicerone_client.h" #include "chromeos/ash/components/dbus/cicerone/fake_cicerone_client.h" #include "chromeos/ash/components/dbus/concierge/concierge_client.h" #include "chromeos/ash/components/dbus/concierge/fake_concierge_client.h" #include "chromeos/ash/components/dbus/debug_daemon/debug_daemon_client.h" #include "chromeos/ash/components/dbus/dlcservice/dlcservice_client.h" #include "chromeos/ash/components/dbus/seneschal/seneschal_client.h" #include "chromeos/ash/components/dbus/spaced/fake_spaced_client.h" #include "chromeos/ash/components/dbus/vm_concierge/concierge_service.pb.h" #include "chromeos/ash/components/disks/disk_mount_manager.h" #include "chromeos/ash/components/disks/mock_disk_mount_manager.h" #include "content/public/test/browser_task_environment.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/abseil-cpp/absl/types/optional.h" using crostini::mojom::InstallerError; using crostini::mojom::InstallerState; using testing::_; using testing::AnyNumber; using testing::Expectation; using testing::ExpectationSet; using testing::Invoke; using testing::Le; using testing::MockFunction; using testing::SaveArg; using testing::Truly; namespace crostini { class CrostiniInstallerTest : public testing::Test { public: using ResultCallback = CrostiniInstallerUIDelegate::ResultCallback; using ProgressCallback = CrostiniInstallerUIDelegate::ProgressCallback; class MockCallbacks { public: MOCK_METHOD2(OnProgress, void(InstallerState state, double progress_fraction)); MOCK_METHOD1(OnFinished, void(InstallerError error)); MOCK_METHOD0(OnCanceled, void()); }; class WaitingFakeConciergeClient : public ash::FakeConciergeClient { public: explicit WaitingFakeConciergeClient(ash::FakeCiceroneClient* client) : ash::FakeConciergeClient(client) {} void StartVm( const vm_tools::concierge::StartVmRequest& request, chromeos::DBusMethodCallback<vm_tools::concierge::StartVmResponse> callback) override { ash::FakeConciergeClient::StartVm(request, std::move(callback)); base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask( FROM_HERE, result_future_.GetCallback()); } void WaitForStartTerminaVmCalled() { EXPECT_TRUE(result_future_.Wait()); EXPECT_GE(start_vm_call_count(), 1); } private: base::test::TestFuture<void> result_future_; }; CrostiniInstallerTest() : local_state_(std::make_unique<ScopedTestingLocalState>( TestingBrowserProcess::GetGlobal())), browser_part_(g_browser_process->platform_part()) {} CrostiniInstallerTest(const CrostiniInstallerTest&) = delete; CrostiniInstallerTest& operator=(const CrostiniInstallerTest&) = delete; void SetOSRelease() { vm_tools::cicerone::OsRelease os_release; os_release.set_id("debian"); os_release.set_version_id("11"); ash::FakeCiceroneClient::Get()->set_lxd_container_os_release(os_release); } void SetUp() override { component_manager_ = base::MakeRefCounted<component_updater::FakeCrOSComponentManager>(); component_manager_->set_supported_components({"cros-termina"}); component_manager_->ResetComponentState( "cros-termina", component_updater::FakeCrOSComponentManager::ComponentInfo( component_updater::CrOSComponentManager::Error::NONE, base::FilePath("/install/path"), base::FilePath("/mount/path"))); browser_part_.InitializeCrosComponentManager(component_manager_); ash::DlcserviceClient::InitializeFake(); ash::ChunneldClient::InitializeFake(); ash::CiceroneClient::InitializeFake(); ash::DebugDaemonClient::InitializeFake(); ash::FakeSpacedClient::InitializeFake(); SetOSRelease(); waiting_fake_concierge_client_ = new WaitingFakeConciergeClient(ash::FakeCiceroneClient::Get()); ash::SeneschalClient::InitializeFake(); disk_mount_manager_mock_ = new ash::disks::MockDiskMountManager; ash::disks::DiskMountManager::InitializeForTesting( disk_mount_manager_mock_); profile_ = std::make_unique<TestingProfile>(); // Needed at least for passing IsCrostiniUIAllowedForProfile() test in // CrostiniManager. crostini_test_helper_ = std::make_unique<CrostiniTestHelper>(profile_.get()); crostini_installer_ = std::make_unique<CrostiniInstaller>(profile_.get()); crostini_installer_->set_skip_launching_terminal_for_testing(); g_browser_process->platform_part() ->InitializeSchedulerConfigurationManager(); TestingBrowserProcess::GetGlobal()->SetSystemNotificationHelper( std::make_unique<SystemNotificationHelper>()); } void TearDown() override { g_browser_process->platform_part()->ShutdownSchedulerConfigurationManager(); crostini_installer_->Shutdown(); crostini_installer_.reset(); crostini_test_helper_.reset(); profile_.reset(); ash::disks::MockDiskMountManager::Shutdown(); ash::SeneschalClient::Shutdown(); ash::DebugDaemonClient::Shutdown(); ash::ConciergeClient::Shutdown(); ash::CiceroneClient::Shutdown(); ash::ChunneldClient::Shutdown(); ash::DlcserviceClient::Shutdown(); ash::FakeSpacedClient::Shutdown(); browser_part_.ShutdownCrosComponentManager(); component_manager_.reset(); } void Install() { CrostiniManager::GetForProfile(profile_.get()) ->SetCrostiniDialogStatus(DialogType::INSTALLER, true); crostini_installer_->Install( CrostiniManager::RestartOptions{}, base::BindRepeating(&MockCallbacks::OnProgress, base::Unretained(&mock_callbacks_)), base::BindOnce(&MockCallbacks::OnFinished, base::Unretained(&mock_callbacks_))); } void Cancel() { crostini_installer_->Cancel(base::BindOnce( &MockCallbacks::OnCanceled, base::Unretained(&mock_callbacks_))); } protected: MockCallbacks mock_callbacks_; content::BrowserTaskEnvironment task_environment_{ content::BrowserTaskEnvironment::REAL_IO_THREAD, base::test::TaskEnvironment::TimeSource::MOCK_TIME}; base::HistogramTester histogram_tester_; // Owned by DiskMountManager raw_ptr<ash::disks::MockDiskMountManager, DanglingUntriaged | ExperimentalAsh> disk_mount_manager_mock_ = nullptr; raw_ptr<WaitingFakeConciergeClient, DanglingUntriaged | ExperimentalAsh> waiting_fake_concierge_client_ = nullptr; std::unique_ptr<TestingProfile> profile_; std::unique_ptr<CrostiniTestHelper> crostini_test_helper_; std::unique_ptr<CrostiniInstaller> crostini_installer_; private: std::unique_ptr<ScopedTestingLocalState> local_state_; scoped_refptr<component_updater::FakeCrOSComponentManager> component_manager_; BrowserProcessPlatformPartTestApi browser_part_; }; TEST_F(CrostiniInstallerTest, InstallFlow) { double last_progress = 0.0; auto greater_equal_last_progress = Truly( [&last_progress](double progress) { return progress >= last_progress; }); ExpectationSet expectation_set; expectation_set += EXPECT_CALL(mock_callbacks_, OnProgress(_, AllOf(greater_equal_last_progress, Le(1.0)))) .WillRepeatedly(SaveArg<1>(&last_progress)); // |OnProgress()| should not happens after |OnFinished()| EXPECT_CALL(mock_callbacks_, OnFinished(InstallerError::kNone)) .After(expectation_set); Install(); task_environment_.RunUntilIdle(); histogram_tester_.ExpectUniqueSample( "Crostini.SetupResult", static_cast<base::HistogramBase::Sample>( CrostiniInstaller::SetupResult::kSuccess), 1); histogram_tester_.ExpectTotalCount("Crostini.Setup.Started", 1); histogram_tester_.ExpectTotalCount("Crostini.Restarter.Started", 0); EXPECT_TRUE(crostini_installer_->CanInstall()) << "Installer should recover to installable state"; } TEST_F(CrostiniInstallerTest, InstallFlowWithAnsibleInfra) { MockAnsibleManagementService* mock_ansible_management_service = AnsibleManagementTestHelper::SetUpMockAnsibleManagementService( profile_.get()); AnsibleManagementTestHelper test_helper(profile_.get()); test_helper.SetUpAnsibleInfra(); EXPECT_CALL(*mock_ansible_management_service, ConfigureContainer).Times(1); ON_CALL(*mock_ansible_management_service, ConfigureContainer) .WillByDefault([](const guest_os::GuestId& conatiner_id, base::FilePath playbook, base::OnceCallback<void(bool success)> callback) { std::move(callback).Run(true); }); double last_progress = 0.0; auto greater_equal_last_progress = Truly( [&last_progress](double progress) { return progress >= last_progress; }); ExpectationSet expectation_set; expectation_set += EXPECT_CALL(mock_callbacks_, OnProgress(_, AllOf(greater_equal_last_progress, Le(1.0)))) .WillRepeatedly(SaveArg<1>(&last_progress)); // |OnProgress()| should not happens after |OnFinished()| EXPECT_CALL(mock_callbacks_, OnFinished(InstallerError::kNone)) .After(expectation_set); Install(); task_environment_.RunUntilIdle(); histogram_tester_.ExpectUniqueSample( "Crostini.SetupResult", static_cast<base::HistogramBase::Sample>( CrostiniInstaller::SetupResult::kSuccess), 1); EXPECT_TRUE(crostini_installer_->CanInstall()) << "Installer should recover to installable state"; } TEST_F(CrostiniInstallerTest, CancelBeforeStart) { crostini_installer_->CancelBeforeStart(); histogram_tester_.ExpectUniqueSample( "Crostini.SetupResult", static_cast<base::HistogramBase::Sample>( CrostiniInstaller::SetupResult::kNotStarted), 1); } TEST_F(CrostiniInstallerTest, CancelAfterStart) { MockFunction<void(std::string check_point_name)> check; Expectation expect_progresses = EXPECT_CALL(mock_callbacks_, OnProgress(_, _)).Times(AnyNumber()); // |OnProgress()| should not happen after |Cancel()| is called. Expectation expect_calling_cancel = EXPECT_CALL(check, Call("calling Cancel()")).After(expect_progresses); EXPECT_CALL(mock_callbacks_, OnCanceled()).After(expect_calling_cancel); Install(); // It is too involved to also fake the cleanup process in CrostiniManager, so // we will just skip it. crostini_installer_->set_require_cleanup_for_testing(false); // Hang the installer flow waiting for Tremplin to start, so we get a chance // to cancel it. waiting_fake_concierge_client_->set_send_tremplin_started_signal_delay( base::Days(1)); task_environment_.FastForwardBy(base::Seconds(1)); check.Call("calling Cancel()"); Cancel(); task_environment_.FastForwardBy(base::Seconds(1)); histogram_tester_.ExpectUniqueSample( "Crostini.SetupResult", static_cast<base::HistogramBase::Sample>( CrostiniInstaller::SetupResult::kUserCancelledStartTerminaVm), 1); EXPECT_TRUE(crostini_installer_->CanInstall()) << "Installer should recover to installable state"; } // Cancel before |OnAvailableDiskSpace()| happens is a special case, in which we // haven't started the restarting process yet. TEST_F(CrostiniInstallerTest, CancelAfterStartBeforeCheckDisk) { EXPECT_CALL(mock_callbacks_, OnCanceled()); crostini_installer_->Install(CrostiniManager::RestartOptions{}, base::DoNothing(), base::DoNothing()); Cancel(); // Cancel immediately task_environment_.RunUntilIdle(); histogram_tester_.ExpectUniqueSample( "Crostini.SetupResult", static_cast<base::HistogramBase::Sample>( CrostiniInstaller::SetupResult::kNotStarted), 1); EXPECT_TRUE(crostini_installer_->CanInstall()) << "Installer should recover to installable state"; } TEST_F(CrostiniInstallerTest, InstallerError) { Expectation expect_progresses = EXPECT_CALL(mock_callbacks_, OnProgress(_, _)).Times(AnyNumber()); // |OnProgress()| should not happens after |OnFinished()| EXPECT_CALL(mock_callbacks_, OnFinished(InstallerError::kErrorStartingTermina)) .After(expect_progresses); // Fake a failure for starting vm. vm_tools::concierge::StartVmResponse response; response.set_status(vm_tools::concierge::VM_STATUS_FAILURE); waiting_fake_concierge_client_->set_start_vm_response(std::move(response)); Install(); waiting_fake_concierge_client_->WaitForStartTerminaVmCalled(); histogram_tester_.ExpectUniqueSample( "Crostini.SetupResult", static_cast<base::HistogramBase::Sample>( CrostiniInstaller::SetupResult::kErrorStartingTermina), 1); histogram_tester_.ExpectTotalCount("Crostini.Setup.Started", 1); histogram_tester_.ExpectTotalCount("Crostini.Restarter.Started", 0); EXPECT_TRUE(crostini_installer_->CanInstall()) << "Installer should recover to installable state"; } TEST_F(CrostiniInstallerTest, InstallerErrorWhileConfiguring) { MockAnsibleManagementService* mock_ansible_management_service = AnsibleManagementTestHelper::SetUpMockAnsibleManagementService( profile_.get()); AnsibleManagementTestHelper test_helper(profile_.get()); test_helper.SetUpAnsibleInfra(); EXPECT_CALL(*mock_ansible_management_service, ConfigureContainer).Times(1); ON_CALL(*mock_ansible_management_service, ConfigureContainer) .WillByDefault([](const guest_os::GuestId& container_id, base::FilePath playbook, base::OnceCallback<void(bool success)> callback) { std::move(callback).Run(false); }); Expectation expect_progresses = EXPECT_CALL(mock_callbacks_, OnProgress(_, _)).Times(AnyNumber()); // |OnProgress()| should not happens after |OnFinished()| EXPECT_CALL(mock_callbacks_, OnFinished(InstallerError::kErrorConfiguringContainer)) .After(expect_progresses); Install(); task_environment_.RunUntilIdle(); histogram_tester_.ExpectUniqueSample( "Crostini.SetupResult", static_cast<base::HistogramBase::Sample>( CrostiniInstaller::SetupResult::kErrorConfiguringContainer), 1); EXPECT_TRUE(crostini_installer_->CanInstall()) << "Installer should recover to installable state"; } } // namespace crostini
e16a14182ca2956fcd83d5357534cb1476bbfdec
776f5892f1395bb8d30731a60466e4c756a44c8c
/contests/abc176/abc176_e/main_seg.cc
34ac7ed872efe3f1e747331779e3bb9f017e346b
[]
no_license
kkishi/atcoder
fae494af4b47a9f39f05e7536e93d5c4dd21555b
f21d22095699dbf064c0d084a5ce5a09a252dc6b
refs/heads/master
2023-08-31T18:37:13.293499
2023-08-27T21:33:43
2023-08-27T21:33:43
264,760,383
0
0
null
2023-03-10T05:24:07
2020-05-17T21:30:14
C++
UTF-8
C++
false
false
550
cc
main_seg.cc
#include <bits/stdc++.h> #include "atcoder.h" #include "segment_tree.h" void Main() { ints(H, W, m); VV<int> hw(H); V<int> hm(H), wm(W); rep(i, m) { ints(h, w); --h, --w; hw[h].pb(w); hm[h]++; wm[w]++; } SegmentTree<int> tree(W, [](int a, int b) { return max(a, b); }); rep(i, W) tree.Set(i, wm[i]); int ans = 0; rep(i, H) { for (int j : hw[i]) { tree.Set(j, wm[j] - 1); } chmax(ans, hm[i] + tree.Aggregate(0, W)); for (int j : hw[i]) { tree.Set(j, wm[j]); } } wt(ans); }
a0795e51becbab4a165aa43d041d162571da12fd
bdd9f3cdabe0c768641cf61855a6f24174735410
/src/external/3rd/library/vivox/include/vxplatform/vxcplatformmain.h
f492a0657728c0a759e559e930613dab5aa1f4c8
[]
no_license
SWG-Source/client-tools
4452209136b376ab369b979e5c4a3464be28257b
30ec3031184243154c3ba99cedffb2603d005343
refs/heads/master
2023-08-31T07:44:22.692402
2023-08-28T04:34:07
2023-08-28T04:34:07
159,086,319
15
47
null
2022-04-15T16:20:34
2018-11-25T23:57:31
C++
UTF-8
C++
false
false
3,533
h
vxcplatformmain.h
#pragma once #ifdef SN_TARGET_PS3 #include <sys/paths.h> #include <sys/prx.h> #include <cell/sysmodule.h> #include <cell/cell_fs.h> #include <sys/timer.h> #include <sys/paths.h> #include <cell/error.h> #include <stdio.h> #include <sys/process.h> #include <sys/paths.h> #include <sys/prx.h> #include <sys/return_code.h> #include <cell/sysmodule.h> #include <cell/cell_fs.h> #include <sys/timer.h> #include <netex/net.h> #include <sys/socket.h> #include <netinet/in.h> #include <netex/sockinfo.h> #include <arpa/inet.h> #include <netex/net.h> #include <netex/errno.h> #include <netex/libnetctl.h> #include <sys/spu_initialize.h> #include <assert.h> #endif #ifdef _WIN32 #define strcasecmp stricmp #else #include <iostream> #ifndef SN_TARGET_PS3 #include <ext/stdio_filebuf.h> #endif #endif #ifdef SN_TARGET_PS3 static int isMounted(const char *path) { int i, err; CellFsStat status; printf("Waiting for mounting\n"); for (i = 0; i < 15; i++) { err = cellFsStat(path, &status); if (err == CELL_FS_SUCCEEDED) { printf("Waiting for mounting done\n"); return 1; } sys_timer_sleep(1); printf(".\n"); } printf("Waiting for mounting failed\n"); return 0; } static int if_up_with(int index) { int timeout_count = 10; int state; int ret; (void)index; ret = cellNetCtlInit(); if (ret < 0) { printf("cellNetCtlInit() failed(%x)\n", ret); return (-1); } for (;;) { ret = cellNetCtlGetState(&state); if (ret < 0) { printf("cellNetCtlGetState() failed(%x)\n", ret); return (-1); } if (state == CELL_NET_CTL_STATE_IPObtained) { break; } sys_timer_usleep(500 * 1000); timeout_count--; if (index && timeout_count < 0) { printf("if_up_with(%d) timeout\n", index); return (0); } } return (0); } class EarlyStaticInit { public: EarlyStaticInit() { int res = cellSysmoduleLoadModule(CELL_SYSMODULE_NET); assert(res >= 0); res = cellSysmoduleLoadModule(CELL_SYSMODULE_RTC); assert(res >= 0); res = cellSysmoduleLoadModule(CELL_SYSMODULE_FS); assert(res >= 0); res = cellSysmoduleLoadModule(CELL_SYSMODULE_SYSUTIL); assert(res >= 0); res = cellSysmoduleLoadModule(CELL_SYSMODULE_HTTP); assert(res >= 0); res = cellSysmoduleLoadModule(CELL_SYSMODULE_HTTPS); assert(res >= 0); res = cellSysmoduleLoadModule(CELL_SYSMODULE_HTTP_UTIL); assert(res >= 0); res = cellSysmoduleLoadModule(CELL_SYSMODULE_MIC); assert(res >= 0); res = cellSysmoduleLoadModule(CELL_SYSMODULE_AUDIO); assert(res >= 0); res = cellSysmoduleLoadModule(CELL_SYSMODULE_AVCONF_EXT); assert(res >= 0); res = sys_net_initialize_network(); assert(res >= 0); //static char __libnet_memory[1024 * 1024]; //sys_net_initialize_parameter_t __libnet_param; //__libnet_param.memory = __libnet_memory; //__libnet_param.memory_size = sizeof(__libnet_memory); //__libnet_param.flags = 0; //res = sys_net_initialize_network_ex(&__libnet_param); //assert (res >=0); res = if_up_with(1); assert(res >= 0); res = isMounted(SYS_APP_HOME); assert(res >=0); sys_spu_initialize( 6, 0 ); } }; static EarlyStaticInit ps3EarlyStaticInit __attribute__((init_priority(101))); SYS_PROCESS_PARAM (1001, 1024 * 512); #endif
82ca0ac141892a4dcd43310c60e9d4172e92b862
bee36866c53546826042d9fb11f049bebb465f1d
/Kuis1/main.cpp
f687c25de6cc36de38d0d3fd43d4e69f352ec376
[]
no_license
ravielze/OOP-sie-2021
42aa687a88dc5309b59b764041ed24807d080619
4fe734184daaa4f0f334aac4b008131e33361dea
refs/heads/master
2023-04-12T06:26:08.725513
2021-04-22T03:12:26
2021-04-22T03:12:26
335,888,541
0
1
null
null
null
null
UTF-8
C++
false
false
529
cpp
main.cpp
#include "DeretLampu.hpp" #include <iostream> using namespace std; int main() { Deret_Lampu deret; cout << "Awal:" << endl; deret.PrintDeretLampu(); cout << endl << "4:" << endl; deret.atur_nyala(4); deret.PrintDeretLampu(); cout << endl << "2:" << endl; deret.atur_nyala(2); deret.PrintDeretLampu(); cout << endl << "3:" << endl; deret.atur_nyala(3); deret.PrintDeretLampu(); cout << endl << "O: Nyala, X: Mati" << endl; return 0; }
35fcf5b027cdcabaca86bb9371c97e5a4988ec32
8c4a2ff3fa1c3d9391aaa2b7c4c0af37db429c3c
/workspace/src/utilities/src/Logger.cpp
7a19ee9f7c16d905ba05a536f390e48fff31fc5a
[]
no_license
RcvanEendenburg/RobotKinematics
8fd5e6a3a53166c06f5cf338a221f964a54527dc
e0399826b7b38ac8fdb219053abdb7dd3885605d
refs/heads/master
2021-01-02T03:45:57.980318
2020-06-22T15:41:39
2020-06-22T15:41:39
239,475,729
0
0
null
2020-06-22T11:41:22
2020-02-10T09:41:11
C++
UTF-8
C++
false
false
2,545
cpp
Logger.cpp
#include <utilities/Logger.h> #include <cstdarg> #include <iostream> #include <sstream> namespace Utilities { Logger &Logger::instance() { static Logger logger; return logger; } Logger::Logger() : printing(true), switching_output(false) { thread = std::thread([this]() { logThread(); }); } Logger::~Logger() { printing = false; queue_cv.notify_all(); if (thread.joinable()) thread.join(); } void Logger::setLogOutput(std::unique_ptr<LogOutput> logOutput) { switching_output = true; std::unique_lock<std::mutex> lock(mutex); if (output && output->isOpened()) output->close(); output = std::move(logOutput); lock.unlock(); switching_output = false; } void Logger::log(LogLevel logLevel, const char *fmt, ...) { std::ostringstream os; va_list args; va_start(args, fmt); while (*fmt != '\0') { if (*fmt == '%') { ++fmt; if (*fmt == 'd') { int i = va_arg(args, int); os << i; } else if (*fmt == 'c') { // note automatic conversion to integral type int c = va_arg(args, int); os << static_cast<char>(c) << '\n'; } else if (*fmt == 'f') { double d = va_arg(args, double); os << d; } } else { os << *fmt; } ++fmt; } va_end(args); os << '\n'; push(std::move(std::make_unique<LogMessage>(os.str(), logLevel))); } void Logger::push(std::unique_ptr<LogMessage> message) { std::unique_lock<std::mutex> lock(mutex); queue.push(std::move(message)); lock.unlock(); queue_cv.notify_all(); } void Logger::logThread() { std::unique_lock<std::mutex> lock(mutex); while (true) { queue_cv.wait(lock, [this]() { return !queue.empty() || (queue.empty() && !printing); }); if (queue.empty()) break; auto message = std::move(queue.front()); queue.pop(); lock.unlock(); while (switching_output); lock.lock(); if (!output->isOpened()) { output->open(); if (!output->isOpened()) throw std::runtime_error("Couldn't open log output!"); } output->handleMessage(message->level, message->message); } output->close(); lock.unlock(); } } // namespace Utilities
c71aac6f30e7f199cb51b378ef755517e49571bb
bdd9f3cdabe0c768641cf61855a6f24174735410
/src/external/3rd/library/platform/MonAPI2/MonitorData.cpp
bd417941abce50461c70eb3a2e7d9c0403c80f74
[]
no_license
SWG-Source/client-tools
4452209136b376ab369b979e5c4a3464be28257b
30ec3031184243154c3ba99cedffb2603d005343
refs/heads/master
2023-08-31T07:44:22.692402
2023-08-28T04:34:07
2023-08-28T04:34:07
159,086,319
15
47
null
2022-04-15T16:20:34
2018-11-25T23:57:31
C++
UTF-8
C++
false
false
15,721
cpp
MonitorData.cpp
#include <string.h> #include <stdlib.h> #include <time.h> #include <stdio.h> #include "zlib.h" #include "MonitorData.h" //********************************************************************************************** //********************************************************************************************** //********************************** DO NOT EDIT THIS FILE *********************************** //********************************************************************************************** //********************************************************************************************** #define BUFFER_SIZE_START 2048 #define BUFFER_RESIZE_VALUE 1024 extern void set_bit( unsigned char p[], int bit); extern void unset_bit(unsigned char p[], int bit); extern int get_bit( unsigned char p[], int bit); // ------------------ Support Routine ----------------------------- ////////////////////////////////////////////////////////////////////// // qsort compare routine ////////////////////////////////////////////////////////////////////// int compar_name( const void *e1, const void *e2 ) { MON_ELEMENT *data1,*data2; data1 = *(MON_ELEMENT **)e1; data2 = *(MON_ELEMENT **)e2; #ifdef _WIN32 return _stricmp(data1->label, data2->label); #else return strcasecmp(data1->label,data2->label); #endif } int compar_index( const void *e1, const void *e2 ) { MON_ELEMENT *data1,*data2; data1 = (MON_ELEMENT *)e1; data2 = (MON_ELEMENT *)e2; return data1->id - data2->id; } // ------------------ Game Data Object ---------------------------- ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// //CMonitorData::CMonitorData(GenericNotifier *notifier) //: m_notifier(notifier) CMonitorData::CMonitorData() { m_sequence = 1; m_buffer = NULL; m_nbuffer = 0; m_count = 0; m_max = ELEMENT_MAX_START; m_data = new MON_ELEMENT[m_max]; for(int x=0;x<m_max;x++) { memset(&m_data[x],0,sizeof(MON_ELEMENT)); } resize_buffer(BUFFER_SIZE_START); } CMonitorData::~CMonitorData() { int x; for(x=0;x<m_count;x++) { if( m_data[x].discription ) delete [] m_data[x].discription; if( m_data[x].label ) delete [] m_data[x].label; } if(m_buffer) delete m_buffer; if( m_data ) delete [] m_data; } void CMonitorData::setMax(int _max) { if( m_data ) delete [] m_data; m_max = _max; m_data = new MON_ELEMENT[m_max]; for(int x=0;x<m_max;x++) { memset(&m_data[x],0,sizeof(MON_ELEMENT)); } } void CMonitorData::resize_buffer(int new_size) { char *temp; if( m_buffer != NULL ) { temp = m_buffer; m_buffer = new char[ new_size]; memcpy(m_buffer,temp,m_nbuffer); m_nbuffer = new_size; delete [] temp; } else { m_buffer = new char[ new_size]; m_nbuffer = new_size; } } void CMonitorData::send( UdpConnection *con,short & sequence,short msg,char *data ) { int len; unsigned short size; char *p; size = (unsigned short)strlen(data)+1; p = (char *)malloc(size+6); len = 0; packShort(p+len, len, msg); packShort(p+len, len, m_sequence); packShort(p+len, len, size); memcpy( p+len, data, size ); con->Send(cUdpChannelReliable1, p, size + 6); free(p); sequence++; } void CMonitorData::send( UdpConnection *con,short & sequence,short msg,char *data,int size ) { unsigned long compress_len; int len; unsigned short usize; char *p; int rnt; if( CURRENT_API_VERSION != CURRENT_API_3 ) return; p = (char *)malloc(size+6+1000); len = 0; memset(p,0,size+6+1000); packShort(p+len, len, msg); packShort(p+len, len, m_sequence); compress_len = size + 1000; rnt = compress2((Bytef *)p+6,&compress_len,(Bytef *)data,(long)size,2); if( rnt != Z_OK ) { free(p); printf("CMonitor::send-compress failed, error=%d size =%d\n",rnt,size); return; } usize = (unsigned short)compress_len; packShort(p+len, len, usize); usize += 6; con->Send(cUdpChannelReliable1, p, usize); free(p); sequence++; } bool CMonitorData::processHierarchyRequestBlock( UdpConnection *con, short & sequence ) { int x,size,count,len; char temp[512]; if( m_count == 0 ) { send(con,sequence,MON_MSG_REPLY_HIERARCHY,"NOTREADY"); return 0; } memset(m_buffer,0,16); send(con,sequence,MON_MSG_REPLY_HIERARCHY_BLOCK_BEGIN,m_buffer); MON_ELEMENT **me; me = new MON_ELEMENT *[m_count]; for(x=0;x<m_count;x++) me[x] = &m_data[x]; qsort(me,m_count,sizeof(MON_ELEMENT *),compar_name); count = x = size = 0; while(x<m_count) { len = sprintf(temp,"%s,%X,%d|",me[x]->label,me[x]->id,me[x]->ping); if( len+size >= m_nbuffer ) resize_buffer(size+BUFFER_RESIZE_VALUE); strcpy(&m_buffer[size],temp); size += len; if( size > 64000 ) { send(con,sequence,MON_MSG_REPLY_HIERARCHY_BLOCK,m_buffer,size+1); memset(m_buffer,0,size); count++; size = 0; } x++; } delete [] me; if( size > 0 ) { send(con,sequence,MON_MSG_REPLY_HIERARCHY_BLOCK,m_buffer,size+1); memset(m_buffer,0, 16); count++; size = 0; } memset(m_buffer,0, 16); send(con,sequence,MON_MSG_REPLY_HIERARCHY_BLOCK_END,m_buffer); return 1; } bool CMonitorData::processElementsRequest( UdpConnection *con, short & sequence, char * data, int /* dataLen */ , long lastUpdateTime ) { char tmp[200]; int x,id; int size; int count; char **list; memset(m_buffer,0,16); if( !strcmp(data,"-1") ) { size = 0; for (x=0;x<m_count;x++) { sprintf(tmp,"%d %x|",m_data[x].id,m_data[x].value); size += (int)strlen(tmp); if( size >= m_nbuffer ) resize_buffer(size+BUFFER_RESIZE_VALUE); strcat(m_buffer,tmp); if( size > 65000 ) { send(con,sequence,MON_MSG_REPLY_ELEMENTS,m_buffer); memset(m_buffer,0,16); } } if( size ) send(con,sequence,MON_MSG_REPLY_ELEMENTS,m_buffer); return 1; } if( !strcmp(data,"-2") ) { size = 0; count = 0; for (x=0;x<m_count;x++) { if( lastUpdateTime <= m_data[x].ChangedTime ) { sprintf(tmp,"%d %x|",m_data[x].id,m_data[x].value); size += (int)strlen(tmp); if( size >= m_nbuffer ) resize_buffer(size+BUFFER_RESIZE_VALUE); strcat(m_buffer,tmp); count++; } if( size > 65000 ) { send(con,sequence,MON_MSG_REPLY_ELEMENTS,m_buffer); memset(m_buffer,0,16); } } if ( count ) { send(con,sequence,MON_MSG_REPLY_ELEMENTS,m_buffer); return 1; } return 0; } list = new char * [m_max]; count = parseList( list, data,'|',m_max); memset(m_buffer,0,16); size = 0; for(x=0;x<count;x++) { id = atoi(list[x]); for(x=0;x<m_count;x++) if( m_data[x].id == id ) { sprintf(tmp,"%d %x|",m_data[x].id, m_data[x].value); size += (int)strlen(tmp); if( size >= m_nbuffer ) resize_buffer(size+BUFFER_RESIZE_VALUE); strcat(m_buffer,tmp); } } delete [] list; if( count > 0 ) send(con,sequence,MON_MSG_REPLY_ELEMENTS,m_buffer); return 0; } bool CMonitorData::processDescriptionRequest(UdpConnection *con, short & sequence, char * userData, int , unsigned char *mark) { char line[4096]; char tmp[400]; int x,id,size; int flag; char *p; size = 0; memset(m_buffer,0,16); strcpy(line,userData); p = strtok(line,"|"); flag = 0; if( strstr(p,"next") ) { for(x=0;x<m_count;x++) { if( get_bit(mark,x) == 0 ) { set_bit( mark, x ); if( m_data[x].discription != NULL ) { sprintf(tmp,"%d,%s|",m_data[x].id, m_data[x].discription); size += (int)strlen(tmp); if( size >= m_nbuffer ) resize_buffer(size+BUFFER_RESIZE_VALUE); strcat(m_buffer,tmp); send(con,sequence,MON_MSG_REPLY_DESCRIPTION,m_buffer); return 1; } } } } else { if( p ) { size = 0; flag = 0; id = atoi(p); for(x=0;x<m_count;x++) { if( flag == 0 && id == m_data[x].id ) flag = 1; if( flag ) { flag = 2; set_bit(mark,x); if( m_data[x].discription != NULL ) { sprintf(tmp,"%d,%s|",m_data[x].id, m_data[x].discription); size += (int)strlen(tmp); if( size >= m_nbuffer ) resize_buffer(size+BUFFER_RESIZE_VALUE); strcat(m_buffer,tmp); if( size >= 2000 || m_data[x].discription ) { send(con,sequence,MON_MSG_REPLY_DESCRIPTION,m_buffer); return 1; } } } } } } if( flag == 2 ) send(con,sequence,MON_MSG_REPLY_DESCRIPTION,m_buffer); send(con,sequence,MON_MSG_REPLY_DESCRIPTION,"none"); return 0; } int CMonitorData::add(const char *label, int id, int ping, const char *des ) { int x; if( strlen(label) >= 127 ) { printf("MonAPI Error: add() label exceeds length of 127. ->%s\n",label); return 0; } for(x=0;x<m_count;x++) { if( id == m_data[x].id ) { printf("MonAPI: assign new Id (%d) %s -> %s\n",id,m_data[x].label,label); m_data[x].ping = pingValue( ping ); m_data[x].value = 0; m_data[x].id = id; //******* Label *********** if( m_data[x].label ) delete [] m_data[x].label; m_data[x].label = new char [strlen(label)+1]; strcpy(m_data[x].label,label); //******* Discription ****** if( m_data[x].discription != NULL ) delete [] m_data[x].discription; m_data[x].discription = NULL; if( des ) { m_data[x].discription = new char [strlen(des)+1]; strcpy(m_data[x].discription,des); } qsort(m_data,m_count,sizeof(MON_ELEMENT),compar_index); return 1; } if( !strcmp(label,m_data[x].label) ) { printf("MonAPI ERROR: Label already found %s Id: old(%d) new(%d).\n",label,m_data[x].id,id); return 0; } } if( m_max == m_count + 1 ) { printf("MonitorObject: max element reached [%d].\n%s\nContact David Taylor (858) 577-3155.\n",m_max,label); return 0; } m_data[m_count].ping = pingValue( ping ); m_data[m_count].value = 0; m_data[m_count].id = id; if(m_data[m_count].label) delete [] m_data[m_count].label; m_data[m_count].label = new char [strlen(label)+1]; strcpy(m_data[m_count].label,label); if( des ) { if( m_data[x].discription ) delete [] m_data[x].discription; m_data[x].discription = new char [strlen(des)+1]; strcpy(m_data[x].discription,des); } m_count++; qsort(m_data,m_count,sizeof(MON_ELEMENT),compar_index); return 1; } int CMonitorData::setDescription( int Id, const char *Description , int & mode) { int x; for(x=0;x<m_count;x++) { if( Id == m_data[x].id ) { if( Description == NULL ) { if( m_data[x].discription ) delete [] m_data[x].discription; m_data[x].discription = NULL; mode = 0; return x; } if( m_data[x].discription && !strcmp( m_data[x].discription, Description ) ) return -1; if( m_data[x].discription ) delete [] m_data[x].discription; m_data[x].discription = new char [ strlen(Description) +1 ]; strcpy(m_data[x].discription,Description); mode = 1; return x; } } return -1; } int CMonitorData::pingValue(int p) { switch(p) { case MON_HISTORY: return (60 * 5); case MON_ONLY_SHOW: return 0; default: printf("MonAPI ERROR: add() function is not using defined constances.\n"); printf("Please use one of the following:\n"); printf("\tMON_PING_15\n\tMON_PING_30\n\tMON_PING_60\n\tMON_PING_5MIN\n"); break; } return 0; } void CMonitorData::set(int Id, int value) { int high, i, low; for ( low=(-1), high=m_count; high-low > 1; ) { i = (high+low) / 2; if ( Id <= m_data[i].id ) high = i; else low = i; } if ( high < m_count && Id==m_data[high].id ) { if( m_data[high].ChangedTime == 0 || m_data[high].value != value ) m_data[high].ChangedTime = (long)time(NULL); m_data[high].value = value; } } void CMonitorData::remove(int Id) { int x; if( m_count == 1 ) { if( m_data[0].label ) delete [] m_data[0].label; if( m_data[0].discription ) delete [] m_data[0].discription; m_data[0].label = 0; m_data[0].id = 0; m_data[0].value = 0;; m_data[0].ping = 0;; m_count--; return; } for(x=0;x<m_count;x++) { if( Id == m_data[x].id ) { if( m_data[x].label ) delete [] m_data[x].label; if( m_data[x].discription ) delete [] m_data[x].discription; m_data[x].label = 0; if( x < m_count-1 ) { memcpy(&m_data[x],&m_data[m_count-1],sizeof(MON_ELEMENT)); } memset(&m_data[m_count-1],0,sizeof(MON_ELEMENT)); m_count--; return; } } } int CMonitorData::parseList( char **list, char *data, char tok , int max ) { int count; int cnt; if( data == NULL ) return 0; list[0] = data; count = 1; cnt =0; while( cnt < max && *data > 0 ) { if( *data == tok ) { *data = 0; data++; cnt++; list[count] = data; if( *data ) count++; } cnt++; if( *data ) data++; } return count; } void CMonitorData::dump() { printf("********** Monitor API Dump *******************\n"); printf(" Version: %d\n",CURRENT_API_VERSION); printf("\ncount: %d\n", m_count); printf("\t%-40s %8s\t%s\t%s\n","Label","Id","Ping","Value"); for(int x=0;x<m_count;x++) { printf("\t%-40s % 8d\t%d\t%d\n", m_data[x].label, m_data[x].id, m_data[x].value, m_data[x].ping); } printf("***********************************************\n"); } /* int CMonitorData::compress(char *dest,unsigned long *destLen,const char *source,long sourceLen,int level) { z_stream stream; int err; stream.next_in = (Bytef*)source; stream.avail_in = (uInt)sourceLen; stream.next_out = (Bytef *)dest; stream.avail_out = (uInt)*destLen; if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; stream.zalloc = (alloc_func)0; stream.zfree = (free_func)0; stream.opaque = (voidpf)0; err = deflateInit(&stream, level); if (err != Z_OK) return err; err = deflate(&stream, Z_FINISH); if (err != Z_STREAM_END) { deflateEnd(&stream); return err == Z_OK ? Z_BUF_ERROR : err; } *destLen = stream.total_out; err = deflateEnd(&stream); return err; } */ ////////////////////////////////////////////////////////////////////////////// // ------------------ Pack and unpack Routine ----------------------------- /////////////////////////////////////////////////////////////////////////////// int packString(char *buffer, int & len, char * value) { int size; size = (int)strlen(value)+1; memcpy(buffer,value, size); len += size; return size; } int packByte(char *buffer, int & len, char value) { buffer[0] = value; len++; return 1; } int packShort(char *buffer, int & len, short value) { char *p; p = (char *)&value; #ifdef _sun buffer[0] = p[1]; buffer[1] = p[0]; #else buffer[0] = p[0]; buffer[1] = p[1]; #endif len += 2; return 2; } int packShort( char *buffer, int & len, unsigned short value ) { char *p; p = (char *)&value; #ifdef _sun buffer[0] = p[1]; buffer[1] = p[0]; #else buffer[0] = p[0]; buffer[1] = p[1]; #endif len += 2; return 2; } int unpackShort(char *buffer, int & len, short & value) { char *p; p = (char *)&value; #ifdef _sun p[1] = buffer[0]; p[0] = buffer[1]; #else p[0] = buffer[0]; p[1] = buffer[1]; #endif len += 2; return 2; } int unpackShort(char *buffer, int & len, unsigned short & value) { char *p; p = (char *)&value; #ifdef _sun p[1] = buffer[0]; p[0] = buffer[1]; #else p[0] = buffer[0]; p[1] = buffer[1]; #endif len += 2; return 2; } int unpackByte( char *buffer, int & len, char &value) { value = buffer[0]; len++; return 1; }
6f53ec5676d86d4d16994f8307020f81ed9dea12
55a0b63b9def3be7f530db6f2be1c15b98e66e3d
/extendedUtils/ofSystemCall.h
bfd7d73dca5e012959ca1b928df849fa4b41ad85
[]
no_license
alexaverill/of-extended
26e0377d579f35a2b84675e4f763147e8d848a77
d2d20b48c3fdf003c84716e3c8191d92a2a4d9d6
refs/heads/master
2021-05-08T13:37:47.065930
2012-06-21T18:50:01
2012-06-21T18:50:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,310
h
ofSystemCall.h
#ifndef _THREADED_OBJECT #define _THREADED_OBJECT #include "ofMain.h" #include "ofxThread.h" class ofSysCall : public ofxThread{ public: bool newCommand; string command; int count; // threaded fucntions that share data need to use lock (mutex) // and unlock in order to write to that data // otherwise it's possible to get crashes. // // also no opengl specific stuff will work in a thread... // threads can't create textures, or draw stuff on the screen // since opengl is single thread safe //-------------------------- threadedObject(){ count = 0; } void start(){ startThread(true, false); // blocking, verbose } void stop(){ stopThread(); } //-------------------------- void threadedFunction(){ while( isThreadRunning() != 0 ){ if( lock() ){ if(newCommand){ system(command.c_str()); newCommand=false; } unlock(); stop(); } } } //-------------------------- void runSystemCall(string cmd){ if( lock() ){ command=cmd; newCommand=true; start(); unlock(); } } bool callIsRunning(){ return (isThreadRunning() !=0); } }; #endif
87adc31e50758357d0a4471f9cf17912f3a95b0c
0103454b52923519a02260ade79ded03d345efa9
/driver/port.build/module.numpy.f2py.rules.cpp
c0b5b764932808a4fe309d0df3a8efa3f3f947aa
[]
no_license
podema/echo3d
8c7722a942c187a1d9ee01fe3120439cdce7dd6b
42af02f01d56c49f0616289b1f601bd1e8dbc643
refs/heads/master
2016-09-06T16:22:13.043969
2015-03-24T10:39:19
2015-03-24T10:39:19
32,747,234
0
0
null
null
null
null
UTF-8
C++
false
false
1,399,272
cpp
module.numpy.f2py.rules.cpp
// Generated code for Python source for module 'numpy.f2py.rules' // created by Nuitka version 0.5.5.3 // This code is in part copyright 2014 Kay Hayen. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include "nuitka/prelude.hpp" #include "__helpers.hpp" // The _module_numpy$f2py$rules is a Python object pointer of module type. // Note: For full compatability with CPython, every module variable access // needs to go through it except for cases where the module cannot possibly // have changed in the mean time. PyObject *module_numpy$f2py$rules; PyDictObject *moduledict_numpy$f2py$rules; // The module constants used extern PyObject *const_int_0; extern PyObject *const_int_pos_1; extern PyObject *const_str_chr_9; extern PyObject *const_str_empty; extern PyObject *const_str_space; extern PyObject *const_dict_empty; extern PyObject *const_int_pos_10; extern PyObject *const_int_pos_66; extern PyObject *const_int_pos_72; extern PyObject *const_str_chr_42; extern PyObject *const_str_chr_44; extern PyObject *const_str_chr_124; extern PyObject *const_str_newline; extern PyObject *const_str_plain_O; extern PyObject *const_str_plain__; extern PyObject *const_str_plain_a; extern PyObject *const_str_plain_b; extern PyObject *const_str_plain_c; extern PyObject *const_str_plain_f; extern PyObject *const_str_plain_i; extern PyObject *const_str_plain_k; extern PyObject *const_str_plain_l; extern PyObject *const_str_plain_m; extern PyObject *const_str_plain_n; extern PyObject *const_str_plain_r; extern PyObject *const_str_plain_u; extern PyObject *const_str_plain_w; extern PyObject *const_tuple_empty; extern PyObject *const_str_plain_ar; extern PyObject *const_str_plain_bi; static PyObject *const_str_plain_cr; extern PyObject *const_str_plain_fn; extern PyObject *const_str_plain_mr; extern PyObject *const_str_plain_nb; extern PyObject *const_str_plain_os; extern PyObject *const_str_plain_rd; extern PyObject *const_str_plain_um; static PyObject *const_str_plain_wn; extern PyObject *const_str_plain_api; static PyObject *const_str_plain_cfs; extern PyObject *const_str_plain_doc; static PyObject *const_str_plain_ltx; static PyObject *const_str_plain_nb1; static PyObject *const_str_plain_nth; extern PyObject *const_str_plain_ret; extern PyObject *const_str_plain_str; extern PyObject *const_str_plain_sys; extern PyObject *const_str_plain_use; extern PyObject *const_str_plain_var; extern PyObject *const_str_plain_vrd; extern PyObject *const_str_plain_SWAP; extern PyObject *const_str_plain_args; extern PyObject *const_str_plain_body; extern PyObject *const_str_plain_code; extern PyObject *const_str_plain_copy; extern PyObject *const_str_plain_csrc; extern PyObject *const_str_plain_decl; extern PyObject *const_str_plain_docs; static PyObject *const_str_plain_fsrc; extern PyObject *const_str_plain_join; extern PyObject *const_str_plain_keys; extern PyObject *const_str_plain_l_or; extern PyObject *const_str_plain_list; extern PyObject *const_str_plain_name; extern PyObject *const_str_plain_need; static PyObject *const_str_plain_nthk; extern PyObject *const_str_plain_path; extern PyObject *const_str_plain_rout; extern PyObject *const_str_plain_show; static PyObject *const_str_plain_stnd; extern PyObject *const_str_plain_time; extern PyObject *const_str_plain_vars; extern PyObject *const_str_plain_void; extern PyObject *const_str_plain_wrap; extern PyObject *const_str_plain_block; extern PyObject *const_str_plain_check; extern PyObject *const_str_plain_close; extern PyObject *const_str_plain_entry; extern PyObject *const_str_plain_items; extern PyObject *const_str_plain_l_and; extern PyObject *const_str_plain_l_not; extern PyObject *const_str_plain_latex; extern PyObject *const_str_plain_lines; extern PyObject *const_str_plain_needs; extern PyObject *const_str_plain_rules; extern PyObject *const_str_plain_split; extern PyObject *const_str_plain_write; extern PyObject *const_str_plain_F_FUNC; extern PyObject *const_str_plain_MINMAX; extern PyObject *const_str_plain__break; extern PyObject *const_str_plain__check; static PyObject *const_str_plain__rules; extern PyObject *const_str_plain_append; extern PyObject *const_str_plain_assubr; extern PyObject *const_str_plain_cfuncs; extern PyObject *const_str_plain_depend; extern PyObject *const_str_plain_hidden; extern PyObject *const_str_plain_kwlist; extern PyObject *const_str_plain_method; extern PyObject *const_str_plain_pprint; static PyObject *const_str_plain_pyname; extern PyObject *const_str_plain_return; extern PyObject *const_str_plain_stderr; extern PyObject *const_str_plain_stdout; extern PyObject *const_str_plain_string; extern PyObject *const_str_plain___doc__; extern PyObject *const_str_plain__depend; extern PyObject *const_str_plain_apiname; static PyObject *const_str_plain_asctime; extern PyObject *const_str_plain_auxvars; extern PyObject *const_str_plain_coutput; extern PyObject *const_str_plain_depargs; extern PyObject *const_str_plain_docsign; extern PyObject *const_str_plain_errmess; extern PyObject *const_str_plain_forcomb; extern PyObject *const_str_plain_freemem; extern PyObject *const_str_plain_hasnote; extern PyObject *const_str_plain_isarray; static PyObject *const_str_plain_keys_xa; static PyObject *const_str_plain_modnote; static PyObject *const_str_plain_nb_list; extern PyObject *const_str_plain_optargs; extern PyObject *const_str_plain_options; extern PyObject *const_str_plain_outmess; extern PyObject *const_str_plain_replace; extern PyObject *const_str_plain_restdoc; extern PyObject *const_str_plain_reverse; extern PyObject *const_str_plain_rformat; extern PyObject *const_str_plain_savevrd; static PyObject *const_str_plain_sepdict; static PyObject *const_str_plain_topyarr; extern PyObject *const_str_plain_version; extern PyObject *const_str_plain___file__; extern PyObject *const_str_plain_auxfuncs; extern PyObject *const_str_plain_buildapi; extern PyObject *const_str_plain_deepcopy; extern PyObject *const_str_plain_division; extern PyObject *const_str_plain_docshort; static PyObject *const_str_plain_functype; extern PyObject *const_str_plain_gentitle; extern PyObject *const_str_plain_getargs2; extern PyObject *const_str_plain_includes; extern PyObject *const_str_plain_isscalar; extern PyObject *const_str_plain_isstring; static PyObject *const_str_plain_kwlistxa; extern PyObject *const_str_plain_latexdoc; extern PyObject *const_str_plain_routnote; extern PyObject *const_str_plain_sign2map; extern PyObject *const_str_plain_typedefs; static PyObject *const_str_plain_unsigned; static PyObject *const_str_plain_xaformat; static PyObject *const_str_plain_arg_rules; static PyObject *const_str_plain_argformat; static PyObject *const_str_plain_args_capi; static PyObject *const_str_plain_aux_rules; extern PyObject *const_str_plain_buildpath; extern PyObject *const_str_plain_callbacks; extern PyObject *const_str_plain_capi_maps; extern PyObject *const_str_plain_cppmacros; extern PyObject *const_str_plain_debugcapi; extern PyObject *const_str_plain_docreturn; static PyObject *const_str_plain_docsignxa; extern PyObject *const_str_plain_docstrcbs; extern PyObject *const_str_plain_docstropt; extern PyObject *const_str_plain_docstrout; extern PyObject *const_str_plain_docstrreq; extern PyObject *const_str_plain_dorestdoc; extern PyObject *const_str_plain_frompyobj; extern PyObject *const_str_plain_func2subr; extern PyObject *const_str_plain_get_needs; extern PyObject *const_str_plain_includes0; extern PyObject *const_str_plain_interface; extern PyObject *const_str_plain_iscomplex; extern PyObject *const_str_plain_islogical; static PyObject *const_str_plain_keyformat; static PyObject *const_str_plain_keys_capi; static PyObject *const_str_plain_kwlistopt; static PyObject *const_str_plain_localtime; extern PyObject *const_str_plain_long_long; static PyObject *const_str_plain_mod_rules; extern PyObject *const_str_plain_pyobjfrom; static PyObject *const_str_plain_setjmpbuf; extern PyObject *const_str_plain_use_rules; extern PyObject *const_str_plain_CFUNCSMESS; extern PyObject *const_str_plain_CHECKARRAY; extern PyObject *const_str_plain_STRINGFREE; extern PyObject *const_str_plain___future__; extern PyObject *const_str_plain_applyrules; extern PyObject *const_str_plain_buildhooks; extern PyObject *const_str_plain_dictappend; extern PyObject *const_str_plain_docsignopt; extern PyObject *const_str_plain_dolatexdoc; extern PyObject *const_str_plain_interfaced; extern PyObject *const_str_plain_isexternal; extern PyObject *const_str_plain_isfunction; extern PyObject *const_str_plain_isintent_c; extern PyObject *const_str_plain_isoptional; extern PyObject *const_str_plain_isrequired; extern PyObject *const_str_plain_isunsigned; static PyObject *const_str_plain_modulebody; extern PyObject *const_str_plain_modulename; static PyObject *const_str_plain_rout_rules; extern PyObject *const_str_plain_shortlatex; extern PyObject *const_str_plain_stripcomma; extern PyObject *const_str_plain_CHECKSCALAR; extern PyObject *const_str_plain_CHECKSTRING; extern PyObject *const_str_plain___version__; extern PyObject *const_str_plain_buildmodule; static PyObject *const_str_plain_callfortran; static PyObject *const_str_plain_check_rules; extern PyObject *const_str_plain_commonhooks; extern PyObject *const_str_plain_docstrsigns; extern PyObject *const_str_plain_f90modhooks; extern PyObject *const_str_plain_isint1array; extern PyObject *const_str_plain_islong_long; extern PyObject *const_str_plain_long_double; extern PyObject *const_str_plain_modsign2map; static PyObject *const_str_plain_need_cfuncs; static PyObject *const_str_plain_routine_def; extern PyObject *const_str_plain_CHECKGENERIC; extern PyObject *const_str_plain_buildusevars; extern PyObject *const_str_plain_common_rules; static PyObject *const_str_plain_defmod_rules; extern PyObject *const_str_plain_docsignature; static PyObject *const_str_plain_docsignshort; extern PyObject *const_str_plain_f2py_version; extern PyObject *const_str_plain_f90mod_rules; static PyObject *const_str_plain_funcwrappers; extern PyObject *const_str_plain_hasexternals; extern PyObject *const_str_plain_hasinitvalue; extern PyObject *const_str_plain_isintent_aux; extern PyObject *const_str_plain_isintent_out; extern PyObject *const_str_plain_issubroutine; extern PyObject *const_str_plain_isthreadsafe; static PyObject *const_str_plain_module_rules; static PyObject *const_str_plain_returnformat; extern PyObject *const_str_plain_routine_defs; extern PyObject *const_str_plain_routsign2map; extern PyObject *const_str_plain_userincludes; extern PyObject *const_tuple_str_chr_42_tuple; extern PyObject *const_str_plain_F_WRAPPEDFUNC; static PyObject *const_str_plain_funcwrappers2; extern PyObject *const_str_plain_hasresultnote; extern PyObject *const_str_plain_isintent_copy; extern PyObject *const_str_plain_isintent_hide; extern PyObject *const_str_plain_islong_double; extern PyObject *const_str_plain_isstringarray; static PyObject *const_str_plain_routine_rules; extern PyObject *const_str_plain_separatorsfor; extern PyObject *const_str_plain_unsigned_char; extern PyObject *const_tuple_int_0_int_0_tuple; static PyObject *const_str_plain_closepyobjfrom; static PyObject *const_str_plain_docsignxashort; extern PyObject *const_str_plain_externroutines; extern PyObject *const_str_plain_iscomplexarray; extern PyObject *const_str_plain_isdummyroutine; extern PyObject *const_str_plain_isintent_inout; extern PyObject *const_str_plain_islong_complex; extern PyObject *const_str_plain_latexdocstrcbs; extern PyObject *const_str_plain_latexdocstropt; extern PyObject *const_str_plain_latexdocstrout; extern PyObject *const_str_plain_latexdocstrreq; extern PyObject *const_str_plain_print_function; static PyObject *const_str_plain_routdebugenter; static PyObject *const_str_plain_routdebugleave; extern PyObject *const_str_plain_unsigned_short; extern PyObject *const_str_plain_absolute_import; static PyObject *const_str_plain_docsignoptshort; extern PyObject *const_str_plain_initcommonhooks; extern PyObject *const_str_plain_initf90modhooks; extern PyObject *const_str_plain_isfunction_wrap; extern PyObject *const_str_plain_ismoduleroutine; extern PyObject *const_str_plain_isunsigned_char; static PyObject *const_str_plain_cleanupfrompyobj; extern PyObject *const_str_plain_hascallstatement; static PyObject *const_str_plain_initf2pywraphook; extern PyObject *const_str_plain_isarrayofstrings; extern PyObject *const_str_plain_isintent_nothide; extern PyObject *const_str_plain_isstringfunction; extern PyObject *const_str_plain_isunsigned_short; extern PyObject *const_str_plain_latexdocstrsigns; static PyObject *const_str_plain_routdebugfailure; extern PyObject *const_tuple_str_plain_rout_tuple; static PyObject *const_str_plain_callcompaqfortran; static PyObject *const_str_plain_callfortranappend; extern PyObject *const_str_plain_create_cb_arglist; static PyObject *const_str_plain_docsignatureshort; static PyObject *const_str_plain_initf2pywraphooks; extern PyObject *const_str_plain_iscomplexfunction; extern PyObject *const_str_plain_isintent_callback; extern PyObject *const_str_plain_issubroutine_wrap; static PyObject *const_str_plain_typedef_need_dict; static PyObject *const_str_plain_callfortranroutine; static PyObject *const_str_plain_declfortranroutine; extern PyObject *const_str_plain_isintent_overwrite; extern PyObject *const_str_plain_typedefs_generated; static PyObject *const_str_plain_unsigned_long_long; extern PyObject *const_tuple_str_plain_cfuncs_tuple; extern PyObject *const_str_plain_complex_long_double; extern PyObject *const_str_plain_f2py_wrapper_output; extern PyObject *const_str_plain_islong_longfunction; extern PyObject *const_str_plain_isunsigned_chararray; extern PyObject *const_str_plain_isunsigned_long_long; extern PyObject *const_str_plain_islong_doublefunction; extern PyObject *const_str_plain_isunsigned_shortarray; extern PyObject *const_tuple_str_plain_capi_maps_tuple; extern PyObject *const_tuple_str_plain_func2subr_tuple; static PyObject *const_tuple_str_plain_use_rules_tuple; extern PyObject *const_str_plain_iscomplexfunction_warn; static PyObject *const_str_plain_latexdocsignatureshort; extern PyObject *const_str_plain_issigned_long_longarray; extern PyObject *const_tuple_str_plain___version___tuple; static PyObject *const_tuple_str_plain_common_rules_tuple; extern PyObject *const_tuple_str_plain_f90mod_rules_tuple; extern PyObject *const_str_plain_isunsigned_long_longarray; static PyObject *const_tuple_str_plain_m_str_plain_um_tuple; static PyObject *const_dict_055a5e2e8d3048ab4922e8d2791b57c7; static PyObject *const_dict_6c662d5dfca8638087abab46e2002cca; static PyObject *const_dict_c3b8e398c8954454fba85f0a68a2b3f2; static PyObject *const_dict_f901ef362e29b410a7de5c49b0849102; static PyObject *const_list_0725c8ade74f8f28b621ba88c880b6bd_list; static PyObject *const_list_0a418c59c89f9fccd0e4ae0f11838976_list; static PyObject *const_list_10b104c3768849b37f92dfc64a682f14_list; static PyObject *const_list_2a1cb5f1b6ad96684950fc2bb3e18869_list; static PyObject *const_list_32f32ffbbd5d0469a259f67cd7bedf23_list; static PyObject *const_list_53e499b918b44aac469e052ee883b608_list; static PyObject *const_list_63cf9afba8d0564dfc4c1155a17b0c8c_list; static PyObject *const_list_83502bc928309bee706fd67dc708d8b5_list; static PyObject *const_list_917626a5cab86448639269d43350330f_list; static PyObject *const_list_9af870e8ed9f6c337cdc0c36a763a6f2_list; static PyObject *const_list_a6fb55f787096d197a68d518259f030c_list; static PyObject *const_list_d9758b2de662a4320da70ff340579452_list; static PyObject *const_str_digest_003412ca7c035dda44b06c662ca81aa5; extern PyObject *const_str_digest_00712398ca7c9a987043e29bb7424f6c; static PyObject *const_str_digest_007d50f5babd3a75f4137e740257a41e; static PyObject *const_str_digest_0250bf479570e6e650f305dc350be4a1; extern PyObject *const_str_digest_034683ceccce831b3c4724622e7c61e0; static PyObject *const_str_digest_07686c6fa7631f753789a51e91f8665c; static PyObject *const_str_digest_0801662fed55e93695b42ad17d40560e; static PyObject *const_str_digest_0805118bce28b0db2adfe1c873c5fd07; static PyObject *const_str_digest_098be4f85b6147b2a568faf0c3a53940; static PyObject *const_str_digest_09de792d93cc23e6cd4f80b6fa458fd3; static PyObject *const_str_digest_0b2ee4e163c7715c3637d39da00ca3d5; static PyObject *const_str_digest_0c93bbaa020061df40a3e0e1970c67b3; static PyObject *const_str_digest_0d59acae85d063e3f672d8da6daa0a85; static PyObject *const_str_digest_0e629208d1577c2a84c6eb9e890eff33; static PyObject *const_str_digest_0e6d8ecfca61c030ce40551480a7c4c8; static PyObject *const_str_digest_0f31941b1b984d687d1832a3265bb0bd; static PyObject *const_str_digest_103f7cae04ee1c2adcfe2b30f8ef4e52; static PyObject *const_str_digest_1177440af11d75a5bc642deb1185d476; static PyObject *const_str_digest_11a75f7b161c1a48991f1986e1eab885; static PyObject *const_str_digest_135742a92d97efe0fd436435c081798f; static PyObject *const_str_digest_140b8c5286854407f508a0dae9b51bd0; static PyObject *const_str_digest_1422ad36fc74e5255a7c794563fb3843; static PyObject *const_str_digest_1480e469b585979a7f4d96343815e357; static PyObject *const_str_digest_152c5ee2b2e7dc93bd9f827427a9f43c; static PyObject *const_str_digest_15904c114d20d74a77febfc4dfb77b85; static PyObject *const_str_digest_1632bec27e568661b517322c67a7aa13; static PyObject *const_str_digest_163dc3507d0a117b14a81f27113a31a1; static PyObject *const_str_digest_1678f341d6d4b9988981a9652fd0aaf7; static PyObject *const_str_digest_16cee986fdf2b02b5fedad397daf617e; static PyObject *const_str_digest_16d4ea9ba4d55fcaab93d0516b4d9157; static PyObject *const_str_digest_17650eb00d01333f79fd06fb9c61cd9d; static PyObject *const_str_digest_18429b2363d61bb45e6f19ee193369c0; static PyObject *const_str_digest_18c508c400e195b421fc11655c7a57b2; static PyObject *const_str_digest_18f58632137400bb4c14c923f5d57bbb; static PyObject *const_str_digest_1957922661d0ebb79028a2cdcfc623e3; static PyObject *const_str_digest_196e1deb2a177ed3e9d78c2c4c6ca852; static PyObject *const_str_digest_19c7030524451d92c931f37fca9681ea; static PyObject *const_str_digest_1d098d8f36c3c8a6d6ad4afd172177b1; static PyObject *const_str_digest_1e609e98e6387a0eff2e0582a23e9403; static PyObject *const_str_digest_2024ee09e6b745cfd788ae7f21f8ccb6; static PyObject *const_str_digest_20c9fc8f6f5e6e56dc857edd08f619c0; extern PyObject *const_str_digest_21848c21ee715afb46bb5dff54f12759; static PyObject *const_str_digest_231cb7effd90b3fd8e0b9b743f769003; extern PyObject *const_str_digest_23b58def11b45727d3351702515f86af; extern PyObject *const_str_digest_2440d16610baa62c4946b481a40982f8; static PyObject *const_str_digest_26528d4a51309a8f8ddb2c87bfb4d547; static PyObject *const_str_digest_26c16d68737087d7dec283685f968bf7; static PyObject *const_str_digest_2722011c07957ec4178692a6adc697b7; static PyObject *const_str_digest_27b50ea3e5fe50c3f9d4789d13716081; static PyObject *const_str_digest_2861f69496685cab3ecd9e5bb974c70d; static PyObject *const_str_digest_2936888493c6440f01314e5ae776f3e1; static PyObject *const_str_digest_2bfab3a3bf25bd01b8093743c94c68c6; static PyObject *const_str_digest_2d092b06961d63e3c95e44a4ec6fc82d; static PyObject *const_str_digest_2dc6983da48dda8d3f9d4105993903cd; static PyObject *const_str_digest_2f4f3f7d23ec8a68ccbc66a579aca6d2; static PyObject *const_str_digest_2fa8b74c150f98704fd78cb5be16a2d3; extern PyObject *const_str_digest_2fea6faaece8b13aba5205180919cad4; extern PyObject *const_str_digest_317310e006d319ad28824cb9258c4565; static PyObject *const_str_digest_31870eba6b1af25a3fcecd097524b3d4; static PyObject *const_str_digest_31a9af9e11e7fa447fb19b15333890bf; static PyObject *const_str_digest_33de85b69c6ba37a90f1de39a0387d4e; static PyObject *const_str_digest_343d31d31f56cdef8fe89aa79cee366a; extern PyObject *const_str_digest_352c2c361762a5fb011e95a778b8a254; static PyObject *const_str_digest_3548fadb0ec569ebab2115c8b8df5083; static PyObject *const_str_digest_3583a8d3606919d394ff3742ea2991a0; static PyObject *const_str_digest_365fbbecf5f6b6e5e9fb735849d785c0; static PyObject *const_str_digest_3661f078f2728e5304b2e950f133b5c4; static PyObject *const_str_digest_3675f5d015dddadfe52770fb5aa734ea; static PyObject *const_str_digest_36c45669e1ecb4a38cd16d553a9afbb9; static PyObject *const_str_digest_3746a458488dce9d90d90525809f2b02; static PyObject *const_str_digest_38b4dc4c4264c1437622ad072b57f931; static PyObject *const_str_digest_38bb68b0d7d99ca5566905027683bfde; static PyObject *const_str_digest_39eef5677102f3a55b588def25963616; static PyObject *const_str_digest_3dc156e6a2d607058ba86c8c0498e4f7; static PyObject *const_str_digest_3f6cd6988d5cc425c4d00868999a9c0b; static PyObject *const_str_digest_3ff9b48b64cdbdd8b296b61508af401a; extern PyObject *const_str_digest_40515d2f72587c8ab3dde947df85ba29; static PyObject *const_str_digest_4085e6150841584387baceb03e192208; static PyObject *const_str_digest_40d445ed78575617d849a4c40252e78b; static PyObject *const_str_digest_41c2fd756c3e693448d5dfd166c13fac; static PyObject *const_str_digest_428b1f0db6614bc681cf8230e37e4727; static PyObject *const_str_digest_42bb9daf118d76a1fcc036f908957a47; static PyObject *const_str_digest_42e29578af24ea901b92843c6452c69d; static PyObject *const_str_digest_44b5e885884093b35997aaab01d17f03; static PyObject *const_str_digest_484347358833d2d05d8fc69e7493f100; static PyObject *const_str_digest_48cabf7d0b3bbfc91057f28eb23a1560; static PyObject *const_str_digest_49a8237352f5f580ba1c42a1c0b4cb89; static PyObject *const_str_digest_4aa6b2c8be599f4ff600f479e1d083f8; static PyObject *const_str_digest_4c144e84fc3c1a12f3edf4fb3c6a1560; static PyObject *const_str_digest_4f2deeeb57d301c95c75bb98138b8f09; static PyObject *const_str_digest_5292336f06adab3d25d49ce1bcb754fa; static PyObject *const_str_digest_52f3cb551798f750c7eedaa7874151b2; static PyObject *const_str_digest_530550da2a0c86c4126b4c4a02177517; static PyObject *const_str_digest_533c951d823b6e57c80e5d5b1a9091f9; static PyObject *const_str_digest_53d067d98ec3a8018e265af396e4cd76; static PyObject *const_str_digest_55456c681709cce09c41f6b5c4c09b6c; static PyObject *const_str_digest_55f1ce80e69a2658f507e145643c067b; static PyObject *const_str_digest_56c4578d7e79e9d1b9921f69f505bc38; static PyObject *const_str_digest_56eb8b6c3a2e2b46a9b2615c93c4d45e; static PyObject *const_str_digest_5739445260bb4ab7a7bde7699d67e1b0; static PyObject *const_str_digest_57f487778749be446e3a072c5c9fc960; static PyObject *const_str_digest_58f94749feaa6d8dcbbe3b2c21ca6f3d; static PyObject *const_str_digest_5a3b19794c360cfa1f3fb761f0170bf4; static PyObject *const_str_digest_5b2f1fd139d7c2fa41a3bd15052f7cc6; static PyObject *const_str_digest_5b7e03ef8781497c848bb48ecd301016; static PyObject *const_str_digest_5c182b7cc989dc414beab715240ecd25; static PyObject *const_str_digest_5dd2ddd3c8c2121e0d34a95bfef37e1e; static PyObject *const_str_digest_5e3bedeaeb5deb1039acf2ed98489637; static PyObject *const_str_digest_6051a16e4b8002678b6d93e2ac79406a; static PyObject *const_str_digest_617134fe87fb293497d3503a48221184; static PyObject *const_str_digest_63b243fa195291a4bd10a9d27c0ece83; static PyObject *const_str_digest_64c014c101de059e40ab2098f7c02568; static PyObject *const_str_digest_681c035c971246c828024e1eb1a024c7; static PyObject *const_str_digest_6bbbfb5feaca7cb532b036a03f1876bc; static PyObject *const_str_digest_6c41c39826425526467cf3e430a77c15; extern PyObject *const_str_digest_6e0991fa019a9e09495ce3818d3272df; static PyObject *const_str_digest_6e37b3e05e8e0e3ee299fb587d62c2cb; static PyObject *const_str_digest_6e3f60afbc56076b3a1ad2fd52e5545f; static PyObject *const_str_digest_6e4437baab8cc015d0bec086001fc38b; static PyObject *const_str_digest_6f20bfaa2efa212f61a92cbf6b7f4bf6; static PyObject *const_str_digest_6f3504cf0f8ede84a5eacc957cd112c0; static PyObject *const_str_digest_6fae23cc5869b6b96e109a8f2e78fbe4; static PyObject *const_str_digest_71830f14f0828044f06e530273435a27; static PyObject *const_str_digest_71deca2cdf00c9fa7cdfa5f0049113ff; static PyObject *const_str_digest_7298c2a4c9a6e315e932bffab830fb0b; extern PyObject *const_str_digest_73a2c45e7b0015e7c3fd1d2bb61db866; static PyObject *const_str_digest_74327d7eb38e858582fe177e885d2475; static PyObject *const_str_digest_76fe246148a5eb0cccb642576b728a94; static PyObject *const_str_digest_773353192e877182884c50a8d0c0486a; static PyObject *const_str_digest_77eeebb839755066d58a587211ae9b65; static PyObject *const_str_digest_7a89be2ff5758619ac83558d9a101c74; static PyObject *const_str_digest_7aedd59139d051efeaded43f5468c2c5; static PyObject *const_str_digest_7cae831092e5e81c73cd70d0f405b790; static PyObject *const_str_digest_8026ad1b3e6ceed21e57865344fb654f; static PyObject *const_str_digest_80eb8b2a20911481e3962616e7e0d2fc; static PyObject *const_str_digest_80faf1e943e593f4ae75792d5729a4c3; extern PyObject *const_str_digest_81dd5881d0e387c3fbe39fef2c0ad42a; static PyObject *const_str_digest_859fc68497e02be265b67eeb17699a77; static PyObject *const_str_digest_85a7ffd3d8a917c64381c56e7efdaf87; static PyObject *const_str_digest_866c31fc8e3f50f10cabca22bcc3b68e; static PyObject *const_str_digest_86b690e0ba1f63fd48e435095aef1119; static PyObject *const_str_digest_87d6d4bda621123152af053c0dde833f; static PyObject *const_str_digest_8842d8dab6d8e1a03bd3209f4c7d8c85; static PyObject *const_str_digest_88eaf6510bd57833178be952c2a2d74e; extern PyObject *const_str_digest_890854844f87190b1c6e74a24b3f6e6e; static PyObject *const_str_digest_89b6f674a8a140e56310bcfec0ed5012; extern PyObject *const_str_digest_8a412c5a481127f099db01c171a0fb22; static PyObject *const_str_digest_8a98b97fc61c9bb01d7d190b94ffd2a8; static PyObject *const_str_digest_8ab69059fbe9fef0b0ad50f2b948f8ee; extern PyObject *const_str_digest_8b28e68d7237750459f812a4e45fbbea; static PyObject *const_str_digest_8d7847d7bd74f719f243031b49421525; static PyObject *const_str_digest_8eaf9c6f13f0ea629b9b1feef1acea8a; extern PyObject *const_str_digest_8f1af3fa58871032e57b3bdcaf89b551; static PyObject *const_str_digest_8f23eb1de33799d1a32885fde13aac22; extern PyObject *const_str_digest_901a22001a0c7f25add446a5f68900d0; static PyObject *const_str_digest_9020c0154ba09b41a6ce32444468a5a6; static PyObject *const_str_digest_9077b83e901daee6c4d4e34357a66262; static PyObject *const_str_digest_91013d6fce3112b1a72b834fdb720cb9; static PyObject *const_str_digest_9269cde17a435135088bd15f2c77c487; static PyObject *const_str_digest_941afd4ce1527d74fbd8be0829fa1a59; static PyObject *const_str_digest_94bcdde9f91533758026d6169c99b194; static PyObject *const_str_digest_94f7eeb67070e06cba40225d7f6dac94; static PyObject *const_str_digest_9553403600853c58bf2171dfdb175fd6; static PyObject *const_str_digest_95b6249137a7d93810a38eee006bae9d; static PyObject *const_str_digest_95da66999f18725ac82e21e4162054dd; static PyObject *const_str_digest_9699306eee9969fdb7872a23b1255525; static PyObject *const_str_digest_9751ba3cd639e8b26904b98f438feabb; static PyObject *const_str_digest_975e0d14a7d9a661ed02f62dd83c173a; static PyObject *const_str_digest_9848ea2f585329928c28906ca7106439; static PyObject *const_str_digest_9912dfb1857add237abf1afe8d04d515; static PyObject *const_str_digest_99db67e2828ac2898b82b9bee5044782; static PyObject *const_str_digest_9a09d3352ebc0352e2ebe35a2c06dfe2; static PyObject *const_str_digest_9bfe93836a7a4bca28d53503f73d529f; static PyObject *const_str_digest_9d495ac14a55bbb4c048faa1dd9740c4; static PyObject *const_str_digest_9eb6c06dfbe3b1d972d9cd5b3cd07ad3; static PyObject *const_str_digest_9fd5fa304496311ce860090862daff60; extern PyObject *const_str_digest_a0e09455d4337213cd42ebadc4d27d3b; static PyObject *const_str_digest_a1b947d4348c132103b0fcc2930bd1fa; static PyObject *const_str_digest_a23ad65f708fe0ccf3375a05edaf137f; static PyObject *const_str_digest_a32269879300b041fd441d576a971aa4; static PyObject *const_str_digest_a37910e2837bb74a8ac17a725e63197d; static PyObject *const_str_digest_a59f7e5d92f868f0febd79f5e04fb533; static PyObject *const_str_digest_a5c3694130ad6405ae4d1ac366f7f051; static PyObject *const_str_digest_a731efdfc52bda74c8042706da39e402; static PyObject *const_str_digest_a7de58b21f8d89408e6f6bc0054e4d96; static PyObject *const_str_digest_a865c075859ce91a3bff8c53a3bf5b87; static PyObject *const_str_digest_a8afce941e7743fb1211294527053568; extern PyObject *const_str_digest_a8dd00e8789d337653fd72b5c50207f2; static PyObject *const_str_digest_a8f7031741e338c5a3662bc8bde493c2; static PyObject *const_str_digest_a97f071f0008b119291a75be0a54f0db; static PyObject *const_str_digest_ac6a99e739693f272ebb761c3b4a46d8; static PyObject *const_str_digest_ac9267666430a3349fd1e73d1f6de0cf; static PyObject *const_str_digest_ad481cb364b37bd937f33b4d475ca5d6; extern PyObject *const_str_digest_aef332a279fc26992d9b07f03b37a7b7; static PyObject *const_str_digest_af413396ce224ead18aef866d1998f25; static PyObject *const_str_digest_b0f41de0450f9223c04ee3ef6526d95f; static PyObject *const_str_digest_b1a73bd199a3381dd99aa189b635c9d2; static PyObject *const_str_digest_b209cb6a510b4ec8a54ffbddff8173f4; extern PyObject *const_str_digest_b3f6b0dfc1e5717ba7333debe235669f; static PyObject *const_str_digest_b454ce2d9dc0e1e729d4fe26cd68b667; static PyObject *const_str_digest_b4d5fd0edbbdd276f1a0a17ef81e8860; static PyObject *const_str_digest_b53e1cf2d1ffaffc66b7e7af7aa19e19; static PyObject *const_str_digest_b6761a339d072eed29792fd342025a92; extern PyObject *const_str_digest_b6844caa183c5fab60a573048a09c0ad; static PyObject *const_str_digest_b8743901784613aeb6cba18f9454164f; static PyObject *const_str_digest_b877a75e799b1da5ec9e80038722e7c8; static PyObject *const_str_digest_b8a48d5016ebc922c843de4be3b7b3d3; static PyObject *const_str_digest_b8ac32b2a634222f497d81e945fc69e2; static PyObject *const_str_digest_b8bcf6698fa55a1cf1fc5eaebffde12d; static PyObject *const_str_digest_b8c204bcd104359163fd2e01f36173c7; extern PyObject *const_str_digest_b8dc8513ea6a44621ecfd35fbdc9110c; static PyObject *const_str_digest_ba6e2734a4c4b33dd16fd510fc59eb6f; static PyObject *const_str_digest_ba96e1b0745354ebb9ebbd896eef2382; static PyObject *const_str_digest_bb8c2e7309a7a91ebcd3b999c51969a2; static PyObject *const_str_digest_bbd898cba8e091026a41c30005eabf32; static PyObject *const_str_digest_bc016924168b4f43f83c2a57e5f20e43; static PyObject *const_str_digest_bd11a3d4509bb31d8294367664405f49; static PyObject *const_str_digest_bd64994aa1bf405da9e180c5248fed37; static PyObject *const_str_digest_bd69b5f39c936f279a15218b0da5ea9b; static PyObject *const_str_digest_c008d08b40f62830643d6e456c174f44; static PyObject *const_str_digest_c3144b55fa49931d99eadea25c55a6a9; static PyObject *const_str_digest_c32335831cabcefadffa803ef4902569; static PyObject *const_str_digest_c3ae46c3d5576e352b30a35cef03a879; extern PyObject *const_str_digest_c6ed2021e7dfb461dbb032362c3c5cc1; static PyObject *const_str_digest_c6f825031c2aa893b389bf32c2ca7e84; static PyObject *const_str_digest_c825d376812e29c9ddc6ce1ed7e3515f; static PyObject *const_str_digest_c83ed1bc416d044b338832b29fb2651d; static PyObject *const_str_digest_ca50e6177ec63039f0422a4797375d0f; static PyObject *const_str_digest_ccaa1ea23810f6f3c2d7e6aefb2857f8; static PyObject *const_str_digest_ccdece3504035fa372440bbeb6311ffd; static PyObject *const_str_digest_cda50241a18adb04de807208df21a568; static PyObject *const_str_digest_ce5b897b8639742629f34ea80efc31ef; static PyObject *const_str_digest_cf71de3f9023718c59bbed5c352d152c; static PyObject *const_str_digest_d053f48b89f24f879aa2f2f4e56eadf8; static PyObject *const_str_digest_d16b4bd4598ec2bdd698c16a87fe77c9; static PyObject *const_str_digest_d1797c16915d5942896329250beda9a0; static PyObject *const_str_digest_d193a08c2f34203a6dece0610a94cbce; static PyObject *const_str_digest_d232384ee4b96c9afbc24157d4303e41; static PyObject *const_str_digest_d26239e7cd7d3c8ec7fea3318abd3bcd; static PyObject *const_str_digest_d2f9453d0b79d1c9ade8eb7077960272; static PyObject *const_str_digest_d35f413d90f87685cd0ca3d921172de1; static PyObject *const_str_digest_d3d6e6f2fb7259f3a718f541c7ec9f99; static PyObject *const_str_digest_d463a03c581a8b2bf2d33fceb0420ee2; static PyObject *const_str_digest_d487beb1c5e6713bce7f604f4ca8cb09; static PyObject *const_str_digest_d4c31f89fcf78e3659ade9a24fdf42d4; static PyObject *const_str_digest_d5368055a448d76633f47a60bcd4479b; static PyObject *const_str_digest_d55d07de35c84cb073e13f22d9618042; static PyObject *const_str_digest_d5bee58dc1094b8a3f313601fcb2d9ae; static PyObject *const_str_digest_d5f9d85e79c2d11eb4912782ada389d9; static PyObject *const_str_digest_d73c240a188c22c16ede43df7407dbf6; static PyObject *const_str_digest_d781c39102afc1fb103df62a9f2201f0; static PyObject *const_str_digest_d7ccb205c498b35eef75e47f3fcf28c0; static PyObject *const_str_digest_d86091769b46541c28720c4a54cd7147; static PyObject *const_str_digest_d88eb99589aadec9018c5dcfb35c3d1b; static PyObject *const_str_digest_d8ce894b52970bea5aadfd06f6c6a09e; static PyObject *const_str_digest_d8d8715e262515dd6621f0a26df29636; static PyObject *const_str_digest_d8eb3b4b1075e21ea19c37046b527fe3; extern PyObject *const_str_digest_dbd40ba69da15782bc0a1e6888e6b0cb; static PyObject *const_str_digest_dbea79683d26f1311c1d73725d1126c6; static PyObject *const_str_digest_dbf10af0e37c0956cfea856a5a4357de; static PyObject *const_str_digest_dc00e62d6cadf7b075734a2e4733966e; static PyObject *const_str_digest_dc7e2d2d5f013f1151ce74d50a33f797; static PyObject *const_str_digest_de18e03ff93a362044876849cf37696f; static PyObject *const_str_digest_df5c6ba92426bdb1aade8d8a0f581562; extern PyObject *const_str_digest_e1c06d85ae7b8b032bef47e42e4c08f9; static PyObject *const_str_digest_e1e3e29ea125920cd2f7a3b6ae5e81aa; static PyObject *const_str_digest_e22f20bbcc3464586bae117166898e42; static PyObject *const_str_digest_e2418f9672b53d5c9e681cfa976e4ede; static PyObject *const_str_digest_e37d7173ff6f9aaa416640aafbac950b; static PyObject *const_str_digest_e38fb2055690700b05e7284ed8a85e3c; static PyObject *const_str_digest_e4525de050bb139a277c0806fa6a7e6d; static PyObject *const_str_digest_e5fa1be03dc4204e78792261a4698ad0; static PyObject *const_str_digest_e6393a97f5d5446e3f140f696e680264; static PyObject *const_str_digest_e831352a8f095fac61be53d333f6cde5; static PyObject *const_str_digest_e8beeb26dcc4786866e7c8241d1b043b; extern PyObject *const_str_digest_e94bac8f3260b056e46d869b06fc3df5; static PyObject *const_str_digest_e982083adb75f151dd46b8ba5198bcc0; static PyObject *const_str_digest_ea53ee9a311971559ec8711c5fb4be91; static PyObject *const_str_digest_eaecd73b62fde941c6920f619a250093; static PyObject *const_str_digest_ec3b7568b05b17898a1cfc5552eb0db7; static PyObject *const_str_digest_ec9c6dcde4931b9286e950f1e97757e1; static PyObject *const_str_digest_ed5b9d330fed7db100d8d2e379138830; static PyObject *const_str_digest_ee4983e7371c33b4bfdb0e9618656343; static PyObject *const_str_digest_ee4b6cfd909f1956d8f9cdb9d88a8e33; static PyObject *const_str_digest_ee729f5c9a3c88dd8861517adea99433; static PyObject *const_str_digest_eeebd0c9ae3aeb9122106e125f5bce40; static PyObject *const_str_digest_ef99bdd7a9eb43f15832f068e2ea06fc; static PyObject *const_str_digest_f52b7060aab9a16195083441b23e029f; static PyObject *const_str_digest_f5c55f1a250689d1c890b2eab5aa0071; static PyObject *const_str_digest_f6768cb0ae865b6d06874d47205cde23; static PyObject *const_str_digest_f69e5c82471da4a14868bf6c3579cdb5; static PyObject *const_str_digest_f763cd7bcd9a235a07c2d522dff79b8e; extern PyObject *const_str_digest_f799e499bbf79ca500ba3d987fa42361; extern PyObject *const_str_digest_f8286407d5c451802306b2d15cf2167e; static PyObject *const_str_digest_f872d11254dc4965c1a21e47d3db82a2; static PyObject *const_str_digest_f9e489921e325b2dda9adf3026842ef7; static PyObject *const_str_digest_fa2c4b951468a9631db264c5434a4c6d; static PyObject *const_str_digest_fa68c6dda4f168588cd3f272b7e3b4fb; static PyObject *const_str_digest_fba1625b3c6ce450ca640bc284d80373; static PyObject *const_str_digest_fbcd99c73635e58fec4f2c1cb3548a51; static PyObject *const_str_digest_fc4edadf7639afc609ef0411b3949729; extern PyObject *const_str_digest_fc763cb31e9938f37737394681228f83; static PyObject *const_str_digest_fcacca1424f339192c748b8e531c8ec3; static PyObject *const_str_digest_fd17d65e20f214ebc5b50e179ff507c1; static PyObject *const_str_digest_fde8d015bd498e7e13c01750c46677b5; static PyObject *const_tuple_1fee174538866786d34aa5f123ad8530_tuple; static PyObject *const_tuple_88c260f85cd63106b992b7767f2d95e8_tuple; extern PyObject *const_tuple_a66751b7c76123c024f448eec46707b1_tuple; extern PyObject *const_tuple_b3c114ff65e5229953139969fd8f9f4c_tuple; static PyObject *const_tuple_cde206c752dab3a50d1c0e1f18afb419_tuple; static PyObject *const_list_str_plain_F_WRAPPEDFUNC_str_plain_F_FUNC_list; static PyObject *const_list_str_plain_SWAP_str_plain_create_cb_arglist_list; extern PyObject *const_list_str_digest_352c2c361762a5fb011e95a778b8a254_list; static PyObject *const_list_str_digest_6bbbfb5feaca7cb532b036a03f1876bc_list; static PyObject *const_list_str_digest_6f20bfaa2efa212f61a92cbf6b7f4bf6_list; static PyObject *const_list_str_digest_901a22001a0c7f25add446a5f68900d0_list; static PyObject *const_list_str_digest_aef332a279fc26992d9b07f03b37a7b7_list; static PyObject *const_list_str_digest_e37d7173ff6f9aaa416640aafbac950b_list; static PyObject *const_list_str_digest_e4525de050bb139a277c0806fa6a7e6d_list; static PyObject *const_list_str_digest_e94bac8f3260b056e46d869b06fc3df5_list; static PyObject *const_list_str_digest_f52b7060aab9a16195083441b23e029f_list; extern PyObject *const_list_str_digest_f8286407d5c451802306b2d15cf2167e_list; static void _initModuleConstants(void) { const_str_plain_cr = UNSTREAM_STRING( &constant_bin[ 3613 ], 2, 1 ); const_str_plain_wn = UNSTREAM_STRING( &constant_bin[ 34226 ], 2, 1 ); const_str_plain_cfs = UNSTREAM_STRING( &constant_bin[ 1070848 ], 3, 1 ); const_str_plain_ltx = UNSTREAM_STRING( &constant_bin[ 1070851 ], 3, 1 ); const_str_plain_nb1 = UNSTREAM_STRING( &constant_bin[ 1070854 ], 3, 1 ); const_str_plain_nth = UNSTREAM_STRING( &constant_bin[ 152427 ], 3, 1 ); const_str_plain_fsrc = UNSTREAM_STRING( &constant_bin[ 1070857 ], 4, 1 ); const_str_plain_nthk = UNSTREAM_STRING( &constant_bin[ 152509 ], 4, 1 ); const_str_plain_stnd = UNSTREAM_STRING( &constant_bin[ 152473 ], 4, 1 ); const_str_plain__rules = UNSTREAM_STRING( &constant_bin[ 129016 ], 6, 1 ); const_str_plain_pyname = UNSTREAM_STRING( &constant_bin[ 1070861 ], 6, 1 ); const_str_plain_asctime = UNSTREAM_STRING( &constant_bin[ 1070867 ], 7, 1 ); const_str_plain_keys_xa = UNSTREAM_STRING( &constant_bin[ 1070874 ], 7, 1 ); const_str_plain_modnote = UNSTREAM_STRING( &constant_bin[ 1070881 ], 7, 1 ); const_str_plain_nb_list = UNSTREAM_STRING( &constant_bin[ 151620 ], 7, 1 ); const_str_plain_sepdict = UNSTREAM_STRING( &constant_bin[ 150759 ], 7, 1 ); const_str_plain_topyarr = UNSTREAM_STRING( &constant_bin[ 1070888 ], 7, 1 ); const_str_plain_functype = UNSTREAM_STRING( &constant_bin[ 1070895 ], 8, 1 ); const_str_plain_kwlistxa = UNSTREAM_STRING( &constant_bin[ 1070903 ], 8, 1 ); const_str_plain_unsigned = UNSTREAM_STRING( &constant_bin[ 37826 ], 8, 1 ); const_str_plain_xaformat = UNSTREAM_STRING( &constant_bin[ 1070911 ], 8, 1 ); const_str_plain_arg_rules = UNSTREAM_STRING( &constant_bin[ 129931 ], 9, 1 ); const_str_plain_argformat = UNSTREAM_STRING( &constant_bin[ 1070919 ], 9, 1 ); const_str_plain_args_capi = UNSTREAM_STRING( &constant_bin[ 998584 ], 9, 1 ); const_str_plain_aux_rules = UNSTREAM_STRING( &constant_bin[ 152348 ], 9, 1 ); const_str_plain_docsignxa = UNSTREAM_STRING( &constant_bin[ 1070928 ], 9, 1 ); const_str_plain_keyformat = UNSTREAM_STRING( &constant_bin[ 1070937 ], 9, 1 ); const_str_plain_keys_capi = UNSTREAM_STRING( &constant_bin[ 1070946 ], 9, 1 ); const_str_plain_kwlistopt = UNSTREAM_STRING( &constant_bin[ 1070955 ], 9, 1 ); const_str_plain_localtime = UNSTREAM_STRING( &constant_bin[ 1070964 ], 9, 1 ); const_str_plain_mod_rules = UNSTREAM_STRING( &constant_bin[ 146993 ], 9, 1 ); const_str_plain_setjmpbuf = UNSTREAM_STRING( &constant_bin[ 1070973 ], 9, 1 ); const_str_plain_modulebody = UNSTREAM_STRING( &constant_bin[ 1070982 ], 10, 1 ); const_str_plain_rout_rules = UNSTREAM_STRING( &constant_bin[ 129787 ], 10, 1 ); const_str_plain_callfortran = UNSTREAM_STRING( &constant_bin[ 1070992 ], 11, 1 ); const_str_plain_check_rules = UNSTREAM_STRING( &constant_bin[ 152556 ], 11, 1 ); const_str_plain_need_cfuncs = UNSTREAM_STRING( &constant_bin[ 1007882 ], 11, 1 ); const_str_plain_routine_def = UNSTREAM_STRING( &constant_bin[ 1071003 ], 11, 1 ); const_str_plain_defmod_rules = UNSTREAM_STRING( &constant_bin[ 151536 ], 12, 1 ); const_str_plain_docsignshort = UNSTREAM_STRING( &constant_bin[ 1071014 ], 12, 1 ); const_str_plain_funcwrappers = UNSTREAM_STRING( &constant_bin[ 151710 ], 12, 1 ); const_str_plain_module_rules = UNSTREAM_STRING( &constant_bin[ 152105 ], 12, 1 ); const_str_plain_returnformat = UNSTREAM_STRING( &constant_bin[ 1071026 ], 12, 1 ); const_str_plain_funcwrappers2 = UNSTREAM_STRING( &constant_bin[ 151710 ], 13, 1 ); const_str_plain_routine_rules = UNSTREAM_STRING( &constant_bin[ 130011 ], 13, 1 ); const_str_plain_closepyobjfrom = UNSTREAM_STRING( &constant_bin[ 1071038 ], 14, 1 ); const_str_plain_docsignxashort = UNSTREAM_STRING( &constant_bin[ 1071052 ], 14, 1 ); const_str_plain_routdebugenter = UNSTREAM_STRING( &constant_bin[ 1071066 ], 14, 1 ); const_str_plain_routdebugleave = UNSTREAM_STRING( &constant_bin[ 1071080 ], 14, 1 ); const_str_plain_docsignoptshort = UNSTREAM_STRING( &constant_bin[ 1071094 ], 15, 1 ); const_str_plain_cleanupfrompyobj = UNSTREAM_STRING( &constant_bin[ 1071109 ], 16, 1 ); const_str_plain_initf2pywraphook = UNSTREAM_STRING( &constant_bin[ 1071125 ], 16, 1 ); const_str_plain_routdebugfailure = UNSTREAM_STRING( &constant_bin[ 1071141 ], 16, 1 ); const_str_plain_callcompaqfortran = UNSTREAM_STRING( &constant_bin[ 1071157 ], 17, 1 ); const_str_plain_callfortranappend = UNSTREAM_STRING( &constant_bin[ 1071174 ], 17, 1 ); const_str_plain_docsignatureshort = UNSTREAM_STRING( &constant_bin[ 1071191 ], 17, 1 ); const_str_plain_initf2pywraphooks = UNSTREAM_STRING( &constant_bin[ 1071208 ], 17, 1 ); const_str_plain_typedef_need_dict = UNSTREAM_STRING( &constant_bin[ 151382 ], 17, 1 ); const_str_plain_callfortranroutine = UNSTREAM_STRING( &constant_bin[ 1070992 ], 18, 1 ); const_str_plain_declfortranroutine = UNSTREAM_STRING( &constant_bin[ 1071225 ], 18, 1 ); const_str_plain_unsigned_long_long = UNSTREAM_STRING( &constant_bin[ 151165 ], 18, 1 ); const_tuple_str_plain_use_rules_tuple = PyTuple_New( 1 ); PyTuple_SET_ITEM( const_tuple_str_plain_use_rules_tuple, 0, const_str_plain_use_rules ); Py_INCREF( const_str_plain_use_rules ); const_str_plain_latexdocsignatureshort = UNSTREAM_STRING( &constant_bin[ 1071243 ], 22, 1 ); const_tuple_str_plain_common_rules_tuple = PyTuple_New( 1 ); PyTuple_SET_ITEM( const_tuple_str_plain_common_rules_tuple, 0, const_str_plain_common_rules ); Py_INCREF( const_str_plain_common_rules ); const_tuple_str_plain_m_str_plain_um_tuple = PyTuple_New( 2 ); PyTuple_SET_ITEM( const_tuple_str_plain_m_str_plain_um_tuple, 0, const_str_plain_m ); Py_INCREF( const_str_plain_m ); PyTuple_SET_ITEM( const_tuple_str_plain_m_str_plain_um_tuple, 1, const_str_plain_um ); Py_INCREF( const_str_plain_um ); const_dict_055a5e2e8d3048ab4922e8d2791b57c7 = PyMarshal_ReadObjectFromString( (char *)&constant_bin[ 1071265 ], 122 ); const_dict_6c662d5dfca8638087abab46e2002cca = PyMarshal_ReadObjectFromString( (char *)&constant_bin[ 1071387 ], 379 ); const_dict_c3b8e398c8954454fba85f0a68a2b3f2 = _PyDict_NewPresized( 3 ); PyDict_SetItem( const_dict_c3b8e398c8954454fba85f0a68a2b3f2, const_str_plain_need, const_str_plain_CHECKGENERIC ); const_str_digest_49a8237352f5f580ba1c42a1c0b4cb89 = UNSTREAM_STRING( &constant_bin[ 1071766 ], 52, 0 ); PyDict_SetItem( const_dict_c3b8e398c8954454fba85f0a68a2b3f2, const_str_plain_frompyobj, const_str_digest_49a8237352f5f580ba1c42a1c0b4cb89 ); const_str_digest_b877a75e799b1da5ec9e80038722e7c8 = UNSTREAM_STRING( &constant_bin[ 1071818 ], 28, 0 ); PyDict_SetItem( const_dict_c3b8e398c8954454fba85f0a68a2b3f2, const_str_plain_cleanupfrompyobj, const_str_digest_b877a75e799b1da5ec9e80038722e7c8 ); const_dict_f901ef362e29b410a7de5c49b0849102 = _PyDict_NewPresized( 2 ); PyDict_SetItem( const_dict_f901ef362e29b410a7de5c49b0849102, const_str_plain_latexdoc, const_str_digest_e1c06d85ae7b8b032bef47e42e4c08f9 ); PyDict_SetItem( const_dict_f901ef362e29b410a7de5c49b0849102, const_str_plain_restdoc, const_str_digest_e1c06d85ae7b8b032bef47e42e4c08f9 ); const_list_0725c8ade74f8f28b621ba88c880b6bd_list = PyList_New( 3 ); PyList_SET_ITEM( const_list_0725c8ade74f8f28b621ba88c880b6bd_list, 0, const_str_digest_00712398ca7c9a987043e29bb7424f6c ); Py_INCREF( const_str_digest_00712398ca7c9a987043e29bb7424f6c ); PyList_SET_ITEM( const_list_0725c8ade74f8f28b621ba88c880b6bd_list, 1, const_str_plain_CFUNCSMESS ); Py_INCREF( const_str_plain_CFUNCSMESS ); PyList_SET_ITEM( const_list_0725c8ade74f8f28b621ba88c880b6bd_list, 2, const_str_plain_MINMAX ); Py_INCREF( const_str_plain_MINMAX ); const_list_0a418c59c89f9fccd0e4ae0f11838976_list = PyList_New( 3 ); PyList_SET_ITEM( const_list_0a418c59c89f9fccd0e4ae0f11838976_list, 0, const_str_digest_aef332a279fc26992d9b07f03b37a7b7 ); Py_INCREF( const_str_digest_aef332a279fc26992d9b07f03b37a7b7 ); PyList_SET_ITEM( const_list_0a418c59c89f9fccd0e4ae0f11838976_list, 1, const_str_digest_901a22001a0c7f25add446a5f68900d0 ); Py_INCREF( const_str_digest_901a22001a0c7f25add446a5f68900d0 ); PyList_SET_ITEM( const_list_0a418c59c89f9fccd0e4ae0f11838976_list, 2, const_str_plain_STRINGFREE ); Py_INCREF( const_str_plain_STRINGFREE ); const_list_10b104c3768849b37f92dfc64a682f14_list = PyList_New( 2 ); const_str_digest_8d7847d7bd74f719f243031b49421525 = UNSTREAM_STRING( &constant_bin[ 1071846 ], 26, 0 ); PyList_SET_ITEM( const_list_10b104c3768849b37f92dfc64a682f14_list, 0, const_str_digest_8d7847d7bd74f719f243031b49421525 ); Py_INCREF( const_str_digest_8d7847d7bd74f719f243031b49421525 ); const_str_digest_d55d07de35c84cb073e13f22d9618042 = UNSTREAM_STRING( &constant_bin[ 1071872 ], 21, 0 ); PyList_SET_ITEM( const_list_10b104c3768849b37f92dfc64a682f14_list, 1, const_str_digest_d55d07de35c84cb073e13f22d9618042 ); Py_INCREF( const_str_digest_d55d07de35c84cb073e13f22d9618042 ); const_list_2a1cb5f1b6ad96684950fc2bb3e18869_list = PyList_New( 3 ); PyList_SET_ITEM( const_list_2a1cb5f1b6ad96684950fc2bb3e18869_list, 0, const_str_plain_F_FUNC ); Py_INCREF( const_str_plain_F_FUNC ); PyList_SET_ITEM( const_list_2a1cb5f1b6ad96684950fc2bb3e18869_list, 1, const_str_digest_034683ceccce831b3c4724622e7c61e0 ); Py_INCREF( const_str_digest_034683ceccce831b3c4724622e7c61e0 ); PyList_SET_ITEM( const_list_2a1cb5f1b6ad96684950fc2bb3e18869_list, 2, const_str_plain_STRINGFREE ); Py_INCREF( const_str_plain_STRINGFREE ); const_list_32f32ffbbd5d0469a259f67cd7bedf23_list = PyList_New( 2 ); const_str_digest_d26239e7cd7d3c8ec7fea3318abd3bcd = UNSTREAM_STRING( &constant_bin[ 1071893 ], 100, 0 ); PyList_SET_ITEM( const_list_32f32ffbbd5d0469a259f67cd7bedf23_list, 0, const_str_digest_d26239e7cd7d3c8ec7fea3318abd3bcd ); Py_INCREF( const_str_digest_d26239e7cd7d3c8ec7fea3318abd3bcd ); const_str_digest_85a7ffd3d8a917c64381c56e7efdaf87 = UNSTREAM_STRING( &constant_bin[ 1071993 ], 10, 0 ); PyList_SET_ITEM( const_list_32f32ffbbd5d0469a259f67cd7bedf23_list, 1, const_str_digest_85a7ffd3d8a917c64381c56e7efdaf87 ); Py_INCREF( const_str_digest_85a7ffd3d8a917c64381c56e7efdaf87 ); const_list_53e499b918b44aac469e052ee883b608_list = PyList_New( 3 ); const_str_digest_e8beeb26dcc4786866e7c8241d1b043b = UNSTREAM_STRING( &constant_bin[ 1072003 ], 27, 0 ); PyList_SET_ITEM( const_list_53e499b918b44aac469e052ee883b608_list, 0, const_str_digest_e8beeb26dcc4786866e7c8241d1b043b ); Py_INCREF( const_str_digest_e8beeb26dcc4786866e7c8241d1b043b ); const_str_digest_098be4f85b6147b2a568faf0c3a53940 = UNSTREAM_STRING( &constant_bin[ 1072030 ], 49, 0 ); PyList_SET_ITEM( const_list_53e499b918b44aac469e052ee883b608_list, 1, const_str_digest_098be4f85b6147b2a568faf0c3a53940 ); Py_INCREF( const_str_digest_098be4f85b6147b2a568faf0c3a53940 ); const_str_digest_40d445ed78575617d849a4c40252e78b = UNSTREAM_STRING( &constant_bin[ 1072079 ], 35, 0 ); PyList_SET_ITEM( const_list_53e499b918b44aac469e052ee883b608_list, 2, const_str_digest_40d445ed78575617d849a4c40252e78b ); Py_INCREF( const_str_digest_40d445ed78575617d849a4c40252e78b ); const_list_63cf9afba8d0564dfc4c1155a17b0c8c_list = PyList_New( 3 ); const_str_digest_135742a92d97efe0fd436435c081798f = UNSTREAM_STRING( &constant_bin[ 1072114 ], 42, 0 ); PyList_SET_ITEM( const_list_63cf9afba8d0564dfc4c1155a17b0c8c_list, 0, const_str_digest_135742a92d97efe0fd436435c081798f ); Py_INCREF( const_str_digest_135742a92d97efe0fd436435c081798f ); const_str_digest_2dc6983da48dda8d3f9d4105993903cd = UNSTREAM_STRING( &constant_bin[ 1072156 ], 10, 0 ); PyList_SET_ITEM( const_list_63cf9afba8d0564dfc4c1155a17b0c8c_list, 1, const_str_digest_2dc6983da48dda8d3f9d4105993903cd ); Py_INCREF( const_str_digest_2dc6983da48dda8d3f9d4105993903cd ); const_str_digest_bc016924168b4f43f83c2a57e5f20e43 = UNSTREAM_STRING( &constant_bin[ 1072166 ], 10, 0 ); PyList_SET_ITEM( const_list_63cf9afba8d0564dfc4c1155a17b0c8c_list, 2, const_str_digest_bc016924168b4f43f83c2a57e5f20e43 ); Py_INCREF( const_str_digest_bc016924168b4f43f83c2a57e5f20e43 ); const_list_83502bc928309bee706fd67dc708d8b5_list = PyList_New( 3 ); PyList_SET_ITEM( const_list_83502bc928309bee706fd67dc708d8b5_list, 0, const_str_digest_8d7847d7bd74f719f243031b49421525 ); Py_INCREF( const_str_digest_8d7847d7bd74f719f243031b49421525 ); PyList_SET_ITEM( const_list_83502bc928309bee706fd67dc708d8b5_list, 1, const_str_digest_d55d07de35c84cb073e13f22d9618042 ); Py_INCREF( const_str_digest_d55d07de35c84cb073e13f22d9618042 ); const_str_digest_94bcdde9f91533758026d6169c99b194 = UNSTREAM_STRING( &constant_bin[ 1072176 ], 36, 0 ); PyList_SET_ITEM( const_list_83502bc928309bee706fd67dc708d8b5_list, 2, const_str_digest_94bcdde9f91533758026d6169c99b194 ); Py_INCREF( const_str_digest_94bcdde9f91533758026d6169c99b194 ); const_list_917626a5cab86448639269d43350330f_list = PyList_New( 2 ); const_str_digest_6e37b3e05e8e0e3ee299fb587d62c2cb = UNSTREAM_STRING( &constant_bin[ 1072212 ], 8, 0 ); PyList_SET_ITEM( const_list_917626a5cab86448639269d43350330f_list, 0, const_str_digest_6e37b3e05e8e0e3ee299fb587d62c2cb ); Py_INCREF( const_str_digest_6e37b3e05e8e0e3ee299fb587d62c2cb ); PyList_SET_ITEM( const_list_917626a5cab86448639269d43350330f_list, 1, const_str_digest_8f1af3fa58871032e57b3bdcaf89b551 ); Py_INCREF( const_str_digest_8f1af3fa58871032e57b3bdcaf89b551 ); const_list_9af870e8ed9f6c337cdc0c36a763a6f2_list = PyList_New( 2 ); const_str_digest_0805118bce28b0db2adfe1c873c5fd07 = UNSTREAM_STRING( &constant_bin[ 1072220 ], 36, 0 ); PyList_SET_ITEM( const_list_9af870e8ed9f6c337cdc0c36a763a6f2_list, 0, const_str_digest_0805118bce28b0db2adfe1c873c5fd07 ); Py_INCREF( const_str_digest_0805118bce28b0db2adfe1c873c5fd07 ); const_str_digest_a59f7e5d92f868f0febd79f5e04fb533 = UNSTREAM_STRING( &constant_bin[ 1072256 ], 33, 0 ); PyList_SET_ITEM( const_list_9af870e8ed9f6c337cdc0c36a763a6f2_list, 1, const_str_digest_a59f7e5d92f868f0febd79f5e04fb533 ); Py_INCREF( const_str_digest_a59f7e5d92f868f0febd79f5e04fb533 ); const_list_a6fb55f787096d197a68d518259f030c_list = PyList_New( 5 ); PyList_SET_ITEM( const_list_a6fb55f787096d197a68d518259f030c_list, 0, const_str_digest_e8beeb26dcc4786866e7c8241d1b043b ); Py_INCREF( const_str_digest_e8beeb26dcc4786866e7c8241d1b043b ); PyList_SET_ITEM( const_list_a6fb55f787096d197a68d518259f030c_list, 1, const_str_digest_098be4f85b6147b2a568faf0c3a53940 ); Py_INCREF( const_str_digest_098be4f85b6147b2a568faf0c3a53940 ); PyList_SET_ITEM( const_list_a6fb55f787096d197a68d518259f030c_list, 2, const_str_digest_40d445ed78575617d849a4c40252e78b ); Py_INCREF( const_str_digest_40d445ed78575617d849a4c40252e78b ); const_str_digest_1d098d8f36c3c8a6d6ad4afd172177b1 = UNSTREAM_STRING( &constant_bin[ 1072289 ], 42, 0 ); PyList_SET_ITEM( const_list_a6fb55f787096d197a68d518259f030c_list, 3, const_str_digest_1d098d8f36c3c8a6d6ad4afd172177b1 ); Py_INCREF( const_str_digest_1d098d8f36c3c8a6d6ad4afd172177b1 ); const_str_digest_58f94749feaa6d8dcbbe3b2c21ca6f3d = UNSTREAM_STRING( &constant_bin[ 1072331 ], 31, 0 ); PyList_SET_ITEM( const_list_a6fb55f787096d197a68d518259f030c_list, 4, const_str_digest_58f94749feaa6d8dcbbe3b2c21ca6f3d ); Py_INCREF( const_str_digest_58f94749feaa6d8dcbbe3b2c21ca6f3d ); const_list_d9758b2de662a4320da70ff340579452_list = PyList_New( 2 ); const_str_digest_8a98b97fc61c9bb01d7d190b94ffd2a8 = UNSTREAM_STRING( &constant_bin[ 1072362 ], 49, 0 ); PyList_SET_ITEM( const_list_d9758b2de662a4320da70ff340579452_list, 0, const_str_digest_8a98b97fc61c9bb01d7d190b94ffd2a8 ); Py_INCREF( const_str_digest_8a98b97fc61c9bb01d7d190b94ffd2a8 ); const_str_digest_18f58632137400bb4c14c923f5d57bbb = UNSTREAM_STRING( &constant_bin[ 1072411 ], 107, 0 ); PyList_SET_ITEM( const_list_d9758b2de662a4320da70ff340579452_list, 1, const_str_digest_18f58632137400bb4c14c923f5d57bbb ); Py_INCREF( const_str_digest_18f58632137400bb4c14c923f5d57bbb ); const_str_digest_003412ca7c035dda44b06c662ca81aa5 = UNSTREAM_STRING( &constant_bin[ 999284 ], 2, 0 ); const_str_digest_007d50f5babd3a75f4137e740257a41e = UNSTREAM_STRING( &constant_bin[ 1072518 ], 25, 0 ); const_str_digest_0250bf479570e6e650f305dc350be4a1 = UNSTREAM_STRING( &constant_bin[ 1072543 ], 19, 0 ); const_str_digest_07686c6fa7631f753789a51e91f8665c = UNSTREAM_STRING( &constant_bin[ 1072562 ], 221, 0 ); const_str_digest_0801662fed55e93695b42ad17d40560e = UNSTREAM_STRING( &constant_bin[ 1072783 ], 90, 0 ); const_str_digest_09de792d93cc23e6cd4f80b6fa458fd3 = UNSTREAM_STRING( &constant_bin[ 1072660 ], 10, 0 ); const_str_digest_0b2ee4e163c7715c3637d39da00ca3d5 = UNSTREAM_STRING( &constant_bin[ 1072873 ], 40, 0 ); const_str_digest_0c93bbaa020061df40a3e0e1970c67b3 = UNSTREAM_STRING( &constant_bin[ 1072913 ], 12, 0 ); const_str_digest_0d59acae85d063e3f672d8da6daa0a85 = UNSTREAM_STRING( &constant_bin[ 1072925 ], 23, 0 ); const_str_digest_0e629208d1577c2a84c6eb9e890eff33 = UNSTREAM_STRING( &constant_bin[ 1072948 ], 38, 0 ); const_str_digest_0e6d8ecfca61c030ce40551480a7c4c8 = UNSTREAM_STRING( &constant_bin[ 1072986 ], 37, 0 ); const_str_digest_0f31941b1b984d687d1832a3265bb0bd = UNSTREAM_STRING( &constant_bin[ 1073023 ], 18, 0 ); const_str_digest_103f7cae04ee1c2adcfe2b30f8ef4e52 = UNSTREAM_STRING( &constant_bin[ 1073041 ], 70, 0 ); const_str_digest_1177440af11d75a5bc642deb1185d476 = UNSTREAM_STRING( &constant_bin[ 1073111 ], 423, 0 ); const_str_digest_11a75f7b161c1a48991f1986e1eab885 = UNSTREAM_STRING( &constant_bin[ 1073534 ], 67, 0 ); const_str_digest_140b8c5286854407f508a0dae9b51bd0 = UNSTREAM_STRING( &constant_bin[ 1073601 ], 11, 0 ); const_str_digest_1422ad36fc74e5255a7c794563fb3843 = UNSTREAM_STRING( &constant_bin[ 1073612 ], 51, 0 ); const_str_digest_1480e469b585979a7f4d96343815e357 = UNSTREAM_STRING( &constant_bin[ 1073663 ], 39, 0 ); const_str_digest_152c5ee2b2e7dc93bd9f827427a9f43c = UNSTREAM_STRING( &constant_bin[ 1073702 ], 20, 0 ); const_str_digest_15904c114d20d74a77febfc4dfb77b85 = UNSTREAM_STRING( &constant_bin[ 1073722 ], 46, 0 ); const_str_digest_1632bec27e568661b517322c67a7aa13 = UNSTREAM_STRING( &constant_bin[ 1073768 ], 84, 0 ); const_str_digest_163dc3507d0a117b14a81f27113a31a1 = UNSTREAM_STRING( &constant_bin[ 1073852 ], 78, 0 ); const_str_digest_1678f341d6d4b9988981a9652fd0aaf7 = UNSTREAM_STRING( &constant_bin[ 1073930 ], 38, 0 ); const_str_digest_16cee986fdf2b02b5fedad397daf617e = UNSTREAM_STRING( &constant_bin[ 1073968 ], 33, 0 ); const_str_digest_16d4ea9ba4d55fcaab93d0516b4d9157 = UNSTREAM_STRING( &constant_bin[ 1074001 ], 57, 0 ); const_str_digest_17650eb00d01333f79fd06fb9c61cd9d = UNSTREAM_STRING( &constant_bin[ 1072638 ], 16, 0 ); const_str_digest_18429b2363d61bb45e6f19ee193369c0 = UNSTREAM_STRING( &constant_bin[ 1074058 ], 23, 0 ); const_str_digest_18c508c400e195b421fc11655c7a57b2 = UNSTREAM_STRING( &constant_bin[ 1074081 ], 17, 0 ); const_str_digest_1957922661d0ebb79028a2cdcfc623e3 = UNSTREAM_STRING( &constant_bin[ 1074098 ], 56, 0 ); const_str_digest_196e1deb2a177ed3e9d78c2c4c6ca852 = UNSTREAM_STRING( &constant_bin[ 1074154 ], 49, 0 ); const_str_digest_19c7030524451d92c931f37fca9681ea = UNSTREAM_STRING( &constant_bin[ 1074203 ], 18, 0 ); const_str_digest_1e609e98e6387a0eff2e0582a23e9403 = UNSTREAM_STRING( &constant_bin[ 1074221 ], 25, 0 ); const_str_digest_2024ee09e6b745cfd788ae7f21f8ccb6 = UNSTREAM_STRING( &constant_bin[ 1074246 ], 69, 0 ); const_str_digest_20c9fc8f6f5e6e56dc857edd08f619c0 = UNSTREAM_STRING( &constant_bin[ 1074315 ], 96, 0 ); const_str_digest_231cb7effd90b3fd8e0b9b743f769003 = UNSTREAM_STRING( &constant_bin[ 1074411 ], 21, 0 ); const_str_digest_26528d4a51309a8f8ddb2c87bfb4d547 = UNSTREAM_STRING( &constant_bin[ 1074432 ], 18, 0 ); const_str_digest_26c16d68737087d7dec283685f968bf7 = UNSTREAM_STRING( &constant_bin[ 1074450 ], 25, 0 ); const_str_digest_2722011c07957ec4178692a6adc697b7 = UNSTREAM_STRING( &constant_bin[ 1074475 ], 786, 0 ); const_str_digest_27b50ea3e5fe50c3f9d4789d13716081 = UNSTREAM_STRING( &constant_bin[ 1075261 ], 41, 0 ); const_str_digest_2861f69496685cab3ecd9e5bb974c70d = UNSTREAM_STRING( &constant_bin[ 1072626 ], 11, 0 ); const_str_digest_2936888493c6440f01314e5ae776f3e1 = UNSTREAM_STRING( &constant_bin[ 1075302 ], 96, 0 ); const_str_digest_2bfab3a3bf25bd01b8093743c94c68c6 = UNSTREAM_STRING( &constant_bin[ 1075398 ], 47, 0 ); const_str_digest_2d092b06961d63e3c95e44a4ec6fc82d = UNSTREAM_STRING( &constant_bin[ 1075445 ], 258, 0 ); const_str_digest_2f4f3f7d23ec8a68ccbc66a579aca6d2 = UNSTREAM_STRING( &constant_bin[ 1075703 ], 27, 0 ); const_str_digest_2fa8b74c150f98704fd78cb5be16a2d3 = UNSTREAM_STRING( &constant_bin[ 1075730 ], 41, 0 ); const_str_digest_31870eba6b1af25a3fcecd097524b3d4 = UNSTREAM_STRING( &constant_bin[ 1075771 ], 31, 0 ); const_str_digest_31a9af9e11e7fa447fb19b15333890bf = UNSTREAM_STRING( &constant_bin[ 1075802 ], 122, 0 ); const_str_digest_33de85b69c6ba37a90f1de39a0387d4e = UNSTREAM_STRING( &constant_bin[ 1075924 ], 43, 0 ); const_str_digest_343d31d31f56cdef8fe89aa79cee366a = UNSTREAM_STRING( &constant_bin[ 1075967 ], 16, 0 ); const_str_digest_3548fadb0ec569ebab2115c8b8df5083 = UNSTREAM_STRING( &constant_bin[ 1075983 ], 436, 0 ); const_str_digest_3583a8d3606919d394ff3742ea2991a0 = UNSTREAM_STRING( &constant_bin[ 1076419 ], 23, 0 ); const_str_digest_365fbbecf5f6b6e5e9fb735849d785c0 = UNSTREAM_STRING( &constant_bin[ 1076442 ], 20, 0 ); const_str_digest_3661f078f2728e5304b2e950f133b5c4 = UNSTREAM_STRING( &constant_bin[ 1076462 ], 20, 0 ); const_str_digest_3675f5d015dddadfe52770fb5aa734ea = UNSTREAM_STRING( &constant_bin[ 1076482 ], 12, 0 ); const_str_digest_36c45669e1ecb4a38cd16d553a9afbb9 = UNSTREAM_STRING( &constant_bin[ 1076494 ], 35, 0 ); const_str_digest_3746a458488dce9d90d90525809f2b02 = UNSTREAM_STRING( &constant_bin[ 1076529 ], 20, 0 ); const_str_digest_38b4dc4c4264c1437622ad072b57f931 = UNSTREAM_STRING( &constant_bin[ 1076549 ], 23, 0 ); const_str_digest_38bb68b0d7d99ca5566905027683bfde = UNSTREAM_STRING( &constant_bin[ 1076572 ], 9, 0 ); const_str_digest_39eef5677102f3a55b588def25963616 = UNSTREAM_STRING( &constant_bin[ 1076581 ], 39, 0 ); const_str_digest_3dc156e6a2d607058ba86c8c0498e4f7 = UNSTREAM_STRING( &constant_bin[ 1076620 ], 108, 0 ); const_str_digest_3f6cd6988d5cc425c4d00868999a9c0b = UNSTREAM_STRING( &constant_bin[ 1076728 ], 48, 0 ); const_str_digest_3ff9b48b64cdbdd8b296b61508af401a = UNSTREAM_STRING( &constant_bin[ 1076776 ], 47, 0 ); const_str_digest_4085e6150841584387baceb03e192208 = UNSTREAM_STRING( &constant_bin[ 1076823 ], 35, 0 ); const_str_digest_41c2fd756c3e693448d5dfd166c13fac = UNSTREAM_STRING( &constant_bin[ 1076858 ], 24, 0 ); const_str_digest_428b1f0db6614bc681cf8230e37e4727 = UNSTREAM_STRING( &constant_bin[ 1076882 ], 33, 0 ); const_str_digest_42bb9daf118d76a1fcc036f908957a47 = UNSTREAM_STRING( &constant_bin[ 1076915 ], 84, 0 ); const_str_digest_42e29578af24ea901b92843c6452c69d = UNSTREAM_STRING( &constant_bin[ 1076999 ], 11, 0 ); const_str_digest_44b5e885884093b35997aaab01d17f03 = UNSTREAM_STRING( &constant_bin[ 1073487 ], 19, 0 ); const_str_digest_484347358833d2d05d8fc69e7493f100 = UNSTREAM_STRING( &constant_bin[ 1077010 ], 22, 0 ); const_str_digest_48cabf7d0b3bbfc91057f28eb23a1560 = UNSTREAM_STRING( &constant_bin[ 1077032 ], 8, 0 ); const_str_digest_4aa6b2c8be599f4ff600f479e1d083f8 = UNSTREAM_STRING( &constant_bin[ 1074017 ], 19, 0 ); const_str_digest_4c144e84fc3c1a12f3edf4fb3c6a1560 = UNSTREAM_STRING( &constant_bin[ 1077040 ], 16, 0 ); const_str_digest_4f2deeeb57d301c95c75bb98138b8f09 = UNSTREAM_STRING( &constant_bin[ 1077056 ], 87, 0 ); const_str_digest_5292336f06adab3d25d49ce1bcb754fa = UNSTREAM_STRING( &constant_bin[ 1077143 ], 47, 0 ); const_str_digest_52f3cb551798f750c7eedaa7874151b2 = UNSTREAM_STRING( &constant_bin[ 1002198 ], 14, 0 ); const_str_digest_530550da2a0c86c4126b4c4a02177517 = UNSTREAM_STRING( &constant_bin[ 1077190 ], 32, 0 ); const_str_digest_533c951d823b6e57c80e5d5b1a9091f9 = UNSTREAM_STRING( &constant_bin[ 1077222 ], 26, 0 ); const_str_digest_53d067d98ec3a8018e265af396e4cd76 = UNSTREAM_STRING( &constant_bin[ 1077248 ], 2, 0 ); const_str_digest_55456c681709cce09c41f6b5c4c09b6c = UNSTREAM_STRING( &constant_bin[ 1077250 ], 69, 0 ); const_str_digest_55f1ce80e69a2658f507e145643c067b = UNSTREAM_STRING( &constant_bin[ 1077319 ], 31, 0 ); const_str_digest_56c4578d7e79e9d1b9921f69f505bc38 = UNSTREAM_STRING( &constant_bin[ 1077350 ], 23, 0 ); const_str_digest_56eb8b6c3a2e2b46a9b2615c93c4d45e = UNSTREAM_STRING( &constant_bin[ 1077373 ], 6, 0 ); const_str_digest_5739445260bb4ab7a7bde7699d67e1b0 = UNSTREAM_STRING( &constant_bin[ 1077379 ], 37, 0 ); const_str_digest_57f487778749be446e3a072c5c9fc960 = UNSTREAM_STRING( &constant_bin[ 1077416 ], 8, 0 ); const_str_digest_5a3b19794c360cfa1f3fb761f0170bf4 = UNSTREAM_STRING( &constant_bin[ 1077424 ], 34, 0 ); const_str_digest_5b2f1fd139d7c2fa41a3bd15052f7cc6 = UNSTREAM_STRING( &constant_bin[ 1077458 ], 54, 0 ); const_str_digest_5b7e03ef8781497c848bb48ecd301016 = UNSTREAM_STRING( &constant_bin[ 1077512 ], 30, 0 ); const_str_digest_5c182b7cc989dc414beab715240ecd25 = UNSTREAM_STRING( &constant_bin[ 1077542 ], 31, 0 ); const_str_digest_5dd2ddd3c8c2121e0d34a95bfef37e1e = UNSTREAM_STRING( &constant_bin[ 1077573 ], 14, 0 ); const_str_digest_5e3bedeaeb5deb1039acf2ed98489637 = UNSTREAM_STRING( &constant_bin[ 1062170 ], 14, 0 ); const_str_digest_6051a16e4b8002678b6d93e2ac79406a = UNSTREAM_STRING( &constant_bin[ 1077587 ], 13, 0 ); const_str_digest_617134fe87fb293497d3503a48221184 = UNSTREAM_STRING( &constant_bin[ 1077600 ], 22, 0 ); const_str_digest_63b243fa195291a4bd10a9d27c0ece83 = UNSTREAM_STRING( &constant_bin[ 1077622 ], 74, 0 ); const_str_digest_64c014c101de059e40ab2098f7c02568 = UNSTREAM_STRING( &constant_bin[ 1077696 ], 60, 0 ); const_str_digest_681c035c971246c828024e1eb1a024c7 = UNSTREAM_STRING( &constant_bin[ 1077756 ], 43, 0 ); const_str_digest_6bbbfb5feaca7cb532b036a03f1876bc = UNSTREAM_STRING( &constant_bin[ 1077799 ], 82, 0 ); const_str_digest_6c41c39826425526467cf3e430a77c15 = UNSTREAM_STRING( &constant_bin[ 1000031 ], 3, 0 ); const_str_digest_6e3f60afbc56076b3a1ad2fd52e5545f = UNSTREAM_STRING( &constant_bin[ 1077881 ], 30, 0 ); const_str_digest_6e4437baab8cc015d0bec086001fc38b = UNSTREAM_STRING( &constant_bin[ 1077911 ], 106, 0 ); const_str_digest_6f20bfaa2efa212f61a92cbf6b7f4bf6 = UNSTREAM_STRING( &constant_bin[ 1078017 ], 27, 0 ); const_str_digest_6f3504cf0f8ede84a5eacc957cd112c0 = UNSTREAM_STRING( &constant_bin[ 1078044 ], 19, 0 ); const_str_digest_6fae23cc5869b6b96e109a8f2e78fbe4 = UNSTREAM_STRING( &constant_bin[ 1078063 ], 170, 0 ); const_str_digest_71830f14f0828044f06e530273435a27 = UNSTREAM_STRING( &constant_bin[ 1078233 ], 11, 0 ); const_str_digest_71deca2cdf00c9fa7cdfa5f0049113ff = UNSTREAM_STRING( &constant_bin[ 1078244 ], 86, 0 ); const_str_digest_7298c2a4c9a6e315e932bffab830fb0b = UNSTREAM_STRING( &constant_bin[ 1078330 ], 24, 0 ); const_str_digest_74327d7eb38e858582fe177e885d2475 = UNSTREAM_STRING( &constant_bin[ 1078354 ], 16, 0 ); const_str_digest_76fe246148a5eb0cccb642576b728a94 = UNSTREAM_STRING( &constant_bin[ 1078370 ], 52, 0 ); const_str_digest_773353192e877182884c50a8d0c0486a = UNSTREAM_STRING( &constant_bin[ 1078422 ], 57, 0 ); const_str_digest_77eeebb839755066d58a587211ae9b65 = UNSTREAM_STRING( &constant_bin[ 1078479 ], 23, 0 ); const_str_digest_7a89be2ff5758619ac83558d9a101c74 = UNSTREAM_STRING( &constant_bin[ 1078502 ], 10, 0 ); const_str_digest_7aedd59139d051efeaded43f5468c2c5 = UNSTREAM_STRING( &constant_bin[ 1078512 ], 14, 0 ); const_str_digest_7cae831092e5e81c73cd70d0f405b790 = UNSTREAM_STRING( &constant_bin[ 1078526 ], 39, 0 ); const_str_digest_8026ad1b3e6ceed21e57865344fb654f = UNSTREAM_STRING( &constant_bin[ 1078565 ], 46, 0 ); const_str_digest_80eb8b2a20911481e3962616e7e0d2fc = UNSTREAM_STRING( &constant_bin[ 1078611 ], 16, 0 ); const_str_digest_80faf1e943e593f4ae75792d5729a4c3 = UNSTREAM_STRING( &constant_bin[ 1078627 ], 218, 0 ); const_str_digest_859fc68497e02be265b67eeb17699a77 = UNSTREAM_STRING( &constant_bin[ 1078845 ], 8, 0 ); const_str_digest_866c31fc8e3f50f10cabca22bcc3b68e = UNSTREAM_STRING( &constant_bin[ 1000036 ], 9, 0 ); const_str_digest_86b690e0ba1f63fd48e435095aef1119 = UNSTREAM_STRING( &constant_bin[ 1078853 ], 13, 0 ); const_str_digest_87d6d4bda621123152af053c0dde833f = UNSTREAM_STRING( &constant_bin[ 1078866 ], 63, 0 ); const_str_digest_8842d8dab6d8e1a03bd3209f4c7d8c85 = UNSTREAM_STRING( &constant_bin[ 1078929 ], 125, 0 ); const_str_digest_88eaf6510bd57833178be952c2a2d74e = UNSTREAM_STRING( &constant_bin[ 1079054 ], 23, 0 ); const_str_digest_89b6f674a8a140e56310bcfec0ed5012 = UNSTREAM_STRING( &constant_bin[ 1072660 ], 15, 0 ); const_str_digest_8ab69059fbe9fef0b0ad50f2b948f8ee = UNSTREAM_STRING( &constant_bin[ 1079077 ], 40, 0 ); const_str_digest_8eaf9c6f13f0ea629b9b1feef1acea8a = UNSTREAM_STRING( &constant_bin[ 1079117 ], 65, 0 ); const_str_digest_8f23eb1de33799d1a32885fde13aac22 = UNSTREAM_STRING( &constant_bin[ 1079182 ], 37, 0 ); const_str_digest_9020c0154ba09b41a6ce32444468a5a6 = UNSTREAM_STRING( &constant_bin[ 1079219 ], 32, 0 ); const_str_digest_9077b83e901daee6c4d4e34357a66262 = UNSTREAM_STRING( &constant_bin[ 1079251 ], 836, 0 ); const_str_digest_91013d6fce3112b1a72b834fdb720cb9 = UNSTREAM_STRING( &constant_bin[ 1072763 ], 20, 0 ); const_str_digest_9269cde17a435135088bd15f2c77c487 = UNSTREAM_STRING( &constant_bin[ 1080087 ], 48, 0 ); const_str_digest_941afd4ce1527d74fbd8be0829fa1a59 = UNSTREAM_STRING( &constant_bin[ 1080135 ], 61, 0 ); const_str_digest_94f7eeb67070e06cba40225d7f6dac94 = UNSTREAM_STRING( &constant_bin[ 1080196 ], 52, 0 ); const_str_digest_9553403600853c58bf2171dfdb175fd6 = UNSTREAM_STRING( &constant_bin[ 1080248 ], 18, 0 ); const_str_digest_95b6249137a7d93810a38eee006bae9d = UNSTREAM_STRING( &constant_bin[ 1080266 ], 50, 0 ); const_str_digest_95da66999f18725ac82e21e4162054dd = UNSTREAM_STRING( &constant_bin[ 1080316 ], 76, 0 ); const_str_digest_9699306eee9969fdb7872a23b1255525 = UNSTREAM_STRING( &constant_bin[ 1080392 ], 56, 0 ); const_str_digest_9751ba3cd639e8b26904b98f438feabb = UNSTREAM_STRING( &constant_bin[ 1080448 ], 77, 0 ); const_str_digest_975e0d14a7d9a661ed02f62dd83c173a = UNSTREAM_STRING( &constant_bin[ 1080525 ], 904, 0 ); const_str_digest_9848ea2f585329928c28906ca7106439 = UNSTREAM_STRING( &constant_bin[ 1081429 ], 23, 0 ); const_str_digest_9912dfb1857add237abf1afe8d04d515 = UNSTREAM_STRING( &constant_bin[ 1081452 ], 32, 0 ); const_str_digest_99db67e2828ac2898b82b9bee5044782 = UNSTREAM_STRING( &constant_bin[ 1081484 ], 33, 0 ); const_str_digest_9a09d3352ebc0352e2ebe35a2c06dfe2 = UNSTREAM_STRING( &constant_bin[ 1081517 ], 44, 0 ); const_str_digest_9bfe93836a7a4bca28d53503f73d529f = UNSTREAM_STRING( &constant_bin[ 1016251 ], 2, 0 ); const_str_digest_9d495ac14a55bbb4c048faa1dd9740c4 = UNSTREAM_STRING( &constant_bin[ 1081561 ], 87, 0 ); const_str_digest_9eb6c06dfbe3b1d972d9cd5b3cd07ad3 = UNSTREAM_STRING( &constant_bin[ 1081648 ], 32, 0 ); const_str_digest_9fd5fa304496311ce860090862daff60 = UNSTREAM_STRING( &constant_bin[ 1081680 ], 25, 0 ); const_str_digest_a1b947d4348c132103b0fcc2930bd1fa = UNSTREAM_STRING( &constant_bin[ 1078481 ], 21, 0 ); const_str_digest_a23ad65f708fe0ccf3375a05edaf137f = UNSTREAM_STRING( &constant_bin[ 1081705 ], 34, 0 ); const_str_digest_a32269879300b041fd441d576a971aa4 = UNSTREAM_STRING( &constant_bin[ 1081739 ], 78, 0 ); const_str_digest_a37910e2837bb74a8ac17a725e63197d = UNSTREAM_STRING( &constant_bin[ 1081817 ], 7, 0 ); const_str_digest_a5c3694130ad6405ae4d1ac366f7f051 = UNSTREAM_STRING( &constant_bin[ 1072833 ], 19, 0 ); const_str_digest_a731efdfc52bda74c8042706da39e402 = UNSTREAM_STRING( &constant_bin[ 1081824 ], 439, 0 ); const_str_digest_a7de58b21f8d89408e6f6bc0054e4d96 = UNSTREAM_STRING( &constant_bin[ 1082263 ], 34, 0 ); const_str_digest_a865c075859ce91a3bff8c53a3bf5b87 = UNSTREAM_STRING( &constant_bin[ 1082297 ], 24, 0 ); const_str_digest_a8afce941e7743fb1211294527053568 = UNSTREAM_STRING( &constant_bin[ 1038025 ], 7, 0 ); const_str_digest_a8f7031741e338c5a3662bc8bde493c2 = UNSTREAM_STRING( &constant_bin[ 336757 ], 9, 0 ); const_str_digest_a97f071f0008b119291a75be0a54f0db = UNSTREAM_STRING( &constant_bin[ 1082321 ], 964, 0 ); const_str_digest_ac6a99e739693f272ebb761c3b4a46d8 = UNSTREAM_STRING( &constant_bin[ 1083285 ], 57, 0 ); const_str_digest_ac9267666430a3349fd1e73d1f6de0cf = UNSTREAM_STRING( &constant_bin[ 1083342 ], 36, 0 ); const_str_digest_ad481cb364b37bd937f33b4d475ca5d6 = UNSTREAM_STRING( &constant_bin[ 1083378 ], 47, 0 ); const_str_digest_af413396ce224ead18aef866d1998f25 = UNSTREAM_STRING( &constant_bin[ 1083425 ], 145, 0 ); const_str_digest_b0f41de0450f9223c04ee3ef6526d95f = UNSTREAM_STRING( &constant_bin[ 1083570 ], 51, 0 ); const_str_digest_b1a73bd199a3381dd99aa189b635c9d2 = UNSTREAM_STRING( &constant_bin[ 1083621 ], 28, 0 ); const_str_digest_b209cb6a510b4ec8a54ffbddff8173f4 = UNSTREAM_STRING( &constant_bin[ 1083649 ], 25, 0 ); const_str_digest_b454ce2d9dc0e1e729d4fe26cd68b667 = UNSTREAM_STRING( &constant_bin[ 1083674 ], 35, 0 ); const_str_digest_b4d5fd0edbbdd276f1a0a17ef81e8860 = UNSTREAM_STRING( &constant_bin[ 1083709 ], 48, 0 ); const_str_digest_b53e1cf2d1ffaffc66b7e7af7aa19e19 = UNSTREAM_STRING( &constant_bin[ 1083757 ], 35, 0 ); const_str_digest_b6761a339d072eed29792fd342025a92 = UNSTREAM_STRING( &constant_bin[ 1083792 ], 29, 0 ); const_str_digest_b8743901784613aeb6cba18f9454164f = UNSTREAM_STRING( &constant_bin[ 1083821 ], 11, 0 ); const_str_digest_b8a48d5016ebc922c843de4be3b7b3d3 = UNSTREAM_STRING( &constant_bin[ 1083832 ], 71, 0 ); const_str_digest_b8ac32b2a634222f497d81e945fc69e2 = UNSTREAM_STRING( &constant_bin[ 1083903 ], 23, 0 ); const_str_digest_b8bcf6698fa55a1cf1fc5eaebffde12d = UNSTREAM_STRING( &constant_bin[ 1083926 ], 49, 0 ); const_str_digest_b8c204bcd104359163fd2e01f36173c7 = UNSTREAM_STRING( &constant_bin[ 1083975 ], 22, 0 ); const_str_digest_ba6e2734a4c4b33dd16fd510fc59eb6f = UNSTREAM_STRING( &constant_bin[ 1083997 ], 51, 0 ); const_str_digest_ba96e1b0745354ebb9ebbd896eef2382 = UNSTREAM_STRING( &constant_bin[ 1084048 ], 89, 0 ); const_str_digest_bb8c2e7309a7a91ebcd3b999c51969a2 = UNSTREAM_STRING( &constant_bin[ 1019096 ], 54, 0 ); const_str_digest_bbd898cba8e091026a41c30005eabf32 = UNSTREAM_STRING( &constant_bin[ 1084137 ], 44, 0 ); const_str_digest_bd11a3d4509bb31d8294367664405f49 = UNSTREAM_STRING( &constant_bin[ 1084181 ], 29, 0 ); const_str_digest_bd64994aa1bf405da9e180c5248fed37 = UNSTREAM_STRING( &constant_bin[ 1084210 ], 20, 0 ); const_str_digest_bd69b5f39c936f279a15218b0da5ea9b = UNSTREAM_STRING( &constant_bin[ 1084230 ], 36, 0 ); const_str_digest_c008d08b40f62830643d6e456c174f44 = UNSTREAM_STRING( &constant_bin[ 1084266 ], 61, 0 ); const_str_digest_c3144b55fa49931d99eadea25c55a6a9 = UNSTREAM_STRING( &constant_bin[ 1084327 ], 36, 0 ); const_str_digest_c32335831cabcefadffa803ef4902569 = UNSTREAM_STRING( &constant_bin[ 1084363 ], 16, 0 ); const_str_digest_c3ae46c3d5576e352b30a35cef03a879 = UNSTREAM_STRING( &constant_bin[ 1077193 ], 29, 0 ); const_str_digest_c6f825031c2aa893b389bf32c2ca7e84 = UNSTREAM_STRING( &constant_bin[ 1084379 ], 87, 0 ); const_str_digest_c825d376812e29c9ddc6ce1ed7e3515f = UNSTREAM_STRING( &constant_bin[ 1084466 ], 35, 0 ); const_str_digest_c83ed1bc416d044b338832b29fb2651d = UNSTREAM_STRING( &constant_bin[ 1084501 ], 39, 0 ); const_str_digest_ca50e6177ec63039f0422a4797375d0f = UNSTREAM_STRING( &constant_bin[ 1084540 ], 34, 0 ); const_str_digest_ccaa1ea23810f6f3c2d7e6aefb2857f8 = UNSTREAM_STRING( &constant_bin[ 1084574 ], 69, 0 ); const_str_digest_ccdece3504035fa372440bbeb6311ffd = UNSTREAM_STRING( &constant_bin[ 1084643 ], 45, 0 ); const_str_digest_cda50241a18adb04de807208df21a568 = UNSTREAM_STRING( &constant_bin[ 1084688 ], 38, 0 ); const_str_digest_ce5b897b8639742629f34ea80efc31ef = UNSTREAM_STRING( &constant_bin[ 1084726 ], 285, 0 ); const_str_digest_cf71de3f9023718c59bbed5c352d152c = UNSTREAM_STRING( &constant_bin[ 1085011 ], 110, 0 ); const_str_digest_d053f48b89f24f879aa2f2f4e56eadf8 = UNSTREAM_STRING( &constant_bin[ 1085121 ], 22, 0 ); const_str_digest_d16b4bd4598ec2bdd698c16a87fe77c9 = UNSTREAM_STRING( &constant_bin[ 1077417 ], 7, 0 ); const_str_digest_d1797c16915d5942896329250beda9a0 = UNSTREAM_STRING( &constant_bin[ 1079077 ], 30, 0 ); const_str_digest_d193a08c2f34203a6dece0610a94cbce = UNSTREAM_STRING( &constant_bin[ 1085143 ], 16, 0 ); const_str_digest_d232384ee4b96c9afbc24157d4303e41 = UNSTREAM_STRING( &constant_bin[ 1085159 ], 50, 0 ); const_str_digest_d2f9453d0b79d1c9ade8eb7077960272 = UNSTREAM_STRING( &constant_bin[ 1085209 ], 33, 0 ); const_str_digest_d35f413d90f87685cd0ca3d921172de1 = UNSTREAM_STRING( &constant_bin[ 1085242 ], 18, 0 ); const_str_digest_d3d6e6f2fb7259f3a718f541c7ec9f99 = UNSTREAM_STRING( &constant_bin[ 1085260 ], 33, 0 ); const_str_digest_d463a03c581a8b2bf2d33fceb0420ee2 = UNSTREAM_STRING( &constant_bin[ 1085293 ], 60, 0 ); const_str_digest_d487beb1c5e6713bce7f604f4ca8cb09 = UNSTREAM_STRING( &constant_bin[ 1085353 ], 14, 0 ); const_str_digest_d4c31f89fcf78e3659ade9a24fdf42d4 = UNSTREAM_STRING( &constant_bin[ 1085367 ], 21, 0 ); const_str_digest_d5368055a448d76633f47a60bcd4479b = UNSTREAM_STRING( &constant_bin[ 1085388 ], 56, 0 ); const_str_digest_d5bee58dc1094b8a3f313601fcb2d9ae = UNSTREAM_STRING( &constant_bin[ 1085444 ], 19, 0 ); const_str_digest_d5f9d85e79c2d11eb4912782ada389d9 = UNSTREAM_STRING( &constant_bin[ 1085463 ], 49, 0 ); const_str_digest_d73c240a188c22c16ede43df7407dbf6 = UNSTREAM_STRING( &constant_bin[ 1085512 ], 74, 0 ); const_str_digest_d781c39102afc1fb103df62a9f2201f0 = UNSTREAM_STRING( &constant_bin[ 1085586 ], 62, 0 ); const_str_digest_d7ccb205c498b35eef75e47f3fcf28c0 = UNSTREAM_STRING( &constant_bin[ 1085648 ], 15, 0 ); const_str_digest_d86091769b46541c28720c4a54cd7147 = UNSTREAM_STRING( &constant_bin[ 1085663 ], 16, 0 ); const_str_digest_d88eb99589aadec9018c5dcfb35c3d1b = UNSTREAM_STRING( &constant_bin[ 1085679 ], 115, 0 ); const_str_digest_d8ce894b52970bea5aadfd06f6c6a09e = UNSTREAM_STRING( &constant_bin[ 1085794 ], 220, 0 ); const_str_digest_d8d8715e262515dd6621f0a26df29636 = UNSTREAM_STRING( &constant_bin[ 1086014 ], 44, 0 ); const_str_digest_d8eb3b4b1075e21ea19c37046b527fe3 = UNSTREAM_STRING( &constant_bin[ 1086058 ], 56, 0 ); const_str_digest_dbea79683d26f1311c1d73725d1126c6 = UNSTREAM_STRING( &constant_bin[ 1086114 ], 86, 0 ); const_str_digest_dbf10af0e37c0956cfea856a5a4357de = UNSTREAM_STRING( &constant_bin[ 1061946 ], 10, 0 ); const_str_digest_dc00e62d6cadf7b075734a2e4733966e = UNSTREAM_STRING( &constant_bin[ 1086200 ], 14, 0 ); const_str_digest_dc7e2d2d5f013f1151ce74d50a33f797 = UNSTREAM_STRING( &constant_bin[ 1086214 ], 9, 0 ); const_str_digest_de18e03ff93a362044876849cf37696f = UNSTREAM_STRING( &constant_bin[ 413000 ], 8, 0 ); const_str_digest_df5c6ba92426bdb1aade8d8a0f581562 = UNSTREAM_STRING( &constant_bin[ 1086223 ], 22, 0 ); const_str_digest_e1e3e29ea125920cd2f7a3b6ae5e81aa = UNSTREAM_STRING( &constant_bin[ 1086245 ], 72, 0 ); const_str_digest_e22f20bbcc3464586bae117166898e42 = UNSTREAM_STRING( &constant_bin[ 1086317 ], 109, 0 ); const_str_digest_e2418f9672b53d5c9e681cfa976e4ede = UNSTREAM_STRING( &constant_bin[ 1086426 ], 15, 0 ); const_str_digest_e37d7173ff6f9aaa416640aafbac950b = UNSTREAM_STRING( &constant_bin[ 1086441 ], 89, 0 ); const_str_digest_e38fb2055690700b05e7284ed8a85e3c = UNSTREAM_STRING( &constant_bin[ 1086530 ], 56, 0 ); const_str_digest_e4525de050bb139a277c0806fa6a7e6d = UNSTREAM_STRING( &constant_bin[ 1086586 ], 25, 0 ); const_str_digest_e5fa1be03dc4204e78792261a4698ad0 = UNSTREAM_STRING( &constant_bin[ 1086611 ], 12, 0 ); const_str_digest_e6393a97f5d5446e3f140f696e680264 = UNSTREAM_STRING( &constant_bin[ 1086623 ], 236, 0 ); const_str_digest_e831352a8f095fac61be53d333f6cde5 = UNSTREAM_STRING( &constant_bin[ 1086859 ], 89, 0 ); const_str_digest_e982083adb75f151dd46b8ba5198bcc0 = UNSTREAM_STRING( &constant_bin[ 1078480 ], 22, 0 ); const_str_digest_ea53ee9a311971559ec8711c5fb4be91 = UNSTREAM_STRING( &constant_bin[ 1086948 ], 1527, 0 ); const_str_digest_eaecd73b62fde941c6920f619a250093 = UNSTREAM_STRING( &constant_bin[ 1088475 ], 138, 0 ); const_str_digest_ec3b7568b05b17898a1cfc5552eb0db7 = UNSTREAM_STRING( &constant_bin[ 1088613 ], 57, 0 ); const_str_digest_ec9c6dcde4931b9286e950f1e97757e1 = UNSTREAM_STRING( &constant_bin[ 1081577 ], 22, 0 ); const_str_digest_ed5b9d330fed7db100d8d2e379138830 = UNSTREAM_STRING( &constant_bin[ 1086995 ], 38, 0 ); const_str_digest_ee4983e7371c33b4bfdb0e9618656343 = UNSTREAM_STRING( &constant_bin[ 1088670 ], 273, 0 ); const_str_digest_ee4b6cfd909f1956d8f9cdb9d88a8e33 = UNSTREAM_STRING( &constant_bin[ 1088943 ], 86, 0 ); const_str_digest_ee729f5c9a3c88dd8861517adea99433 = UNSTREAM_STRING( &constant_bin[ 1076583 ], 33, 0 ); const_str_digest_eeebd0c9ae3aeb9122106e125f5bce40 = UNSTREAM_STRING( &constant_bin[ 1089029 ], 6, 0 ); const_str_digest_ef99bdd7a9eb43f15832f068e2ea06fc = UNSTREAM_STRING( &constant_bin[ 1089035 ], 27, 0 ); const_str_digest_f52b7060aab9a16195083441b23e029f = UNSTREAM_STRING( &constant_bin[ 1089062 ], 108, 0 ); const_str_digest_f5c55f1a250689d1c890b2eab5aa0071 = UNSTREAM_STRING( &constant_bin[ 1004819 ], 11, 0 ); const_str_digest_f6768cb0ae865b6d06874d47205cde23 = UNSTREAM_STRING( &constant_bin[ 1078284 ], 20, 0 ); const_str_digest_f69e5c82471da4a14868bf6c3579cdb5 = UNSTREAM_STRING( &constant_bin[ 1089170 ], 25, 0 ); const_str_digest_f763cd7bcd9a235a07c2d522dff79b8e = UNSTREAM_STRING( &constant_bin[ 1089195 ], 87, 0 ); const_str_digest_f872d11254dc4965c1a21e47d3db82a2 = UNSTREAM_STRING( &constant_bin[ 1089282 ], 13, 0 ); const_str_digest_f9e489921e325b2dda9adf3026842ef7 = UNSTREAM_STRING( &constant_bin[ 1089295 ], 20, 0 ); const_str_digest_fa2c4b951468a9631db264c5434a4c6d = UNSTREAM_STRING( &constant_bin[ 1089315 ], 26, 0 ); const_str_digest_fa68c6dda4f168588cd3f272b7e3b4fb = UNSTREAM_STRING( &constant_bin[ 1089341 ], 16, 0 ); const_str_digest_fba1625b3c6ce450ca640bc284d80373 = UNSTREAM_STRING( &constant_bin[ 1089357 ], 79, 0 ); const_str_digest_fbcd99c73635e58fec4f2c1cb3548a51 = UNSTREAM_STRING( &constant_bin[ 1089436 ], 50, 0 ); const_str_digest_fc4edadf7639afc609ef0411b3949729 = UNSTREAM_STRING( &constant_bin[ 1089486 ], 17, 0 ); const_str_digest_fcacca1424f339192c748b8e531c8ec3 = UNSTREAM_STRING( &constant_bin[ 335602 ], 3, 0 ); const_str_digest_fd17d65e20f214ebc5b50e179ff507c1 = UNSTREAM_STRING( &constant_bin[ 1077642 ], 51, 0 ); const_str_digest_fde8d015bd498e7e13c01750c46677b5 = UNSTREAM_STRING( &constant_bin[ 1089503 ], 22, 0 ); const_tuple_1fee174538866786d34aa5f123ad8530_tuple = PyMarshal_ReadObjectFromString( (char *)&constant_bin[ 1089525 ], 184 ); const_tuple_88c260f85cd63106b992b7767f2d95e8_tuple = PyMarshal_ReadObjectFromString( (char *)&constant_bin[ 1089709 ], 259 ); const_tuple_cde206c752dab3a50d1c0e1f18afb419_tuple = PyMarshal_ReadObjectFromString( (char *)&constant_bin[ 1089968 ], 391 ); const_list_str_plain_F_WRAPPEDFUNC_str_plain_F_FUNC_list = PyList_New( 2 ); PyList_SET_ITEM( const_list_str_plain_F_WRAPPEDFUNC_str_plain_F_FUNC_list, 0, const_str_plain_F_WRAPPEDFUNC ); Py_INCREF( const_str_plain_F_WRAPPEDFUNC ); PyList_SET_ITEM( const_list_str_plain_F_WRAPPEDFUNC_str_plain_F_FUNC_list, 1, const_str_plain_F_FUNC ); Py_INCREF( const_str_plain_F_FUNC ); const_list_str_plain_SWAP_str_plain_create_cb_arglist_list = PyList_New( 2 ); PyList_SET_ITEM( const_list_str_plain_SWAP_str_plain_create_cb_arglist_list, 0, const_str_plain_SWAP ); Py_INCREF( const_str_plain_SWAP ); PyList_SET_ITEM( const_list_str_plain_SWAP_str_plain_create_cb_arglist_list, 1, const_str_plain_create_cb_arglist ); Py_INCREF( const_str_plain_create_cb_arglist ); const_list_str_digest_6bbbfb5feaca7cb532b036a03f1876bc_list = PyList_New( 1 ); PyList_SET_ITEM( const_list_str_digest_6bbbfb5feaca7cb532b036a03f1876bc_list, 0, const_str_digest_6bbbfb5feaca7cb532b036a03f1876bc ); Py_INCREF( const_str_digest_6bbbfb5feaca7cb532b036a03f1876bc ); const_list_str_digest_6f20bfaa2efa212f61a92cbf6b7f4bf6_list = PyList_New( 1 ); PyList_SET_ITEM( const_list_str_digest_6f20bfaa2efa212f61a92cbf6b7f4bf6_list, 0, const_str_digest_6f20bfaa2efa212f61a92cbf6b7f4bf6 ); Py_INCREF( const_str_digest_6f20bfaa2efa212f61a92cbf6b7f4bf6 ); const_list_str_digest_901a22001a0c7f25add446a5f68900d0_list = PyList_New( 1 ); PyList_SET_ITEM( const_list_str_digest_901a22001a0c7f25add446a5f68900d0_list, 0, const_str_digest_901a22001a0c7f25add446a5f68900d0 ); Py_INCREF( const_str_digest_901a22001a0c7f25add446a5f68900d0 ); const_list_str_digest_aef332a279fc26992d9b07f03b37a7b7_list = PyList_New( 1 ); PyList_SET_ITEM( const_list_str_digest_aef332a279fc26992d9b07f03b37a7b7_list, 0, const_str_digest_aef332a279fc26992d9b07f03b37a7b7 ); Py_INCREF( const_str_digest_aef332a279fc26992d9b07f03b37a7b7 ); const_list_str_digest_e37d7173ff6f9aaa416640aafbac950b_list = PyList_New( 1 ); PyList_SET_ITEM( const_list_str_digest_e37d7173ff6f9aaa416640aafbac950b_list, 0, const_str_digest_e37d7173ff6f9aaa416640aafbac950b ); Py_INCREF( const_str_digest_e37d7173ff6f9aaa416640aafbac950b ); const_list_str_digest_e4525de050bb139a277c0806fa6a7e6d_list = PyList_New( 1 ); PyList_SET_ITEM( const_list_str_digest_e4525de050bb139a277c0806fa6a7e6d_list, 0, const_str_digest_e4525de050bb139a277c0806fa6a7e6d ); Py_INCREF( const_str_digest_e4525de050bb139a277c0806fa6a7e6d ); const_list_str_digest_e94bac8f3260b056e46d869b06fc3df5_list = PyList_New( 1 ); PyList_SET_ITEM( const_list_str_digest_e94bac8f3260b056e46d869b06fc3df5_list, 0, const_str_digest_e94bac8f3260b056e46d869b06fc3df5 ); Py_INCREF( const_str_digest_e94bac8f3260b056e46d869b06fc3df5 ); const_list_str_digest_f52b7060aab9a16195083441b23e029f_list = PyList_New( 1 ); PyList_SET_ITEM( const_list_str_digest_f52b7060aab9a16195083441b23e029f_list, 0, const_str_digest_f52b7060aab9a16195083441b23e029f ); Py_INCREF( const_str_digest_f52b7060aab9a16195083441b23e029f ); } // The module code objects. static PyCodeObject *codeobj_fc191ca33fb34ff1ba4327ff3087b85f; static PyCodeObject *codeobj_55f4764ba2936614f48431287cbfb287; static PyCodeObject *codeobj_ca6f250ecb31f7f4bfadde7ca62971d3; static PyCodeObject *codeobj_3d391909584bb301ebdd977cdb6f6f76; static PyCodeObject *codeobj_d3b4964f0444715b98dbee738311a005; static void _initModuleCodeObjects(void) { codeobj_fc191ca33fb34ff1ba4327ff3087b85f = MAKE_CODEOBJ( const_str_digest_76fe246148a5eb0cccb642576b728a94, const_str_plain_buildapi, 1327, const_tuple_str_plain_rout_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION ); codeobj_55f4764ba2936614f48431287cbfb287 = MAKE_CODEOBJ( const_str_digest_76fe246148a5eb0cccb642576b728a94, const_str_plain_buildapi, 1327, const_tuple_1fee174538866786d34aa5f123ad8530_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION ); codeobj_ca6f250ecb31f7f4bfadde7ca62971d3 = MAKE_CODEOBJ( const_str_digest_76fe246148a5eb0cccb642576b728a94, const_str_plain_buildmodule, 1159, const_tuple_str_plain_m_str_plain_um_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION ); codeobj_3d391909584bb301ebdd977cdb6f6f76 = MAKE_CODEOBJ( const_str_digest_76fe246148a5eb0cccb642576b728a94, const_str_plain_buildmodule, 1159, const_tuple_88c260f85cd63106b992b7767f2d95e8_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION ); codeobj_d3b4964f0444715b98dbee738311a005 = MAKE_CODEOBJ( const_str_digest_76fe246148a5eb0cccb642576b728a94, const_str_plain_rules, 0, const_tuple_empty, 0, CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION ); } // The module function declarations. static PyObject *MAKE_FUNCTION_function_1_buildmodule_of_module_numpy$f2py$rules( ); static PyObject *MAKE_FUNCTION_function_2_buildapi_of_module_numpy$f2py$rules( ); // The module function definitions. static PyObject *impl_function_1_buildmodule_of_module_numpy$f2py$rules( Nuitka_FunctionObject *self, PyObject *_python_par_m, PyObject *_python_par_um ) { // No context is used. // Local variable declarations. PyObjectLocalVariable par_m; par_m.object = _python_par_m; PyObjectLocalVariable par_um; par_um.object = _python_par_um; PyObjectLocalVariable var_ret; PyObjectLocalVariable var_mod_rules; PyObjectLocalVariable var_vrd; PyObjectLocalVariable var_rd; PyObjectLocalVariable var_funcwrappers; PyObjectLocalVariable var_funcwrappers2; PyObjectLocalVariable var_n; PyObjectLocalVariable var_nb; PyObjectLocalVariable var_bi; PyObjectLocalVariable var_b; PyObjectLocalVariable var_nb_list; PyObjectLocalVariable var_k; PyObjectLocalVariable var_a; PyObjectLocalVariable var_nb1; PyObjectLocalVariable var_api; PyObjectLocalVariable var_wrap; PyObjectLocalVariable var_ar; PyObjectLocalVariable var_cr; PyObjectLocalVariable var_mr; PyObjectLocalVariable var_u; PyObjectLocalVariable var_needs; PyObjectLocalVariable var_code; PyObjectLocalVariable var_c; PyObjectLocalVariable var_r; PyObjectLocalVariable var_fn; PyObjectLocalVariable var_f; PyObjectLocalVariable var_wn; PyObjectLocalVariable var_lines; PyObjectLocalVariable var_l; PyObjectTempVariable tmp_for_loop_1__for_iterator; PyObjectTempVariable tmp_for_loop_1__iter_value; PyObjectTempVariable tmp_for_loop_2__for_iterator; PyObjectTempVariable tmp_for_loop_2__iter_value; PyObjectTempVariable tmp_for_loop_3__for_iterator; PyObjectTempVariable tmp_for_loop_3__iter_value; PyObjectTempVariable tmp_for_loop_4__for_iterator; PyObjectTempVariable tmp_for_loop_4__iter_value; PyObjectTempVariable tmp_tuple_unpack_1__source_iter; PyObjectTempVariable tmp_tuple_unpack_1__element_1; PyObjectTempVariable tmp_tuple_unpack_1__element_2; PyObjectTempVariable tmp_for_loop_5__for_iterator; PyObjectTempVariable tmp_for_loop_5__iter_value; PyObjectTempVariable tmp_tuple_unpack_2__source_iter; PyObjectTempVariable tmp_tuple_unpack_2__element_1; PyObjectTempVariable tmp_tuple_unpack_2__element_2; PyObjectTempVariable tmp_tuple_unpack_3__source_iter; PyObjectTempVariable tmp_tuple_unpack_3__element_1; PyObjectTempVariable tmp_tuple_unpack_3__element_2; PyObjectTempVariable tmp_tuple_unpack_4__source_iter; PyObjectTempVariable tmp_tuple_unpack_4__element_1; PyObjectTempVariable tmp_tuple_unpack_4__element_2; PyObjectTempVariable tmp_for_loop_6__for_iterator; PyObjectTempVariable tmp_for_loop_6__iter_value; PyObjectTempVariable tmp_for_loop_7__for_iterator; PyObjectTempVariable tmp_for_loop_7__iter_value; PyObjectTempVariable tmp_for_loop_8__for_iterator; PyObjectTempVariable tmp_for_loop_8__iter_value; PyObjectTempVariable tmp_for_loop_9__for_iterator; PyObjectTempVariable tmp_for_loop_9__iter_value; PyObjectTempVariable tmp_and_1__value_1; PyObjectTempVariable tmp_or_1__value_1; PyObjectTempVariable tmp_for_loop_10__for_iterator; PyObjectTempVariable tmp_for_loop_10__iter_value; PyObjectTempVariable tmp_and_2__value_1; PyObjectTempVariable tmp_for_loop_11__for_iterator; PyObjectTempVariable tmp_for_loop_11__iter_value; PyObjectTempVariable tmp_and_3__value_1; PyObject *exception_type = NULL, *exception_value = NULL; PyTracebackObject *exception_tb = NULL; PyObject *exception_keeper_type_1; PyObject *exception_keeper_value_1; PyTracebackObject *exception_keeper_tb_1; PyObject *exception_keeper_type_2; PyObject *exception_keeper_value_2; PyTracebackObject *exception_keeper_tb_2; PyObject *exception_keeper_type_3; PyObject *exception_keeper_value_3; PyTracebackObject *exception_keeper_tb_3; PyObject *exception_keeper_type_4; PyObject *exception_keeper_value_4; PyTracebackObject *exception_keeper_tb_4; PyObject *exception_keeper_type_5; PyObject *exception_keeper_value_5; PyTracebackObject *exception_keeper_tb_5; PyObject *exception_keeper_type_6; PyObject *exception_keeper_value_6; PyTracebackObject *exception_keeper_tb_6; PyObject *exception_keeper_type_7; PyObject *exception_keeper_value_7; PyTracebackObject *exception_keeper_tb_7; PyObject *exception_keeper_type_8; PyObject *exception_keeper_value_8; PyTracebackObject *exception_keeper_tb_8; PyObject *exception_keeper_type_9; PyObject *exception_keeper_value_9; PyTracebackObject *exception_keeper_tb_9; PyObject *exception_keeper_type_10; PyObject *exception_keeper_value_10; PyTracebackObject *exception_keeper_tb_10; PyObject *exception_keeper_type_11; PyObject *exception_keeper_value_11; PyTracebackObject *exception_keeper_tb_11; PyObject *exception_keeper_type_12; PyObject *exception_keeper_value_12; PyTracebackObject *exception_keeper_tb_12; PyObject *exception_keeper_type_13; PyObject *exception_keeper_value_13; PyTracebackObject *exception_keeper_tb_13; PyObject *exception_keeper_type_14; PyObject *exception_keeper_value_14; PyTracebackObject *exception_keeper_tb_14; PyObject *exception_keeper_type_15; PyObject *exception_keeper_value_15; PyTracebackObject *exception_keeper_tb_15; PyObject *exception_keeper_type_16; PyObject *exception_keeper_value_16; PyTracebackObject *exception_keeper_tb_16; PyObject *exception_keeper_type_17; PyObject *exception_keeper_value_17; PyTracebackObject *exception_keeper_tb_17; PyObject *exception_keeper_type_18; PyObject *exception_keeper_value_18; PyTracebackObject *exception_keeper_tb_18; PyObject *exception_keeper_type_19; PyObject *exception_keeper_value_19; PyTracebackObject *exception_keeper_tb_19; PyObject *exception_keeper_type_20; PyObject *exception_keeper_value_20; PyTracebackObject *exception_keeper_tb_20; PyObject *exception_keeper_type_21; PyObject *exception_keeper_value_21; PyTracebackObject *exception_keeper_tb_21; PyObject *exception_keeper_type_22; PyObject *exception_keeper_value_22; PyTracebackObject *exception_keeper_tb_22; PyObject *exception_keeper_type_23; PyObject *exception_keeper_value_23; PyTracebackObject *exception_keeper_tb_23; PyObject *exception_keeper_type_24; PyObject *exception_keeper_value_24; PyTracebackObject *exception_keeper_tb_24; PyObject *exception_keeper_type_25; PyObject *exception_keeper_value_25; PyTracebackObject *exception_keeper_tb_25; PyObject *exception_keeper_type_26; PyObject *exception_keeper_value_26; PyTracebackObject *exception_keeper_tb_26; PyObject *exception_keeper_type_27; PyObject *exception_keeper_value_27; PyTracebackObject *exception_keeper_tb_27; PyObject *tmp_ass_subscribed_1; PyObject *tmp_ass_subscribed_2; PyObject *tmp_ass_subscribed_3; PyObject *tmp_ass_subscribed_4; PyObject *tmp_ass_subscribed_5; PyObject *tmp_ass_subscribed_6; PyObject *tmp_ass_subscribed_7; PyObject *tmp_ass_subscript_1; PyObject *tmp_ass_subscript_2; PyObject *tmp_ass_subscript_3; PyObject *tmp_ass_subscript_4; PyObject *tmp_ass_subscript_5; PyObject *tmp_ass_subscript_6; PyObject *tmp_ass_subscript_7; PyObject *tmp_ass_subvalue_1; PyObject *tmp_ass_subvalue_2; PyObject *tmp_ass_subvalue_3; PyObject *tmp_ass_subvalue_4; PyObject *tmp_ass_subvalue_5; PyObject *tmp_ass_subvalue_6; PyObject *tmp_ass_subvalue_7; PyObject *tmp_assign_source_1; PyObject *tmp_assign_source_2; PyObject *tmp_assign_source_3; PyObject *tmp_assign_source_4; PyObject *tmp_assign_source_5; PyObject *tmp_assign_source_6; PyObject *tmp_assign_source_7; PyObject *tmp_assign_source_8; PyObject *tmp_assign_source_9; PyObject *tmp_assign_source_10; PyObject *tmp_assign_source_11; PyObject *tmp_assign_source_12; PyObject *tmp_assign_source_13; PyObject *tmp_assign_source_14; PyObject *tmp_assign_source_15; PyObject *tmp_assign_source_16; PyObject *tmp_assign_source_17; PyObject *tmp_assign_source_18; PyObject *tmp_assign_source_19; PyObject *tmp_assign_source_20; PyObject *tmp_assign_source_21; PyObject *tmp_assign_source_22; PyObject *tmp_assign_source_23; PyObject *tmp_assign_source_24; PyObject *tmp_assign_source_25; PyObject *tmp_assign_source_26; PyObject *tmp_assign_source_27; PyObject *tmp_assign_source_28; PyObject *tmp_assign_source_29; PyObject *tmp_assign_source_30; PyObject *tmp_assign_source_31; PyObject *tmp_assign_source_32; PyObject *tmp_assign_source_33; PyObject *tmp_assign_source_34; PyObject *tmp_assign_source_35; PyObject *tmp_assign_source_36; PyObject *tmp_assign_source_37; PyObject *tmp_assign_source_38; PyObject *tmp_assign_source_39; PyObject *tmp_assign_source_40; PyObject *tmp_assign_source_41; PyObject *tmp_assign_source_42; PyObject *tmp_assign_source_43; PyObject *tmp_assign_source_44; PyObject *tmp_assign_source_45; PyObject *tmp_assign_source_46; PyObject *tmp_assign_source_47; PyObject *tmp_assign_source_48; PyObject *tmp_assign_source_49; PyObject *tmp_assign_source_50; PyObject *tmp_assign_source_51; PyObject *tmp_assign_source_52; PyObject *tmp_assign_source_53; PyObject *tmp_assign_source_54; PyObject *tmp_assign_source_55; PyObject *tmp_assign_source_56; PyObject *tmp_assign_source_57; PyObject *tmp_assign_source_58; PyObject *tmp_assign_source_59; PyObject *tmp_assign_source_60; PyObject *tmp_assign_source_61; PyObject *tmp_assign_source_62; PyObject *tmp_assign_source_63; PyObject *tmp_assign_source_64; PyObject *tmp_assign_source_65; PyObject *tmp_assign_source_66; PyObject *tmp_assign_source_67; PyObject *tmp_assign_source_68; PyObject *tmp_assign_source_69; PyObject *tmp_assign_source_70; PyObject *tmp_assign_source_71; PyObject *tmp_assign_source_72; PyObject *tmp_assign_source_73; PyObject *tmp_assign_source_74; PyObject *tmp_assign_source_75; PyObject *tmp_assign_source_76; PyObject *tmp_assign_source_77; PyObject *tmp_assign_source_78; PyObject *tmp_assign_source_79; PyObject *tmp_assign_source_80; PyObject *tmp_assign_source_81; PyObject *tmp_assign_source_82; PyObject *tmp_assign_source_83; PyObject *tmp_assign_source_84; PyObject *tmp_assign_source_85; PyObject *tmp_assign_source_86; PyObject *tmp_assign_source_87; PyObject *tmp_assign_source_88; PyObject *tmp_assign_source_89; PyObject *tmp_assign_source_90; PyObject *tmp_assign_source_91; PyObject *tmp_assign_source_92; PyObject *tmp_assign_source_93; PyObject *tmp_assign_source_94; PyObject *tmp_assign_source_95; PyObject *tmp_assign_source_96; PyObject *tmp_assign_source_97; PyObject *tmp_assign_source_98; PyObject *tmp_assign_source_99; PyObject *tmp_assign_source_100; PyObject *tmp_assign_source_101; PyObject *tmp_assign_source_102; PyObject *tmp_assign_source_103; PyObject *tmp_assign_source_104; PyObject *tmp_assign_source_105; PyObject *tmp_assign_source_106; PyObject *tmp_assign_source_107; PyObject *tmp_binop_left_1; PyObject *tmp_binop_left_2; PyObject *tmp_binop_left_3; PyObject *tmp_binop_left_4; PyObject *tmp_binop_left_5; PyObject *tmp_binop_left_6; PyObject *tmp_binop_left_7; PyObject *tmp_binop_left_8; PyObject *tmp_binop_left_9; PyObject *tmp_binop_left_10; PyObject *tmp_binop_left_11; PyObject *tmp_binop_left_12; PyObject *tmp_binop_left_13; PyObject *tmp_binop_left_14; PyObject *tmp_binop_left_15; PyObject *tmp_binop_left_16; PyObject *tmp_binop_left_17; PyObject *tmp_binop_left_18; PyObject *tmp_binop_left_19; PyObject *tmp_binop_left_20; PyObject *tmp_binop_left_21; PyObject *tmp_binop_left_22; PyObject *tmp_binop_left_23; PyObject *tmp_binop_right_1; PyObject *tmp_binop_right_2; PyObject *tmp_binop_right_3; PyObject *tmp_binop_right_4; PyObject *tmp_binop_right_5; PyObject *tmp_binop_right_6; PyObject *tmp_binop_right_7; PyObject *tmp_binop_right_8; PyObject *tmp_binop_right_9; PyObject *tmp_binop_right_10; PyObject *tmp_binop_right_11; PyObject *tmp_binop_right_12; PyObject *tmp_binop_right_13; PyObject *tmp_binop_right_14; PyObject *tmp_binop_right_15; PyObject *tmp_binop_right_16; PyObject *tmp_binop_right_17; PyObject *tmp_binop_right_18; PyObject *tmp_binop_right_19; PyObject *tmp_binop_right_20; PyObject *tmp_binop_right_21; PyObject *tmp_binop_right_22; PyObject *tmp_binop_right_23; PyObject *tmp_call_arg_element_1; PyObject *tmp_call_arg_element_2; PyObject *tmp_call_arg_element_3; PyObject *tmp_call_arg_element_4; PyObject *tmp_call_arg_element_5; PyObject *tmp_call_arg_element_6; PyObject *tmp_call_arg_element_7; PyObject *tmp_call_arg_element_8; PyObject *tmp_call_arg_element_9; PyObject *tmp_call_arg_element_10; PyObject *tmp_call_arg_element_11; PyObject *tmp_call_arg_element_12; PyObject *tmp_call_arg_element_13; PyObject *tmp_call_arg_element_14; PyObject *tmp_call_arg_element_15; PyObject *tmp_call_arg_element_16; PyObject *tmp_call_arg_element_17; PyObject *tmp_call_arg_element_18; PyObject *tmp_call_arg_element_19; PyObject *tmp_call_arg_element_20; PyObject *tmp_call_arg_element_21; PyObject *tmp_call_arg_element_22; PyObject *tmp_call_arg_element_23; PyObject *tmp_call_arg_element_24; PyObject *tmp_call_arg_element_25; PyObject *tmp_call_arg_element_26; PyObject *tmp_call_arg_element_27; PyObject *tmp_call_arg_element_28; PyObject *tmp_call_arg_element_29; PyObject *tmp_call_arg_element_30; PyObject *tmp_call_arg_element_31; PyObject *tmp_call_arg_element_32; PyObject *tmp_call_arg_element_33; PyObject *tmp_call_arg_element_34; PyObject *tmp_call_arg_element_35; PyObject *tmp_call_arg_element_36; PyObject *tmp_call_arg_element_37; PyObject *tmp_call_arg_element_38; PyObject *tmp_call_arg_element_39; PyObject *tmp_call_arg_element_40; PyObject *tmp_call_arg_element_41; PyObject *tmp_call_arg_element_42; PyObject *tmp_call_arg_element_43; PyObject *tmp_call_arg_element_44; PyObject *tmp_call_arg_element_45; PyObject *tmp_call_arg_element_46; PyObject *tmp_call_arg_element_47; PyObject *tmp_call_arg_element_48; PyObject *tmp_call_arg_element_49; PyObject *tmp_call_arg_element_50; PyObject *tmp_call_arg_element_51; PyObject *tmp_call_arg_element_52; PyObject *tmp_call_arg_element_53; PyObject *tmp_call_arg_element_54; PyObject *tmp_call_arg_element_55; PyObject *tmp_call_arg_element_56; PyObject *tmp_call_arg_element_57; PyObject *tmp_call_arg_element_58; PyObject *tmp_call_arg_element_59; PyObject *tmp_call_arg_element_60; PyObject *tmp_call_arg_element_61; PyObject *tmp_call_arg_element_62; PyObject *tmp_call_arg_element_63; PyObject *tmp_call_arg_element_64; PyObject *tmp_call_arg_element_65; PyObject *tmp_call_arg_element_66; PyObject *tmp_call_arg_element_67; PyObject *tmp_call_arg_element_68; PyObject *tmp_call_arg_element_69; PyObject *tmp_call_arg_element_70; PyObject *tmp_call_arg_element_71; PyObject *tmp_call_arg_element_72; PyObject *tmp_call_arg_element_73; PyObject *tmp_call_arg_element_74; PyObject *tmp_call_arg_element_75; PyObject *tmp_call_arg_element_76; PyObject *tmp_call_arg_element_77; PyObject *tmp_call_arg_element_78; PyObject *tmp_call_arg_element_79; PyObject *tmp_call_arg_element_80; PyObject *tmp_call_arg_element_81; PyObject *tmp_call_arg_element_82; PyObject *tmp_call_arg_element_83; PyObject *tmp_call_arg_element_84; PyObject *tmp_call_arg_element_85; PyObject *tmp_call_arg_element_86; PyObject *tmp_call_arg_element_87; PyObject *tmp_call_arg_element_88; PyObject *tmp_call_arg_element_89; PyObject *tmp_call_arg_element_90; PyObject *tmp_call_arg_element_91; PyObject *tmp_call_arg_element_92; PyObject *tmp_call_arg_element_93; PyObject *tmp_call_arg_element_94; PyObject *tmp_called_1; PyObject *tmp_called_2; PyObject *tmp_called_3; PyObject *tmp_called_4; PyObject *tmp_called_5; PyObject *tmp_called_6; PyObject *tmp_called_7; PyObject *tmp_called_8; PyObject *tmp_called_9; PyObject *tmp_called_10; PyObject *tmp_called_11; PyObject *tmp_called_12; PyObject *tmp_called_13; PyObject *tmp_called_14; PyObject *tmp_called_15; PyObject *tmp_called_16; PyObject *tmp_called_17; PyObject *tmp_called_18; PyObject *tmp_called_19; PyObject *tmp_called_20; PyObject *tmp_called_21; PyObject *tmp_called_22; PyObject *tmp_called_23; PyObject *tmp_called_24; PyObject *tmp_called_25; PyObject *tmp_called_26; PyObject *tmp_called_27; PyObject *tmp_called_28; PyObject *tmp_called_29; PyObject *tmp_called_30; PyObject *tmp_called_31; PyObject *tmp_called_32; PyObject *tmp_called_33; PyObject *tmp_called_34; PyObject *tmp_called_35; PyObject *tmp_called_36; PyObject *tmp_called_37; PyObject *tmp_called_38; PyObject *tmp_called_39; PyObject *tmp_called_40; PyObject *tmp_called_41; PyObject *tmp_called_42; PyObject *tmp_called_43; PyObject *tmp_called_44; PyObject *tmp_called_45; PyObject *tmp_called_46; PyObject *tmp_called_47; PyObject *tmp_called_48; PyObject *tmp_called_49; PyObject *tmp_called_50; PyObject *tmp_called_51; PyObject *tmp_called_52; PyObject *tmp_called_53; PyObject *tmp_called_54; PyObject *tmp_called_55; PyObject *tmp_called_56; PyObject *tmp_called_57; PyObject *tmp_called_58; PyObject *tmp_called_59; PyObject *tmp_called_60; PyObject *tmp_called_61; PyObject *tmp_called_62; PyObject *tmp_called_63; PyObject *tmp_called_64; PyObject *tmp_called_65; PyObject *tmp_called_66; PyObject *tmp_called_67; PyObject *tmp_called_68; PyObject *tmp_called_69; PyObject *tmp_called_70; PyObject *tmp_called_71; PyObject *tmp_called_72; PyObject *tmp_called_73; PyObject *tmp_called_74; PyObject *tmp_called_75; PyObject *tmp_called_76; PyObject *tmp_called_77; PyObject *tmp_called_78; PyObject *tmp_called_79; PyObject *tmp_called_80; PyObject *tmp_called_81; int tmp_cmp_Eq_1; int tmp_cmp_Eq_2; int tmp_cmp_Gt_1; int tmp_cmp_GtE_1; int tmp_cmp_In_1; int tmp_cmp_In_2; int tmp_cmp_In_3; int tmp_cmp_In_4; int tmp_cmp_In_5; int tmp_cmp_In_6; int tmp_cmp_In_7; int tmp_cmp_In_8; int tmp_cmp_In_9; int tmp_cmp_In_10; int tmp_cmp_In_11; int tmp_cmp_NotIn_1; int tmp_cmp_NotIn_2; PyObject *tmp_compare_left_1; PyObject *tmp_compare_left_2; PyObject *tmp_compare_left_3; PyObject *tmp_compare_left_4; PyObject *tmp_compare_left_5; PyObject *tmp_compare_left_6; PyObject *tmp_compare_left_7; PyObject *tmp_compare_left_8; PyObject *tmp_compare_left_9; PyObject *tmp_compare_left_10; PyObject *tmp_compare_left_11; PyObject *tmp_compare_left_12; PyObject *tmp_compare_left_13; PyObject *tmp_compare_left_14; PyObject *tmp_compare_left_15; PyObject *tmp_compare_left_16; PyObject *tmp_compare_left_17; PyObject *tmp_compare_right_1; PyObject *tmp_compare_right_2; PyObject *tmp_compare_right_3; PyObject *tmp_compare_right_4; PyObject *tmp_compare_right_5; PyObject *tmp_compare_right_6; PyObject *tmp_compare_right_7; PyObject *tmp_compare_right_8; PyObject *tmp_compare_right_9; PyObject *tmp_compare_right_10; PyObject *tmp_compare_right_11; PyObject *tmp_compare_right_12; PyObject *tmp_compare_right_13; PyObject *tmp_compare_right_14; PyObject *tmp_compare_right_15; PyObject *tmp_compare_right_16; PyObject *tmp_compare_right_17; PyObject *tmp_compexpr_left_1; PyObject *tmp_compexpr_left_2; PyObject *tmp_compexpr_left_3; PyObject *tmp_compexpr_left_4; PyObject *tmp_compexpr_left_5; PyObject *tmp_compexpr_right_1; PyObject *tmp_compexpr_right_2; PyObject *tmp_compexpr_right_3; PyObject *tmp_compexpr_right_4; PyObject *tmp_compexpr_right_5; int tmp_cond_truth_1; int tmp_cond_truth_2; int tmp_cond_truth_3; int tmp_cond_truth_4; int tmp_cond_truth_5; int tmp_cond_truth_6; int tmp_cond_truth_7; int tmp_cond_truth_8; int tmp_cond_truth_9; int tmp_cond_truth_10; int tmp_cond_truth_11; int tmp_cond_truth_12; int tmp_cond_truth_13; int tmp_cond_truth_14; int tmp_cond_truth_15; int tmp_cond_truth_16; PyObject *tmp_cond_value_1; PyObject *tmp_cond_value_2; PyObject *tmp_cond_value_3; PyObject *tmp_cond_value_4; PyObject *tmp_cond_value_5; PyObject *tmp_cond_value_6; PyObject *tmp_cond_value_7; PyObject *tmp_cond_value_8; PyObject *tmp_cond_value_9; PyObject *tmp_cond_value_10; PyObject *tmp_cond_value_11; PyObject *tmp_cond_value_12; PyObject *tmp_cond_value_13; PyObject *tmp_cond_value_14; PyObject *tmp_cond_value_15; PyObject *tmp_cond_value_16; PyObject *tmp_delsubscr_subscript_1; PyObject *tmp_delsubscr_target_1; PyObject *tmp_dict_key_1; PyObject *tmp_dict_value_1; PyObject *tmp_frame_locals; PyObject *tmp_iter_arg_1; PyObject *tmp_iter_arg_2; PyObject *tmp_iter_arg_3; PyObject *tmp_iter_arg_4; PyObject *tmp_iter_arg_5; PyObject *tmp_iter_arg_6; PyObject *tmp_iter_arg_7; PyObject *tmp_iter_arg_8; PyObject *tmp_iter_arg_9; PyObject *tmp_iter_arg_10; PyObject *tmp_iter_arg_11; PyObject *tmp_iter_arg_12; PyObject *tmp_iter_arg_13; PyObject *tmp_iter_arg_14; PyObject *tmp_iter_arg_15; PyObject *tmp_iterator_attempt_1; PyObject *tmp_iterator_attempt_2; PyObject *tmp_iterator_attempt_3; PyObject *tmp_iterator_attempt_4; PyObject *tmp_iterator_name_1; PyObject *tmp_iterator_name_2; PyObject *tmp_iterator_name_3; PyObject *tmp_iterator_name_4; PyObject *tmp_len_arg_1; PyObject *tmp_len_arg_2; PyObject *tmp_len_arg_3; PyObject *tmp_list_element_1; PyObject *tmp_next_source_1; PyObject *tmp_next_source_2; PyObject *tmp_next_source_3; PyObject *tmp_next_source_4; PyObject *tmp_next_source_5; PyObject *tmp_next_source_6; PyObject *tmp_next_source_7; PyObject *tmp_next_source_8; PyObject *tmp_next_source_9; PyObject *tmp_next_source_10; PyObject *tmp_next_source_11; PyObject *tmp_open_filename_1; PyObject *tmp_open_filename_2; PyObject *tmp_open_filename_3; PyObject *tmp_open_filename_4; PyObject *tmp_open_filename_5; PyObject *tmp_open_mode_1; PyObject *tmp_open_mode_2; PyObject *tmp_open_mode_3; PyObject *tmp_open_mode_4; PyObject *tmp_open_mode_5; bool tmp_result; PyObject *tmp_return_value; Py_ssize_t tmp_slice_index_upper_1; Py_ssize_t tmp_slice_index_upper_2; Py_ssize_t tmp_slice_index_upper_3; Py_ssize_t tmp_slice_index_upper_4; Py_ssize_t tmp_slice_index_upper_5; Py_ssize_t tmp_slice_index_upper_6; Py_ssize_t tmp_slice_index_upper_7; PyObject *tmp_slice_source_1; PyObject *tmp_slice_source_2; PyObject *tmp_slice_source_3; PyObject *tmp_slice_source_4; PyObject *tmp_slice_source_5; PyObject *tmp_slice_source_6; PyObject *tmp_slice_source_7; Py_ssize_t tmp_sliceslicedel_index_lower_1; Py_ssize_t tmp_sliceslicedel_index_lower_2; Py_ssize_t tmp_sliceslicedel_index_lower_3; Py_ssize_t tmp_sliceslicedel_index_lower_4; Py_ssize_t tmp_sliceslicedel_index_lower_5; Py_ssize_t tmp_sliceslicedel_index_lower_6; Py_ssize_t tmp_sliceslicedel_index_lower_7; PyObject *tmp_source_name_1; PyObject *tmp_source_name_2; PyObject *tmp_source_name_3; PyObject *tmp_source_name_4; PyObject *tmp_source_name_5; PyObject *tmp_source_name_6; PyObject *tmp_source_name_7; PyObject *tmp_source_name_8; PyObject *tmp_source_name_9; PyObject *tmp_source_name_10; PyObject *tmp_source_name_11; PyObject *tmp_source_name_12; PyObject *tmp_source_name_13; PyObject *tmp_source_name_14; PyObject *tmp_source_name_15; PyObject *tmp_source_name_16; PyObject *tmp_source_name_17; PyObject *tmp_source_name_18; PyObject *tmp_source_name_19; PyObject *tmp_source_name_20; PyObject *tmp_source_name_21; PyObject *tmp_source_name_22; PyObject *tmp_source_name_23; PyObject *tmp_source_name_24; PyObject *tmp_source_name_25; PyObject *tmp_source_name_26; PyObject *tmp_source_name_27; PyObject *tmp_source_name_28; PyObject *tmp_source_name_29; PyObject *tmp_source_name_30; PyObject *tmp_source_name_31; PyObject *tmp_source_name_32; PyObject *tmp_source_name_33; PyObject *tmp_source_name_34; PyObject *tmp_source_name_35; PyObject *tmp_source_name_36; PyObject *tmp_source_name_37; PyObject *tmp_source_name_38; PyObject *tmp_source_name_39; PyObject *tmp_source_name_40; PyObject *tmp_source_name_41; PyObject *tmp_source_name_42; PyObject *tmp_source_name_43; PyObject *tmp_source_name_44; PyObject *tmp_source_name_45; PyObject *tmp_source_name_46; PyObject *tmp_source_name_47; PyObject *tmp_source_name_48; PyObject *tmp_source_name_49; PyObject *tmp_source_name_50; PyObject *tmp_source_name_51; PyObject *tmp_source_name_52; PyObject *tmp_source_name_53; PyObject *tmp_source_name_54; PyObject *tmp_source_name_55; PyObject *tmp_source_name_56; PyObject *tmp_source_name_57; PyObject *tmp_source_name_58; PyObject *tmp_source_name_59; PyObject *tmp_source_name_60; PyObject *tmp_source_name_61; PyObject *tmp_source_name_62; PyObject *tmp_source_name_63; PyObject *tmp_source_name_64; PyObject *tmp_source_name_65; PyObject *tmp_source_name_66; PyObject *tmp_source_name_67; PyObject *tmp_source_name_68; PyObject *tmp_source_name_69; PyObject *tmp_source_name_70; PyObject *tmp_source_name_71; PyObject *tmp_source_name_72; PyObject *tmp_source_name_73; PyObject *tmp_source_name_74; PyObject *tmp_source_name_75; PyObject *tmp_source_name_76; PyObject *tmp_source_name_77; PyObject *tmp_source_name_78; PyObject *tmp_source_name_79; PyObject *tmp_source_name_80; PyObject *tmp_source_name_81; PyObject *tmp_source_name_82; PyObject *tmp_subscr_subscript_1; PyObject *tmp_subscr_subscript_2; PyObject *tmp_subscr_subscript_3; PyObject *tmp_subscr_subscript_4; PyObject *tmp_subscr_subscript_5; PyObject *tmp_subscr_subscript_6; PyObject *tmp_subscr_subscript_7; PyObject *tmp_subscr_subscript_8; PyObject *tmp_subscr_subscript_9; PyObject *tmp_subscr_subscript_10; PyObject *tmp_subscr_subscript_11; PyObject *tmp_subscr_subscript_12; PyObject *tmp_subscr_subscript_13; PyObject *tmp_subscr_subscript_14; PyObject *tmp_subscr_subscript_15; PyObject *tmp_subscr_subscript_16; PyObject *tmp_subscr_subscript_17; PyObject *tmp_subscr_subscript_18; PyObject *tmp_subscr_subscript_19; PyObject *tmp_subscr_subscript_20; PyObject *tmp_subscr_subscript_21; PyObject *tmp_subscr_subscript_22; PyObject *tmp_subscr_subscript_23; PyObject *tmp_subscr_subscript_24; PyObject *tmp_subscr_subscript_25; PyObject *tmp_subscr_subscript_26; PyObject *tmp_subscr_subscript_27; PyObject *tmp_subscr_subscript_28; PyObject *tmp_subscr_subscript_29; PyObject *tmp_subscr_subscript_30; PyObject *tmp_subscr_subscript_31; PyObject *tmp_subscr_subscript_32; PyObject *tmp_subscr_subscript_33; PyObject *tmp_subscr_subscript_34; PyObject *tmp_subscr_subscript_35; PyObject *tmp_subscr_subscript_36; PyObject *tmp_subscr_subscript_37; PyObject *tmp_subscr_subscript_38; PyObject *tmp_subscr_subscript_39; PyObject *tmp_subscr_subscript_40; PyObject *tmp_subscr_subscript_41; PyObject *tmp_subscr_subscript_42; PyObject *tmp_subscr_subscript_43; PyObject *tmp_subscr_subscript_44; PyObject *tmp_subscr_subscript_45; PyObject *tmp_subscr_target_1; PyObject *tmp_subscr_target_2; PyObject *tmp_subscr_target_3; PyObject *tmp_subscr_target_4; PyObject *tmp_subscr_target_5; PyObject *tmp_subscr_target_6; PyObject *tmp_subscr_target_7; PyObject *tmp_subscr_target_8; PyObject *tmp_subscr_target_9; PyObject *tmp_subscr_target_10; PyObject *tmp_subscr_target_11; PyObject *tmp_subscr_target_12; PyObject *tmp_subscr_target_13; PyObject *tmp_subscr_target_14; PyObject *tmp_subscr_target_15; PyObject *tmp_subscr_target_16; PyObject *tmp_subscr_target_17; PyObject *tmp_subscr_target_18; PyObject *tmp_subscr_target_19; PyObject *tmp_subscr_target_20; PyObject *tmp_subscr_target_21; PyObject *tmp_subscr_target_22; PyObject *tmp_subscr_target_23; PyObject *tmp_subscr_target_24; PyObject *tmp_subscr_target_25; PyObject *tmp_subscr_target_26; PyObject *tmp_subscr_target_27; PyObject *tmp_subscr_target_28; PyObject *tmp_subscr_target_29; PyObject *tmp_subscr_target_30; PyObject *tmp_subscr_target_31; PyObject *tmp_subscr_target_32; PyObject *tmp_subscr_target_33; PyObject *tmp_subscr_target_34; PyObject *tmp_subscr_target_35; PyObject *tmp_subscr_target_36; PyObject *tmp_subscr_target_37; PyObject *tmp_subscr_target_38; PyObject *tmp_subscr_target_39; PyObject *tmp_subscr_target_40; PyObject *tmp_subscr_target_41; PyObject *tmp_subscr_target_42; PyObject *tmp_subscr_target_43; PyObject *tmp_subscr_target_44; PyObject *tmp_subscr_target_45; int tmp_tried_lineno_1; int tmp_tried_lineno_2; int tmp_tried_lineno_3; int tmp_tried_lineno_4; int tmp_tried_lineno_5; int tmp_tried_lineno_6; int tmp_tried_lineno_7; int tmp_tried_lineno_8; int tmp_tried_lineno_9; int tmp_tried_lineno_10; int tmp_tried_lineno_11; int tmp_tried_lineno_12; int tmp_tried_lineno_13; int tmp_tried_lineno_14; int tmp_tried_lineno_15; int tmp_tried_lineno_16; int tmp_tried_lineno_17; int tmp_tried_lineno_18; int tmp_tried_lineno_19; PyObject *tmp_tuple_element_1; PyObject *tmp_tuple_element_2; PyObject *tmp_tuple_element_3; PyObject *tmp_unary_arg_1; PyObject *tmp_unpack_1; PyObject *tmp_unpack_2; PyObject *tmp_unpack_3; PyObject *tmp_unpack_4; PyObject *tmp_unpack_5; PyObject *tmp_unpack_6; PyObject *tmp_unpack_7; PyObject *tmp_unpack_8; NUITKA_MAY_BE_UNUSED PyObject *tmp_unused; tmp_return_value = NULL; // Actual function code. static PyFrameObject *cache_frame_function = NULL; MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_ca6f250ecb31f7f4bfadde7ca62971d3, module_numpy$f2py$rules ); PyFrameObject *frame_function = cache_frame_function; // Push the new frame as the currently active one. pushFrameStack( frame_function ); // Mark the frame object as in use, ref count 1 will be up for reuse. Py_INCREF( frame_function ); assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack #if PYTHON_VERSION >= 340 frame_function->f_executing += 1; #endif // Framed code: tmp_called_1 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_outmess ); if (unlikely( tmp_called_1 == NULL )) { tmp_called_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_outmess ); } if ( tmp_called_1 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125154 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1164; goto frame_exception_exit_1; } tmp_binop_left_1 = const_str_digest_26c16d68737087d7dec283685f968bf7; tmp_subscr_target_1 = par_m.object; if ( tmp_subscr_target_1 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 13535 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1164; goto frame_exception_exit_1; } tmp_subscr_subscript_1 = const_str_plain_name; tmp_binop_right_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_1, tmp_subscr_subscript_1 ); if ( tmp_binop_right_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1164; goto frame_exception_exit_1; } tmp_call_arg_element_1 = BINARY_OPERATION_REMAINDER( tmp_binop_left_1, tmp_binop_right_1 ); Py_DECREF( tmp_binop_right_1 ); if ( tmp_call_arg_element_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1164; goto frame_exception_exit_1; } frame_function->f_lineno = 1164; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_1, tmp_call_arg_element_1 ); Py_DECREF( tmp_call_arg_element_1 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1164; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_assign_source_1 = PyDict_New(); assert( var_ret.object == NULL ); var_ret.object = tmp_assign_source_1; tmp_sliceslicedel_index_lower_1 = 0; tmp_slice_index_upper_1 = PY_SSIZE_T_MAX; tmp_slice_source_1 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_defmod_rules ); if (unlikely( tmp_slice_source_1 == NULL )) { tmp_slice_source_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_defmod_rules ); } if ( tmp_slice_source_1 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151523 ], 41, 0 ); exception_tb = NULL; frame_function->f_lineno = 1166; goto frame_exception_exit_1; } tmp_assign_source_2 = LOOKUP_INDEX_SLICE( tmp_slice_source_1, tmp_sliceslicedel_index_lower_1, tmp_slice_index_upper_1 ); if ( tmp_assign_source_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1166; goto frame_exception_exit_1; } assert( var_mod_rules.object == NULL ); var_mod_rules.object = tmp_assign_source_2; tmp_called_2 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_modsign2map ); if (unlikely( tmp_called_2 == NULL )) { tmp_called_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_modsign2map ); } if ( tmp_called_2 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151564 ], 40, 0 ); exception_tb = NULL; frame_function->f_lineno = 1167; goto frame_exception_exit_1; } tmp_call_arg_element_2 = par_m.object; if ( tmp_call_arg_element_2 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 13535 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1167; goto frame_exception_exit_1; } frame_function->f_lineno = 1167; tmp_assign_source_3 = CALL_FUNCTION_WITH_ARGS1( tmp_called_2, tmp_call_arg_element_2 ); if ( tmp_assign_source_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1167; goto frame_exception_exit_1; } assert( var_vrd.object == NULL ); var_vrd.object = tmp_assign_source_3; tmp_called_3 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_dictappend ); if (unlikely( tmp_called_3 == NULL )) { tmp_called_3 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dictappend ); } if ( tmp_called_3 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126933 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1168; goto frame_exception_exit_1; } tmp_call_arg_element_3 = _PyDict_NewPresized( 1 ); tmp_dict_value_1 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_f2py_version ); if (unlikely( tmp_dict_value_1 == NULL )) { tmp_dict_value_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_f2py_version ); } if ( tmp_dict_value_1 == NULL ) { Py_DECREF( tmp_call_arg_element_3 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 144933 ], 41, 0 ); exception_tb = NULL; frame_function->f_lineno = 1168; goto frame_exception_exit_1; } tmp_dict_key_1 = const_str_plain_f2py_version; PyDict_SetItem( tmp_call_arg_element_3, tmp_dict_key_1, tmp_dict_value_1 ); tmp_call_arg_element_4 = var_vrd.object; frame_function->f_lineno = 1168; tmp_assign_source_4 = CALL_FUNCTION_WITH_ARGS2( tmp_called_3, tmp_call_arg_element_3, tmp_call_arg_element_4 ); Py_DECREF( tmp_call_arg_element_3 ); if ( tmp_assign_source_4 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1168; goto frame_exception_exit_1; } assert( var_rd.object == NULL ); var_rd.object = tmp_assign_source_4; tmp_assign_source_5 = PyList_New( 0 ); assert( var_funcwrappers.object == NULL ); var_funcwrappers.object = tmp_assign_source_5; tmp_assign_source_6 = PyList_New( 0 ); assert( var_funcwrappers2.object == NULL ); var_funcwrappers2.object = tmp_assign_source_6; tmp_subscr_target_2 = par_m.object; if ( tmp_subscr_target_2 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 13535 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1171; goto frame_exception_exit_1; } tmp_subscr_subscript_2 = const_str_plain_interfaced; tmp_iter_arg_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_2, tmp_subscr_subscript_2 ); if ( tmp_iter_arg_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1171; goto frame_exception_exit_1; } tmp_assign_source_7 = MAKE_ITERATOR( tmp_iter_arg_1 ); Py_DECREF( tmp_iter_arg_1 ); if ( tmp_assign_source_7 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1171; goto frame_exception_exit_1; } assert( tmp_for_loop_1__for_iterator.object == NULL ); tmp_for_loop_1__for_iterator.object = tmp_assign_source_7; // Tried code loop_start_1:; tmp_next_source_1 = tmp_for_loop_1__for_iterator.object; tmp_assign_source_8 = ITERATOR_NEXT( tmp_next_source_1 ); if (tmp_assign_source_8 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_1; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1171; goto try_finally_handler_1; } } if (tmp_for_loop_1__iter_value.object == NULL) { tmp_for_loop_1__iter_value.object = tmp_assign_source_8; } else { PyObject *old = tmp_for_loop_1__iter_value.object; tmp_for_loop_1__iter_value.object = tmp_assign_source_8; Py_DECREF( old ); } tmp_assign_source_9 = tmp_for_loop_1__iter_value.object; if (var_n.object == NULL) { var_n.object = INCREASE_REFCOUNT( tmp_assign_source_9 ); } else { PyObject *old = var_n.object; var_n.object = INCREASE_REFCOUNT( tmp_assign_source_9 ); Py_DECREF( old ); } tmp_assign_source_10 = Py_None; if (var_nb.object == NULL) { var_nb.object = INCREASE_REFCOUNT( tmp_assign_source_10 ); } else { PyObject *old = var_nb.object; var_nb.object = INCREASE_REFCOUNT( tmp_assign_source_10 ); Py_DECREF( old ); } tmp_subscr_target_3 = par_m.object; if ( tmp_subscr_target_3 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 13535 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1173; goto try_finally_handler_1; } tmp_subscr_subscript_3 = const_str_plain_body; tmp_iter_arg_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_3, tmp_subscr_subscript_3 ); if ( tmp_iter_arg_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1173; goto try_finally_handler_1; } tmp_assign_source_11 = MAKE_ITERATOR( tmp_iter_arg_2 ); Py_DECREF( tmp_iter_arg_2 ); if ( tmp_assign_source_11 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1173; goto try_finally_handler_1; } if (tmp_for_loop_2__for_iterator.object == NULL) { tmp_for_loop_2__for_iterator.object = tmp_assign_source_11; } else { PyObject *old = tmp_for_loop_2__for_iterator.object; tmp_for_loop_2__for_iterator.object = tmp_assign_source_11; Py_DECREF( old ); } // Tried code loop_start_2:; tmp_next_source_2 = tmp_for_loop_2__for_iterator.object; tmp_assign_source_12 = ITERATOR_NEXT( tmp_next_source_2 ); if (tmp_assign_source_12 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_2; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1173; goto try_finally_handler_2; } } if (tmp_for_loop_2__iter_value.object == NULL) { tmp_for_loop_2__iter_value.object = tmp_assign_source_12; } else { PyObject *old = tmp_for_loop_2__iter_value.object; tmp_for_loop_2__iter_value.object = tmp_assign_source_12; Py_DECREF( old ); } tmp_assign_source_13 = tmp_for_loop_2__iter_value.object; if (var_bi.object == NULL) { var_bi.object = INCREASE_REFCOUNT( tmp_assign_source_13 ); } else { PyObject *old = var_bi.object; var_bi.object = INCREASE_REFCOUNT( tmp_assign_source_13 ); Py_DECREF( old ); } tmp_subscr_target_4 = var_bi.object; tmp_subscr_subscript_4 = const_str_plain_block; tmp_compare_left_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_4, tmp_subscr_subscript_4 ); if ( tmp_compare_left_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1174; goto try_finally_handler_2; } tmp_compare_right_1 = const_str_plain_interface; tmp_cmp_Eq_1 = RICH_COMPARE_BOOL_EQ( tmp_compare_left_1, tmp_compare_right_1 ); if ( tmp_cmp_Eq_1 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_compare_left_1 ); frame_function->f_lineno = 1174; goto try_finally_handler_2; } Py_DECREF( tmp_compare_left_1 ); if (tmp_cmp_Eq_1 == 1) { goto branch_no_1; } else { goto branch_yes_1; } branch_yes_1:; tmp_called_4 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_errmess ); if (unlikely( tmp_called_4 == NULL )) { tmp_called_4 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_errmess ); } if ( tmp_called_4 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125842 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1175; goto try_finally_handler_2; } tmp_call_arg_element_5 = const_str_digest_d5f9d85e79c2d11eb4912782ada389d9; frame_function->f_lineno = 1175; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_4, tmp_call_arg_element_5 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1175; goto try_finally_handler_2; } Py_DECREF( tmp_unused ); goto loop_start_2; branch_no_1:; tmp_subscr_target_5 = var_bi.object; tmp_subscr_subscript_5 = const_str_plain_body; tmp_iter_arg_3 = LOOKUP_SUBSCRIPT( tmp_subscr_target_5, tmp_subscr_subscript_5 ); if ( tmp_iter_arg_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1177; goto try_finally_handler_2; } tmp_assign_source_14 = MAKE_ITERATOR( tmp_iter_arg_3 ); Py_DECREF( tmp_iter_arg_3 ); if ( tmp_assign_source_14 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1177; goto try_finally_handler_2; } if (tmp_for_loop_3__for_iterator.object == NULL) { tmp_for_loop_3__for_iterator.object = tmp_assign_source_14; } else { PyObject *old = tmp_for_loop_3__for_iterator.object; tmp_for_loop_3__for_iterator.object = tmp_assign_source_14; Py_DECREF( old ); } // Tried code loop_start_3:; tmp_next_source_3 = tmp_for_loop_3__for_iterator.object; tmp_assign_source_15 = ITERATOR_NEXT( tmp_next_source_3 ); if (tmp_assign_source_15 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_3; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1177; goto try_finally_handler_3; } } if (tmp_for_loop_3__iter_value.object == NULL) { tmp_for_loop_3__iter_value.object = tmp_assign_source_15; } else { PyObject *old = tmp_for_loop_3__iter_value.object; tmp_for_loop_3__iter_value.object = tmp_assign_source_15; Py_DECREF( old ); } tmp_assign_source_16 = tmp_for_loop_3__iter_value.object; if (var_b.object == NULL) { var_b.object = INCREASE_REFCOUNT( tmp_assign_source_16 ); } else { PyObject *old = var_b.object; var_b.object = INCREASE_REFCOUNT( tmp_assign_source_16 ); Py_DECREF( old ); } tmp_subscr_target_6 = var_b.object; tmp_subscr_subscript_6 = const_str_plain_name; tmp_compare_left_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_6, tmp_subscr_subscript_6 ); if ( tmp_compare_left_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1178; goto try_finally_handler_3; } tmp_compare_right_2 = var_n.object; if ( tmp_compare_right_2 == NULL ) { Py_DECREF( tmp_compare_left_2 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 12516 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1178; goto try_finally_handler_3; } tmp_cmp_Eq_2 = RICH_COMPARE_BOOL_EQ( tmp_compare_left_2, tmp_compare_right_2 ); if ( tmp_cmp_Eq_2 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_compare_left_2 ); frame_function->f_lineno = 1178; goto try_finally_handler_3; } Py_DECREF( tmp_compare_left_2 ); if (tmp_cmp_Eq_2 == 1) { goto branch_yes_2; } else { goto branch_no_2; } branch_yes_2:; tmp_assign_source_17 = var_b.object; if (var_nb.object == NULL) { var_nb.object = INCREASE_REFCOUNT( tmp_assign_source_17 ); } else { PyObject *old = var_nb.object; var_nb.object = INCREASE_REFCOUNT( tmp_assign_source_17 ); Py_DECREF( old ); } goto loop_end_3; branch_no_2:; if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1177; goto try_finally_handler_3; } goto loop_start_3; loop_end_3:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_3:; exception_keeper_type_1 = exception_type; exception_keeper_value_1 = exception_value; exception_keeper_tb_1 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_1 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_3__iter_value.object ); tmp_for_loop_3__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_3__for_iterator.object ); tmp_for_loop_3__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_1; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_1 != NULL ) { exception_type = exception_keeper_type_1; exception_value = exception_keeper_value_1; exception_tb = exception_keeper_tb_1; goto try_finally_handler_2; } goto finally_end_1; finally_end_1:; if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1173; goto try_finally_handler_2; } goto loop_start_2; loop_end_2:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_2:; exception_keeper_type_2 = exception_type; exception_keeper_value_2 = exception_value; exception_keeper_tb_2 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_2 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_2__iter_value.object ); tmp_for_loop_2__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_2__for_iterator.object ); tmp_for_loop_2__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_2; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_2 != NULL ) { exception_type = exception_keeper_type_2; exception_value = exception_keeper_value_2; exception_tb = exception_keeper_tb_2; goto try_finally_handler_1; } goto finally_end_2; finally_end_2:; tmp_cond_value_1 = var_nb.object; if ( tmp_cond_value_1 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 69874 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1180; goto try_finally_handler_1; } tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 ); if ( tmp_cond_truth_1 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1180; goto try_finally_handler_1; } if (tmp_cond_truth_1 == 1) { goto branch_no_3; } else { goto branch_yes_3; } branch_yes_3:; tmp_called_5 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_errmess ); if (unlikely( tmp_called_5 == NULL )) { tmp_called_5 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_errmess ); } if ( tmp_called_5 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125842 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1181; goto try_finally_handler_1; } tmp_binop_left_2 = const_str_digest_95da66999f18725ac82e21e4162054dd; tmp_binop_right_2 = var_n.object; if ( tmp_binop_right_2 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 12516 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1181; goto try_finally_handler_1; } tmp_call_arg_element_6 = BINARY_OPERATION_REMAINDER( tmp_binop_left_2, tmp_binop_right_2 ); if ( tmp_call_arg_element_6 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1181; goto try_finally_handler_1; } frame_function->f_lineno = 1181; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_5, tmp_call_arg_element_6 ); Py_DECREF( tmp_call_arg_element_6 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1181; goto try_finally_handler_1; } Py_DECREF( tmp_unused ); goto loop_start_1; branch_no_3:; tmp_assign_source_18 = PyList_New( 1 ); tmp_list_element_1 = var_nb.object; if ( tmp_list_element_1 == NULL ) { Py_DECREF( tmp_assign_source_18 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 69874 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1183; goto try_finally_handler_1; } Py_INCREF( tmp_list_element_1 ); PyList_SET_ITEM( tmp_assign_source_18, 0, tmp_list_element_1 ); if (var_nb_list.object == NULL) { var_nb_list.object = tmp_assign_source_18; } else { PyObject *old = var_nb_list.object; var_nb_list.object = tmp_assign_source_18; Py_DECREF( old ); } tmp_compare_left_3 = const_str_plain_entry; tmp_compare_right_3 = var_nb.object; if ( tmp_compare_right_3 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 69874 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1184; goto try_finally_handler_1; } tmp_cmp_In_1 = PySequence_Contains( tmp_compare_right_3, tmp_compare_left_3 ); if ( tmp_cmp_In_1 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1184; goto try_finally_handler_1; } if (tmp_cmp_In_1 == 1) { goto branch_yes_4; } else { goto branch_no_4; } branch_yes_4:; tmp_subscr_target_7 = var_nb.object; if ( tmp_subscr_target_7 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 69874 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1185; goto try_finally_handler_1; } tmp_subscr_subscript_7 = const_str_plain_entry; tmp_source_name_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_7, tmp_subscr_subscript_7 ); if ( tmp_source_name_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1185; goto try_finally_handler_1; } tmp_called_6 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_items ); Py_DECREF( tmp_source_name_1 ); if ( tmp_called_6 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1185; goto try_finally_handler_1; } frame_function->f_lineno = 1185; tmp_iter_arg_4 = CALL_FUNCTION_NO_ARGS( tmp_called_6 ); Py_DECREF( tmp_called_6 ); if ( tmp_iter_arg_4 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1185; goto try_finally_handler_1; } tmp_assign_source_19 = MAKE_ITERATOR( tmp_iter_arg_4 ); Py_DECREF( tmp_iter_arg_4 ); if ( tmp_assign_source_19 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1185; goto try_finally_handler_1; } if (tmp_for_loop_4__for_iterator.object == NULL) { tmp_for_loop_4__for_iterator.object = tmp_assign_source_19; } else { PyObject *old = tmp_for_loop_4__for_iterator.object; tmp_for_loop_4__for_iterator.object = tmp_assign_source_19; Py_DECREF( old ); } // Tried code loop_start_4:; tmp_next_source_4 = tmp_for_loop_4__for_iterator.object; tmp_assign_source_20 = ITERATOR_NEXT( tmp_next_source_4 ); if (tmp_assign_source_20 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_4; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1185; goto try_finally_handler_4; } } if (tmp_for_loop_4__iter_value.object == NULL) { tmp_for_loop_4__iter_value.object = tmp_assign_source_20; } else { PyObject *old = tmp_for_loop_4__iter_value.object; tmp_for_loop_4__iter_value.object = tmp_assign_source_20; Py_DECREF( old ); } // Tried code tmp_iter_arg_5 = tmp_for_loop_4__iter_value.object; tmp_assign_source_21 = MAKE_ITERATOR( tmp_iter_arg_5 ); if ( tmp_assign_source_21 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1185; goto try_finally_handler_5; } if (tmp_tuple_unpack_1__source_iter.object == NULL) { tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_21; } else { PyObject *old = tmp_tuple_unpack_1__source_iter.object; tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_21; Py_DECREF( old ); } tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object; tmp_assign_source_22 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 ); if ( tmp_assign_source_22 == NULL ) { if ( !ERROR_OCCURED() ) { exception_type = INCREASE_REFCOUNT( PyExc_StopIteration ); exception_value = NULL; exception_tb = NULL; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); } frame_function->f_lineno = 1185; goto try_finally_handler_5; } if (tmp_tuple_unpack_1__element_1.object == NULL) { tmp_tuple_unpack_1__element_1.object = tmp_assign_source_22; } else { PyObject *old = tmp_tuple_unpack_1__element_1.object; tmp_tuple_unpack_1__element_1.object = tmp_assign_source_22; Py_DECREF( old ); } tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object; tmp_assign_source_23 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 ); if ( tmp_assign_source_23 == NULL ) { if ( !ERROR_OCCURED() ) { exception_type = INCREASE_REFCOUNT( PyExc_StopIteration ); exception_value = NULL; exception_tb = NULL; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); } frame_function->f_lineno = 1185; goto try_finally_handler_5; } if (tmp_tuple_unpack_1__element_2.object == NULL) { tmp_tuple_unpack_1__element_2.object = tmp_assign_source_23; } else { PyObject *old = tmp_tuple_unpack_1__element_2.object; tmp_tuple_unpack_1__element_2.object = tmp_assign_source_23; Py_DECREF( old ); } tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object; // Check if iterator has left-over elements. assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) ); tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 ); if (likely( tmp_iterator_attempt_1 == NULL )) { // TODO: Could first fetch, then check, should be faster. if ( !ERROR_OCCURED() ) { } else if ( PyErr_ExceptionMatches( PyExc_StopIteration )) { PyErr_Clear(); } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); goto try_finally_handler_5; } } else { Py_DECREF( tmp_iterator_attempt_1 ); // TODO: Could avoid PyErr_Format. #if PYTHON_VERSION < 300 PyErr_Format( PyExc_ValueError, "too many values to unpack" ); #else PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" ); #endif PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); goto try_finally_handler_5; } tmp_assign_source_24 = tmp_tuple_unpack_1__element_1.object; if (var_k.object == NULL) { var_k.object = INCREASE_REFCOUNT( tmp_assign_source_24 ); } else { PyObject *old = var_k.object; var_k.object = INCREASE_REFCOUNT( tmp_assign_source_24 ); Py_DECREF( old ); } tmp_assign_source_25 = tmp_tuple_unpack_1__element_2.object; if (var_a.object == NULL) { var_a.object = INCREASE_REFCOUNT( tmp_assign_source_25 ); } else { PyObject *old = var_a.object; var_a.object = INCREASE_REFCOUNT( tmp_assign_source_25 ); Py_DECREF( old ); } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_5:; exception_keeper_type_3 = exception_type; exception_keeper_value_3 = exception_value; exception_keeper_tb_3 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_3 = frame_function->f_lineno; Py_XDECREF( tmp_tuple_unpack_1__source_iter.object ); tmp_tuple_unpack_1__source_iter.object = NULL; Py_XDECREF( tmp_tuple_unpack_1__element_1.object ); tmp_tuple_unpack_1__element_1.object = NULL; Py_XDECREF( tmp_tuple_unpack_1__element_2.object ); tmp_tuple_unpack_1__element_2.object = NULL; frame_function->f_lineno = tmp_tried_lineno_3; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_3 != NULL ) { exception_type = exception_keeper_type_3; exception_value = exception_keeper_value_3; exception_tb = exception_keeper_tb_3; goto try_finally_handler_4; } goto finally_end_3; finally_end_3:; tmp_source_name_2 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_copy ); if (unlikely( tmp_source_name_2 == NULL )) { tmp_source_name_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_copy ); } if ( tmp_source_name_2 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 82769 ], 33, 0 ); exception_tb = NULL; frame_function->f_lineno = 1186; goto try_finally_handler_4; } tmp_called_7 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_deepcopy ); if ( tmp_called_7 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1186; goto try_finally_handler_4; } tmp_call_arg_element_7 = var_nb.object; if ( tmp_call_arg_element_7 == NULL ) { Py_DECREF( tmp_called_7 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 69874 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1186; goto try_finally_handler_4; } frame_function->f_lineno = 1186; tmp_assign_source_26 = CALL_FUNCTION_WITH_ARGS1( tmp_called_7, tmp_call_arg_element_7 ); Py_DECREF( tmp_called_7 ); if ( tmp_assign_source_26 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1186; goto try_finally_handler_4; } if (var_nb1.object == NULL) { var_nb1.object = tmp_assign_source_26; } else { PyObject *old = var_nb1.object; var_nb1.object = tmp_assign_source_26; Py_DECREF( old ); } tmp_delsubscr_target_1 = var_nb1.object; tmp_delsubscr_subscript_1 = const_str_plain_entry; tmp_result = DEL_SUBSCRIPT( tmp_delsubscr_target_1, tmp_delsubscr_subscript_1 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1187; goto try_finally_handler_4; } tmp_ass_subvalue_1 = var_k.object; if ( tmp_ass_subvalue_1 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 6318 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1188; goto try_finally_handler_4; } tmp_ass_subscribed_1 = var_nb1.object; tmp_ass_subscript_1 = const_str_plain_name; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1188; goto try_finally_handler_4; } tmp_ass_subvalue_2 = var_a.object; if ( tmp_ass_subvalue_2 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 5854 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1189; goto try_finally_handler_4; } tmp_ass_subscribed_2 = var_nb1.object; tmp_ass_subscript_2 = const_str_plain_args; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_2, tmp_ass_subscript_2, tmp_ass_subvalue_2 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1189; goto try_finally_handler_4; } tmp_source_name_3 = var_nb_list.object; if ( tmp_source_name_3 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151604 ], 53, 0 ); exception_tb = NULL; frame_function->f_lineno = 1190; goto try_finally_handler_4; } tmp_called_8 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_append ); if ( tmp_called_8 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1190; goto try_finally_handler_4; } tmp_call_arg_element_8 = var_nb1.object; frame_function->f_lineno = 1190; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_8, tmp_call_arg_element_8 ); Py_DECREF( tmp_called_8 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1190; goto try_finally_handler_4; } Py_DECREF( tmp_unused ); if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1185; goto try_finally_handler_4; } goto loop_start_4; loop_end_4:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_4:; exception_keeper_type_4 = exception_type; exception_keeper_value_4 = exception_value; exception_keeper_tb_4 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_4 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_4__iter_value.object ); tmp_for_loop_4__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_4__for_iterator.object ); tmp_for_loop_4__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_4; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_4 != NULL ) { exception_type = exception_keeper_type_4; exception_value = exception_keeper_value_4; exception_tb = exception_keeper_tb_4; goto try_finally_handler_1; } goto finally_end_4; finally_end_4:; branch_no_4:; tmp_iter_arg_6 = var_nb_list.object; if ( tmp_iter_arg_6 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151604 ], 53, 0 ); exception_tb = NULL; frame_function->f_lineno = 1191; goto try_finally_handler_1; } tmp_assign_source_27 = MAKE_ITERATOR( tmp_iter_arg_6 ); if ( tmp_assign_source_27 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1191; goto try_finally_handler_1; } if (tmp_for_loop_5__for_iterator.object == NULL) { tmp_for_loop_5__for_iterator.object = tmp_assign_source_27; } else { PyObject *old = tmp_for_loop_5__for_iterator.object; tmp_for_loop_5__for_iterator.object = tmp_assign_source_27; Py_DECREF( old ); } // Tried code loop_start_5:; tmp_next_source_5 = tmp_for_loop_5__for_iterator.object; tmp_assign_source_28 = ITERATOR_NEXT( tmp_next_source_5 ); if (tmp_assign_source_28 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_5; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1191; goto try_finally_handler_6; } } if (tmp_for_loop_5__iter_value.object == NULL) { tmp_for_loop_5__iter_value.object = tmp_assign_source_28; } else { PyObject *old = tmp_for_loop_5__iter_value.object; tmp_for_loop_5__iter_value.object = tmp_assign_source_28; Py_DECREF( old ); } tmp_assign_source_29 = tmp_for_loop_5__iter_value.object; if (var_nb.object == NULL) { var_nb.object = INCREASE_REFCOUNT( tmp_assign_source_29 ); } else { PyObject *old = var_nb.object; var_nb.object = INCREASE_REFCOUNT( tmp_assign_source_29 ); Py_DECREF( old ); } // Tried code tmp_called_9 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_buildapi ); if (unlikely( tmp_called_9 == NULL )) { tmp_called_9 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_buildapi ); } if ( tmp_called_9 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151657 ], 37, 0 ); exception_tb = NULL; frame_function->f_lineno = 1192; goto try_finally_handler_7; } tmp_call_arg_element_9 = var_nb.object; frame_function->f_lineno = 1192; tmp_iter_arg_7 = CALL_FUNCTION_WITH_ARGS1( tmp_called_9, tmp_call_arg_element_9 ); if ( tmp_iter_arg_7 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1192; goto try_finally_handler_7; } tmp_assign_source_30 = MAKE_ITERATOR( tmp_iter_arg_7 ); Py_DECREF( tmp_iter_arg_7 ); if ( tmp_assign_source_30 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1192; goto try_finally_handler_7; } if (tmp_tuple_unpack_2__source_iter.object == NULL) { tmp_tuple_unpack_2__source_iter.object = tmp_assign_source_30; } else { PyObject *old = tmp_tuple_unpack_2__source_iter.object; tmp_tuple_unpack_2__source_iter.object = tmp_assign_source_30; Py_DECREF( old ); } tmp_unpack_3 = tmp_tuple_unpack_2__source_iter.object; tmp_assign_source_31 = UNPACK_PARAMETER_NEXT( tmp_unpack_3, 0 ); if ( tmp_assign_source_31 == NULL ) { if ( !ERROR_OCCURED() ) { exception_type = INCREASE_REFCOUNT( PyExc_StopIteration ); exception_value = NULL; exception_tb = NULL; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); } frame_function->f_lineno = 1192; goto try_finally_handler_7; } if (tmp_tuple_unpack_2__element_1.object == NULL) { tmp_tuple_unpack_2__element_1.object = tmp_assign_source_31; } else { PyObject *old = tmp_tuple_unpack_2__element_1.object; tmp_tuple_unpack_2__element_1.object = tmp_assign_source_31; Py_DECREF( old ); } tmp_unpack_4 = tmp_tuple_unpack_2__source_iter.object; tmp_assign_source_32 = UNPACK_PARAMETER_NEXT( tmp_unpack_4, 1 ); if ( tmp_assign_source_32 == NULL ) { if ( !ERROR_OCCURED() ) { exception_type = INCREASE_REFCOUNT( PyExc_StopIteration ); exception_value = NULL; exception_tb = NULL; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); } frame_function->f_lineno = 1192; goto try_finally_handler_7; } if (tmp_tuple_unpack_2__element_2.object == NULL) { tmp_tuple_unpack_2__element_2.object = tmp_assign_source_32; } else { PyObject *old = tmp_tuple_unpack_2__element_2.object; tmp_tuple_unpack_2__element_2.object = tmp_assign_source_32; Py_DECREF( old ); } tmp_iterator_name_2 = tmp_tuple_unpack_2__source_iter.object; // Check if iterator has left-over elements. assertObject( tmp_iterator_name_2 ); assert( PyIter_Check( tmp_iterator_name_2 ) ); tmp_iterator_attempt_2 = (*Py_TYPE( tmp_iterator_name_2 )->tp_iternext)( tmp_iterator_name_2 ); if (likely( tmp_iterator_attempt_2 == NULL )) { // TODO: Could first fetch, then check, should be faster. if ( !ERROR_OCCURED() ) { } else if ( PyErr_ExceptionMatches( PyExc_StopIteration )) { PyErr_Clear(); } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); goto try_finally_handler_7; } } else { Py_DECREF( tmp_iterator_attempt_2 ); // TODO: Could avoid PyErr_Format. #if PYTHON_VERSION < 300 PyErr_Format( PyExc_ValueError, "too many values to unpack" ); #else PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" ); #endif PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); goto try_finally_handler_7; } tmp_assign_source_33 = tmp_tuple_unpack_2__element_1.object; if (var_api.object == NULL) { var_api.object = INCREASE_REFCOUNT( tmp_assign_source_33 ); } else { PyObject *old = var_api.object; var_api.object = INCREASE_REFCOUNT( tmp_assign_source_33 ); Py_DECREF( old ); } tmp_assign_source_34 = tmp_tuple_unpack_2__element_2.object; if (var_wrap.object == NULL) { var_wrap.object = INCREASE_REFCOUNT( tmp_assign_source_34 ); } else { PyObject *old = var_wrap.object; var_wrap.object = INCREASE_REFCOUNT( tmp_assign_source_34 ); Py_DECREF( old ); } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_7:; exception_keeper_type_5 = exception_type; exception_keeper_value_5 = exception_value; exception_keeper_tb_5 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_5 = frame_function->f_lineno; Py_XDECREF( tmp_tuple_unpack_2__source_iter.object ); tmp_tuple_unpack_2__source_iter.object = NULL; Py_XDECREF( tmp_tuple_unpack_2__element_1.object ); tmp_tuple_unpack_2__element_1.object = NULL; Py_XDECREF( tmp_tuple_unpack_2__element_2.object ); tmp_tuple_unpack_2__element_2.object = NULL; frame_function->f_lineno = tmp_tried_lineno_5; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_5 != NULL ) { exception_type = exception_keeper_type_5; exception_value = exception_keeper_value_5; exception_tb = exception_keeper_tb_5; goto try_finally_handler_6; } goto finally_end_5; finally_end_5:; tmp_cond_value_2 = var_wrap.object; if ( tmp_cond_value_2 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 63093 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1193; goto try_finally_handler_6; } tmp_cond_truth_2 = CHECK_IF_TRUE( tmp_cond_value_2 ); if ( tmp_cond_truth_2 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1193; goto try_finally_handler_6; } if (tmp_cond_truth_2 == 1) { goto branch_yes_5; } else { goto branch_no_5; } branch_yes_5:; tmp_called_10 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_called_10 == NULL )) { tmp_called_10 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_called_10 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150156 ], 44, 0 ); exception_tb = NULL; frame_function->f_lineno = 1194; goto try_finally_handler_6; } tmp_call_arg_element_10 = var_nb.object; if ( tmp_call_arg_element_10 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 69874 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1194; goto try_finally_handler_6; } frame_function->f_lineno = 1194; tmp_cond_value_3 = CALL_FUNCTION_WITH_ARGS1( tmp_called_10, tmp_call_arg_element_10 ); if ( tmp_cond_value_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1194; goto try_finally_handler_6; } tmp_cond_truth_3 = CHECK_IF_TRUE( tmp_cond_value_3 ); if ( tmp_cond_truth_3 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_cond_value_3 ); frame_function->f_lineno = 1194; goto try_finally_handler_6; } Py_DECREF( tmp_cond_value_3 ); if (tmp_cond_truth_3 == 1) { goto branch_yes_6; } else { goto branch_no_6; } branch_yes_6:; tmp_source_name_4 = var_funcwrappers2.object; if ( tmp_source_name_4 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151694 ], 59, 0 ); exception_tb = NULL; frame_function->f_lineno = 1195; goto try_finally_handler_6; } tmp_called_11 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain_append ); if ( tmp_called_11 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1195; goto try_finally_handler_6; } tmp_call_arg_element_11 = var_wrap.object; if ( tmp_call_arg_element_11 == NULL ) { Py_DECREF( tmp_called_11 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 63093 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1195; goto try_finally_handler_6; } frame_function->f_lineno = 1195; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_11, tmp_call_arg_element_11 ); Py_DECREF( tmp_called_11 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1195; goto try_finally_handler_6; } Py_DECREF( tmp_unused ); goto branch_end_6; branch_no_6:; tmp_source_name_5 = var_funcwrappers.object; if ( tmp_source_name_5 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151753 ], 58, 0 ); exception_tb = NULL; frame_function->f_lineno = 1197; goto try_finally_handler_6; } tmp_called_12 = LOOKUP_ATTRIBUTE( tmp_source_name_5, const_str_plain_append ); if ( tmp_called_12 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1197; goto try_finally_handler_6; } tmp_call_arg_element_12 = var_wrap.object; if ( tmp_call_arg_element_12 == NULL ) { Py_DECREF( tmp_called_12 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 63093 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1197; goto try_finally_handler_6; } frame_function->f_lineno = 1197; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_12, tmp_call_arg_element_12 ); Py_DECREF( tmp_called_12 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1197; goto try_finally_handler_6; } Py_DECREF( tmp_unused ); branch_end_6:; branch_no_5:; tmp_called_13 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_applyrules ); if (unlikely( tmp_called_13 == NULL )) { tmp_called_13 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_applyrules ); } if ( tmp_called_13 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127020 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1198; goto try_finally_handler_6; } tmp_call_arg_element_13 = var_api.object; if ( tmp_call_arg_element_13 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 149915 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1198; goto try_finally_handler_6; } tmp_call_arg_element_14 = var_vrd.object; if ( tmp_call_arg_element_14 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129813 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1198; goto try_finally_handler_6; } frame_function->f_lineno = 1198; tmp_assign_source_35 = CALL_FUNCTION_WITH_ARGS2( tmp_called_13, tmp_call_arg_element_13, tmp_call_arg_element_14 ); if ( tmp_assign_source_35 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1198; goto try_finally_handler_6; } if (var_ar.object == NULL) { var_ar.object = tmp_assign_source_35; } else { PyObject *old = var_ar.object; var_ar.object = tmp_assign_source_35; Py_DECREF( old ); } tmp_called_14 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_dictappend ); if (unlikely( tmp_called_14 == NULL )) { tmp_called_14 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dictappend ); } if ( tmp_called_14 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126933 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1199; goto try_finally_handler_6; } tmp_call_arg_element_15 = var_rd.object; if ( tmp_call_arg_element_15 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1199; goto try_finally_handler_6; } tmp_call_arg_element_16 = var_ar.object; frame_function->f_lineno = 1199; tmp_assign_source_36 = CALL_FUNCTION_WITH_ARGS2( tmp_called_14, tmp_call_arg_element_15, tmp_call_arg_element_16 ); if ( tmp_assign_source_36 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1199; goto try_finally_handler_6; } if (var_rd.object == NULL) { var_rd.object = tmp_assign_source_36; } else { PyObject *old = var_rd.object; var_rd.object = tmp_assign_source_36; Py_DECREF( old ); } if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1191; goto try_finally_handler_6; } goto loop_start_5; loop_end_5:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_6:; exception_keeper_type_6 = exception_type; exception_keeper_value_6 = exception_value; exception_keeper_tb_6 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_6 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_5__iter_value.object ); tmp_for_loop_5__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_5__for_iterator.object ); tmp_for_loop_5__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_6; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_6 != NULL ) { exception_type = exception_keeper_type_6; exception_value = exception_keeper_value_6; exception_tb = exception_keeper_tb_6; goto try_finally_handler_1; } goto finally_end_6; finally_end_6:; if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1171; goto try_finally_handler_1; } goto loop_start_1; loop_end_1:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_1:; exception_keeper_type_7 = exception_type; exception_keeper_value_7 = exception_value; exception_keeper_tb_7 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_7 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_1__iter_value.object ); tmp_for_loop_1__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_1__for_iterator.object ); tmp_for_loop_1__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_7; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_7 != NULL ) { exception_type = exception_keeper_type_7; exception_value = exception_keeper_value_7; exception_tb = exception_keeper_tb_7; goto frame_exception_exit_1; } goto finally_end_7; finally_end_7:; // Tried code tmp_source_name_6 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_common_rules ); if (unlikely( tmp_source_name_6 == NULL )) { tmp_source_name_6 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_common_rules ); } if ( tmp_source_name_6 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151811 ], 41, 0 ); exception_tb = NULL; frame_function->f_lineno = 1202; goto try_finally_handler_8; } tmp_called_15 = LOOKUP_ATTRIBUTE( tmp_source_name_6, const_str_plain_buildhooks ); if ( tmp_called_15 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1202; goto try_finally_handler_8; } tmp_call_arg_element_17 = par_m.object; if ( tmp_call_arg_element_17 == NULL ) { Py_DECREF( tmp_called_15 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 13535 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1202; goto try_finally_handler_8; } frame_function->f_lineno = 1202; tmp_iter_arg_8 = CALL_FUNCTION_WITH_ARGS1( tmp_called_15, tmp_call_arg_element_17 ); Py_DECREF( tmp_called_15 ); if ( tmp_iter_arg_8 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1202; goto try_finally_handler_8; } tmp_assign_source_37 = MAKE_ITERATOR( tmp_iter_arg_8 ); Py_DECREF( tmp_iter_arg_8 ); if ( tmp_assign_source_37 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1202; goto try_finally_handler_8; } assert( tmp_tuple_unpack_3__source_iter.object == NULL ); tmp_tuple_unpack_3__source_iter.object = tmp_assign_source_37; tmp_unpack_5 = tmp_tuple_unpack_3__source_iter.object; tmp_assign_source_38 = UNPACK_PARAMETER_NEXT( tmp_unpack_5, 0 ); if ( tmp_assign_source_38 == NULL ) { if ( !ERROR_OCCURED() ) { exception_type = INCREASE_REFCOUNT( PyExc_StopIteration ); exception_value = NULL; exception_tb = NULL; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); } frame_function->f_lineno = 1202; goto try_finally_handler_8; } assert( tmp_tuple_unpack_3__element_1.object == NULL ); tmp_tuple_unpack_3__element_1.object = tmp_assign_source_38; tmp_unpack_6 = tmp_tuple_unpack_3__source_iter.object; tmp_assign_source_39 = UNPACK_PARAMETER_NEXT( tmp_unpack_6, 1 ); if ( tmp_assign_source_39 == NULL ) { if ( !ERROR_OCCURED() ) { exception_type = INCREASE_REFCOUNT( PyExc_StopIteration ); exception_value = NULL; exception_tb = NULL; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); } frame_function->f_lineno = 1202; goto try_finally_handler_8; } assert( tmp_tuple_unpack_3__element_2.object == NULL ); tmp_tuple_unpack_3__element_2.object = tmp_assign_source_39; tmp_iterator_name_3 = tmp_tuple_unpack_3__source_iter.object; // Check if iterator has left-over elements. assertObject( tmp_iterator_name_3 ); assert( PyIter_Check( tmp_iterator_name_3 ) ); tmp_iterator_attempt_3 = (*Py_TYPE( tmp_iterator_name_3 )->tp_iternext)( tmp_iterator_name_3 ); if (likely( tmp_iterator_attempt_3 == NULL )) { // TODO: Could first fetch, then check, should be faster. if ( !ERROR_OCCURED() ) { } else if ( PyErr_ExceptionMatches( PyExc_StopIteration )) { PyErr_Clear(); } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); goto try_finally_handler_8; } } else { Py_DECREF( tmp_iterator_attempt_3 ); // TODO: Could avoid PyErr_Format. #if PYTHON_VERSION < 300 PyErr_Format( PyExc_ValueError, "too many values to unpack" ); #else PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" ); #endif PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); goto try_finally_handler_8; } tmp_assign_source_40 = tmp_tuple_unpack_3__element_1.object; assert( var_cr.object == NULL ); var_cr.object = INCREASE_REFCOUNT( tmp_assign_source_40 ); tmp_assign_source_41 = tmp_tuple_unpack_3__element_2.object; if (var_wrap.object == NULL) { var_wrap.object = INCREASE_REFCOUNT( tmp_assign_source_41 ); } else { PyObject *old = var_wrap.object; var_wrap.object = INCREASE_REFCOUNT( tmp_assign_source_41 ); Py_DECREF( old ); } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_8:; exception_keeper_type_8 = exception_type; exception_keeper_value_8 = exception_value; exception_keeper_tb_8 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_8 = frame_function->f_lineno; Py_XDECREF( tmp_tuple_unpack_3__source_iter.object ); tmp_tuple_unpack_3__source_iter.object = NULL; Py_XDECREF( tmp_tuple_unpack_3__element_1.object ); tmp_tuple_unpack_3__element_1.object = NULL; Py_XDECREF( tmp_tuple_unpack_3__element_2.object ); tmp_tuple_unpack_3__element_2.object = NULL; frame_function->f_lineno = tmp_tried_lineno_8; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_8 != NULL ) { exception_type = exception_keeper_type_8; exception_value = exception_keeper_value_8; exception_tb = exception_keeper_tb_8; goto frame_exception_exit_1; } goto finally_end_8; finally_end_8:; tmp_cond_value_4 = var_wrap.object; if ( tmp_cond_value_4 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 63093 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1203; goto frame_exception_exit_1; } tmp_cond_truth_4 = CHECK_IF_TRUE( tmp_cond_value_4 ); if ( tmp_cond_truth_4 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1203; goto frame_exception_exit_1; } if (tmp_cond_truth_4 == 1) { goto branch_yes_7; } else { goto branch_no_7; } branch_yes_7:; tmp_source_name_7 = var_funcwrappers.object; if ( tmp_source_name_7 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151753 ], 58, 0 ); exception_tb = NULL; frame_function->f_lineno = 1204; goto frame_exception_exit_1; } tmp_called_16 = LOOKUP_ATTRIBUTE( tmp_source_name_7, const_str_plain_append ); if ( tmp_called_16 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1204; goto frame_exception_exit_1; } tmp_call_arg_element_18 = var_wrap.object; if ( tmp_call_arg_element_18 == NULL ) { Py_DECREF( tmp_called_16 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 63093 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1204; goto frame_exception_exit_1; } frame_function->f_lineno = 1204; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_16, tmp_call_arg_element_18 ); Py_DECREF( tmp_called_16 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1204; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); branch_no_7:; tmp_called_17 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_applyrules ); if (unlikely( tmp_called_17 == NULL )) { tmp_called_17 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_applyrules ); } if ( tmp_called_17 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127020 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1205; goto frame_exception_exit_1; } tmp_call_arg_element_19 = var_cr.object; if ( tmp_call_arg_element_19 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151852 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1205; goto frame_exception_exit_1; } tmp_call_arg_element_20 = var_vrd.object; if ( tmp_call_arg_element_20 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129813 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1205; goto frame_exception_exit_1; } frame_function->f_lineno = 1205; tmp_assign_source_42 = CALL_FUNCTION_WITH_ARGS2( tmp_called_17, tmp_call_arg_element_19, tmp_call_arg_element_20 ); if ( tmp_assign_source_42 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1205; goto frame_exception_exit_1; } if (var_ar.object == NULL) { var_ar.object = tmp_assign_source_42; } else { PyObject *old = var_ar.object; var_ar.object = tmp_assign_source_42; Py_DECREF( old ); } tmp_called_18 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_dictappend ); if (unlikely( tmp_called_18 == NULL )) { tmp_called_18 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dictappend ); } if ( tmp_called_18 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126933 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1206; goto frame_exception_exit_1; } tmp_call_arg_element_21 = var_rd.object; if ( tmp_call_arg_element_21 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1206; goto frame_exception_exit_1; } tmp_call_arg_element_22 = var_ar.object; frame_function->f_lineno = 1206; tmp_assign_source_43 = CALL_FUNCTION_WITH_ARGS2( tmp_called_18, tmp_call_arg_element_21, tmp_call_arg_element_22 ); if ( tmp_assign_source_43 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1206; goto frame_exception_exit_1; } if (var_rd.object == NULL) { var_rd.object = tmp_assign_source_43; } else { PyObject *old = var_rd.object; var_rd.object = tmp_assign_source_43; Py_DECREF( old ); } // Tried code tmp_source_name_8 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_f90mod_rules ); if (unlikely( tmp_source_name_8 == NULL )) { tmp_source_name_8 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_f90mod_rules ); } if ( tmp_source_name_8 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 146977 ], 41, 0 ); exception_tb = NULL; frame_function->f_lineno = 1209; goto try_finally_handler_9; } tmp_called_19 = LOOKUP_ATTRIBUTE( tmp_source_name_8, const_str_plain_buildhooks ); if ( tmp_called_19 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1209; goto try_finally_handler_9; } tmp_call_arg_element_23 = par_m.object; if ( tmp_call_arg_element_23 == NULL ) { Py_DECREF( tmp_called_19 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 13535 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1209; goto try_finally_handler_9; } frame_function->f_lineno = 1209; tmp_iter_arg_9 = CALL_FUNCTION_WITH_ARGS1( tmp_called_19, tmp_call_arg_element_23 ); Py_DECREF( tmp_called_19 ); if ( tmp_iter_arg_9 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1209; goto try_finally_handler_9; } tmp_assign_source_44 = MAKE_ITERATOR( tmp_iter_arg_9 ); Py_DECREF( tmp_iter_arg_9 ); if ( tmp_assign_source_44 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1209; goto try_finally_handler_9; } assert( tmp_tuple_unpack_4__source_iter.object == NULL ); tmp_tuple_unpack_4__source_iter.object = tmp_assign_source_44; tmp_unpack_7 = tmp_tuple_unpack_4__source_iter.object; tmp_assign_source_45 = UNPACK_PARAMETER_NEXT( tmp_unpack_7, 0 ); if ( tmp_assign_source_45 == NULL ) { if ( !ERROR_OCCURED() ) { exception_type = INCREASE_REFCOUNT( PyExc_StopIteration ); exception_value = NULL; exception_tb = NULL; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); } frame_function->f_lineno = 1209; goto try_finally_handler_9; } assert( tmp_tuple_unpack_4__element_1.object == NULL ); tmp_tuple_unpack_4__element_1.object = tmp_assign_source_45; tmp_unpack_8 = tmp_tuple_unpack_4__source_iter.object; tmp_assign_source_46 = UNPACK_PARAMETER_NEXT( tmp_unpack_8, 1 ); if ( tmp_assign_source_46 == NULL ) { if ( !ERROR_OCCURED() ) { exception_type = INCREASE_REFCOUNT( PyExc_StopIteration ); exception_value = NULL; exception_tb = NULL; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); } frame_function->f_lineno = 1209; goto try_finally_handler_9; } assert( tmp_tuple_unpack_4__element_2.object == NULL ); tmp_tuple_unpack_4__element_2.object = tmp_assign_source_46; tmp_iterator_name_4 = tmp_tuple_unpack_4__source_iter.object; // Check if iterator has left-over elements. assertObject( tmp_iterator_name_4 ); assert( PyIter_Check( tmp_iterator_name_4 ) ); tmp_iterator_attempt_4 = (*Py_TYPE( tmp_iterator_name_4 )->tp_iternext)( tmp_iterator_name_4 ); if (likely( tmp_iterator_attempt_4 == NULL )) { // TODO: Could first fetch, then check, should be faster. if ( !ERROR_OCCURED() ) { } else if ( PyErr_ExceptionMatches( PyExc_StopIteration )) { PyErr_Clear(); } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); goto try_finally_handler_9; } } else { Py_DECREF( tmp_iterator_attempt_4 ); // TODO: Could avoid PyErr_Format. #if PYTHON_VERSION < 300 PyErr_Format( PyExc_ValueError, "too many values to unpack" ); #else PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" ); #endif PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); goto try_finally_handler_9; } tmp_assign_source_47 = tmp_tuple_unpack_4__element_1.object; assert( var_mr.object == NULL ); var_mr.object = INCREASE_REFCOUNT( tmp_assign_source_47 ); tmp_assign_source_48 = tmp_tuple_unpack_4__element_2.object; if (var_wrap.object == NULL) { var_wrap.object = INCREASE_REFCOUNT( tmp_assign_source_48 ); } else { PyObject *old = var_wrap.object; var_wrap.object = INCREASE_REFCOUNT( tmp_assign_source_48 ); Py_DECREF( old ); } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_9:; exception_keeper_type_9 = exception_type; exception_keeper_value_9 = exception_value; exception_keeper_tb_9 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_9 = frame_function->f_lineno; Py_XDECREF( tmp_tuple_unpack_4__source_iter.object ); tmp_tuple_unpack_4__source_iter.object = NULL; Py_XDECREF( tmp_tuple_unpack_4__element_1.object ); tmp_tuple_unpack_4__element_1.object = NULL; Py_XDECREF( tmp_tuple_unpack_4__element_2.object ); tmp_tuple_unpack_4__element_2.object = NULL; frame_function->f_lineno = tmp_tried_lineno_9; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_9 != NULL ) { exception_type = exception_keeper_type_9; exception_value = exception_keeper_value_9; exception_tb = exception_keeper_tb_9; goto frame_exception_exit_1; } goto finally_end_9; finally_end_9:; tmp_cond_value_5 = var_wrap.object; if ( tmp_cond_value_5 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 63093 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1210; goto frame_exception_exit_1; } tmp_cond_truth_5 = CHECK_IF_TRUE( tmp_cond_value_5 ); if ( tmp_cond_truth_5 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1210; goto frame_exception_exit_1; } if (tmp_cond_truth_5 == 1) { goto branch_yes_8; } else { goto branch_no_8; } branch_yes_8:; tmp_source_name_9 = var_funcwrappers2.object; if ( tmp_source_name_9 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151694 ], 59, 0 ); exception_tb = NULL; frame_function->f_lineno = 1211; goto frame_exception_exit_1; } tmp_called_20 = LOOKUP_ATTRIBUTE( tmp_source_name_9, const_str_plain_append ); if ( tmp_called_20 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1211; goto frame_exception_exit_1; } tmp_call_arg_element_24 = var_wrap.object; if ( tmp_call_arg_element_24 == NULL ) { Py_DECREF( tmp_called_20 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 63093 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1211; goto frame_exception_exit_1; } frame_function->f_lineno = 1211; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_20, tmp_call_arg_element_24 ); Py_DECREF( tmp_called_20 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1211; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); branch_no_8:; tmp_called_21 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_applyrules ); if (unlikely( tmp_called_21 == NULL )) { tmp_called_21 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_applyrules ); } if ( tmp_called_21 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127020 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1212; goto frame_exception_exit_1; } tmp_call_arg_element_25 = var_mr.object; if ( tmp_call_arg_element_25 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151900 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1212; goto frame_exception_exit_1; } tmp_call_arg_element_26 = var_vrd.object; if ( tmp_call_arg_element_26 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129813 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1212; goto frame_exception_exit_1; } frame_function->f_lineno = 1212; tmp_assign_source_49 = CALL_FUNCTION_WITH_ARGS2( tmp_called_21, tmp_call_arg_element_25, tmp_call_arg_element_26 ); if ( tmp_assign_source_49 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1212; goto frame_exception_exit_1; } if (var_ar.object == NULL) { var_ar.object = tmp_assign_source_49; } else { PyObject *old = var_ar.object; var_ar.object = tmp_assign_source_49; Py_DECREF( old ); } tmp_called_22 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_dictappend ); if (unlikely( tmp_called_22 == NULL )) { tmp_called_22 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dictappend ); } if ( tmp_called_22 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126933 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1213; goto frame_exception_exit_1; } tmp_call_arg_element_27 = var_rd.object; if ( tmp_call_arg_element_27 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1213; goto frame_exception_exit_1; } tmp_call_arg_element_28 = var_ar.object; frame_function->f_lineno = 1213; tmp_assign_source_50 = CALL_FUNCTION_WITH_ARGS2( tmp_called_22, tmp_call_arg_element_27, tmp_call_arg_element_28 ); if ( tmp_assign_source_50 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1213; goto frame_exception_exit_1; } if (var_rd.object == NULL) { var_rd.object = tmp_assign_source_50; } else { PyObject *old = var_rd.object; var_rd.object = tmp_assign_source_50; Py_DECREF( old ); } tmp_iter_arg_10 = par_um.object; if ( tmp_iter_arg_10 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129354 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1215; goto frame_exception_exit_1; } tmp_assign_source_51 = MAKE_ITERATOR( tmp_iter_arg_10 ); if ( tmp_assign_source_51 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1215; goto frame_exception_exit_1; } assert( tmp_for_loop_6__for_iterator.object == NULL ); tmp_for_loop_6__for_iterator.object = tmp_assign_source_51; // Tried code loop_start_6:; tmp_next_source_6 = tmp_for_loop_6__for_iterator.object; tmp_assign_source_52 = ITERATOR_NEXT( tmp_next_source_6 ); if (tmp_assign_source_52 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_6; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1215; goto try_finally_handler_10; } } if (tmp_for_loop_6__iter_value.object == NULL) { tmp_for_loop_6__iter_value.object = tmp_assign_source_52; } else { PyObject *old = tmp_for_loop_6__iter_value.object; tmp_for_loop_6__iter_value.object = tmp_assign_source_52; Py_DECREF( old ); } tmp_assign_source_53 = tmp_for_loop_6__iter_value.object; if (var_u.object == NULL) { var_u.object = INCREASE_REFCOUNT( tmp_assign_source_53 ); } else { PyObject *old = var_u.object; var_u.object = INCREASE_REFCOUNT( tmp_assign_source_53 ); Py_DECREF( old ); } tmp_source_name_10 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_use_rules ); if (unlikely( tmp_source_name_10 == NULL )) { tmp_source_name_10 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_use_rules ); } if ( tmp_source_name_10 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151948 ], 38, 0 ); exception_tb = NULL; frame_function->f_lineno = 1216; goto try_finally_handler_10; } tmp_called_23 = LOOKUP_ATTRIBUTE( tmp_source_name_10, const_str_plain_buildusevars ); if ( tmp_called_23 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1216; goto try_finally_handler_10; } tmp_call_arg_element_29 = var_u.object; tmp_subscr_target_9 = par_m.object; if ( tmp_subscr_target_9 == NULL ) { Py_DECREF( tmp_called_23 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 13535 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1216; goto try_finally_handler_10; } tmp_subscr_subscript_9 = const_str_plain_use; tmp_subscr_target_8 = LOOKUP_SUBSCRIPT( tmp_subscr_target_9, tmp_subscr_subscript_9 ); if ( tmp_subscr_target_8 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_23 ); frame_function->f_lineno = 1216; goto try_finally_handler_10; } tmp_subscr_target_10 = var_u.object; tmp_subscr_subscript_10 = const_str_plain_name; tmp_subscr_subscript_8 = LOOKUP_SUBSCRIPT( tmp_subscr_target_10, tmp_subscr_subscript_10 ); if ( tmp_subscr_subscript_8 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_23 ); Py_DECREF( tmp_subscr_target_8 ); frame_function->f_lineno = 1216; goto try_finally_handler_10; } tmp_call_arg_element_30 = LOOKUP_SUBSCRIPT( tmp_subscr_target_8, tmp_subscr_subscript_8 ); Py_DECREF( tmp_subscr_target_8 ); Py_DECREF( tmp_subscr_subscript_8 ); if ( tmp_call_arg_element_30 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_23 ); frame_function->f_lineno = 1216; goto try_finally_handler_10; } frame_function->f_lineno = 1216; tmp_assign_source_54 = CALL_FUNCTION_WITH_ARGS2( tmp_called_23, tmp_call_arg_element_29, tmp_call_arg_element_30 ); Py_DECREF( tmp_called_23 ); Py_DECREF( tmp_call_arg_element_30 ); if ( tmp_assign_source_54 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1216; goto try_finally_handler_10; } if (var_ar.object == NULL) { var_ar.object = tmp_assign_source_54; } else { PyObject *old = var_ar.object; var_ar.object = tmp_assign_source_54; Py_DECREF( old ); } tmp_called_24 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_dictappend ); if (unlikely( tmp_called_24 == NULL )) { tmp_called_24 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dictappend ); } if ( tmp_called_24 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126933 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1217; goto try_finally_handler_10; } tmp_call_arg_element_31 = var_rd.object; if ( tmp_call_arg_element_31 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1217; goto try_finally_handler_10; } tmp_call_arg_element_32 = var_ar.object; frame_function->f_lineno = 1217; tmp_assign_source_55 = CALL_FUNCTION_WITH_ARGS2( tmp_called_24, tmp_call_arg_element_31, tmp_call_arg_element_32 ); if ( tmp_assign_source_55 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1217; goto try_finally_handler_10; } if (var_rd.object == NULL) { var_rd.object = tmp_assign_source_55; } else { PyObject *old = var_rd.object; var_rd.object = tmp_assign_source_55; Py_DECREF( old ); } if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1215; goto try_finally_handler_10; } goto loop_start_6; loop_end_6:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_10:; exception_keeper_type_10 = exception_type; exception_keeper_value_10 = exception_value; exception_keeper_tb_10 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_10 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_6__iter_value.object ); tmp_for_loop_6__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_6__for_iterator.object ); tmp_for_loop_6__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_10; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_10 != NULL ) { exception_type = exception_keeper_type_10; exception_value = exception_keeper_value_10; exception_tb = exception_keeper_tb_10; goto frame_exception_exit_1; } goto finally_end_10; finally_end_10:; tmp_source_name_11 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_11 == NULL )) { tmp_source_name_11 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_11 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1219; goto frame_exception_exit_1; } tmp_called_25 = LOOKUP_ATTRIBUTE( tmp_source_name_11, const_str_plain_get_needs ); if ( tmp_called_25 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1219; goto frame_exception_exit_1; } frame_function->f_lineno = 1219; tmp_assign_source_56 = CALL_FUNCTION_NO_ARGS( tmp_called_25 ); Py_DECREF( tmp_called_25 ); if ( tmp_assign_source_56 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1219; goto frame_exception_exit_1; } assert( var_needs.object == NULL ); var_needs.object = tmp_assign_source_56; tmp_assign_source_57 = PyDict_New(); assert( var_code.object == NULL ); var_code.object = tmp_assign_source_57; tmp_source_name_12 = var_needs.object; tmp_called_26 = LOOKUP_ATTRIBUTE( tmp_source_name_12, const_str_plain_keys ); if ( tmp_called_26 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1221; goto frame_exception_exit_1; } frame_function->f_lineno = 1221; tmp_iter_arg_11 = CALL_FUNCTION_NO_ARGS( tmp_called_26 ); Py_DECREF( tmp_called_26 ); if ( tmp_iter_arg_11 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1221; goto frame_exception_exit_1; } tmp_assign_source_58 = MAKE_ITERATOR( tmp_iter_arg_11 ); Py_DECREF( tmp_iter_arg_11 ); if ( tmp_assign_source_58 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1221; goto frame_exception_exit_1; } assert( tmp_for_loop_7__for_iterator.object == NULL ); tmp_for_loop_7__for_iterator.object = tmp_assign_source_58; // Tried code loop_start_7:; tmp_next_source_7 = tmp_for_loop_7__for_iterator.object; tmp_assign_source_59 = ITERATOR_NEXT( tmp_next_source_7 ); if (tmp_assign_source_59 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_7; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1221; goto try_finally_handler_11; } } if (tmp_for_loop_7__iter_value.object == NULL) { tmp_for_loop_7__iter_value.object = tmp_assign_source_59; } else { PyObject *old = tmp_for_loop_7__iter_value.object; tmp_for_loop_7__iter_value.object = tmp_assign_source_59; Py_DECREF( old ); } tmp_assign_source_60 = tmp_for_loop_7__iter_value.object; if (var_n.object == NULL) { var_n.object = INCREASE_REFCOUNT( tmp_assign_source_60 ); } else { PyObject *old = var_n.object; var_n.object = INCREASE_REFCOUNT( tmp_assign_source_60 ); Py_DECREF( old ); } tmp_ass_subvalue_3 = PyList_New( 0 ); tmp_ass_subscribed_3 = var_code.object; if ( tmp_ass_subscribed_3 == NULL ) { Py_DECREF( tmp_ass_subvalue_3 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 25569 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1222; goto try_finally_handler_11; } tmp_ass_subscript_3 = var_n.object; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_3, tmp_ass_subscript_3, tmp_ass_subvalue_3 ); Py_DECREF( tmp_ass_subvalue_3 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1222; goto try_finally_handler_11; } tmp_subscr_target_11 = var_needs.object; if ( tmp_subscr_target_11 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151986 ], 51, 0 ); exception_tb = NULL; frame_function->f_lineno = 1223; goto try_finally_handler_11; } tmp_subscr_subscript_11 = var_n.object; tmp_iter_arg_12 = LOOKUP_SUBSCRIPT( tmp_subscr_target_11, tmp_subscr_subscript_11 ); if ( tmp_iter_arg_12 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1223; goto try_finally_handler_11; } tmp_assign_source_61 = MAKE_ITERATOR( tmp_iter_arg_12 ); Py_DECREF( tmp_iter_arg_12 ); if ( tmp_assign_source_61 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1223; goto try_finally_handler_11; } if (tmp_for_loop_8__for_iterator.object == NULL) { tmp_for_loop_8__for_iterator.object = tmp_assign_source_61; } else { PyObject *old = tmp_for_loop_8__for_iterator.object; tmp_for_loop_8__for_iterator.object = tmp_assign_source_61; Py_DECREF( old ); } // Tried code loop_start_8:; tmp_next_source_8 = tmp_for_loop_8__for_iterator.object; tmp_assign_source_62 = ITERATOR_NEXT( tmp_next_source_8 ); if (tmp_assign_source_62 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_8; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1223; goto try_finally_handler_12; } } if (tmp_for_loop_8__iter_value.object == NULL) { tmp_for_loop_8__iter_value.object = tmp_assign_source_62; } else { PyObject *old = tmp_for_loop_8__iter_value.object; tmp_for_loop_8__iter_value.object = tmp_assign_source_62; Py_DECREF( old ); } tmp_assign_source_63 = tmp_for_loop_8__iter_value.object; if (var_k.object == NULL) { var_k.object = INCREASE_REFCOUNT( tmp_assign_source_63 ); } else { PyObject *old = var_k.object; var_k.object = INCREASE_REFCOUNT( tmp_assign_source_63 ); Py_DECREF( old ); } tmp_assign_source_64 = const_str_empty; if (var_c.object == NULL) { var_c.object = INCREASE_REFCOUNT( tmp_assign_source_64 ); } else { PyObject *old = var_c.object; var_c.object = INCREASE_REFCOUNT( tmp_assign_source_64 ); Py_DECREF( old ); } tmp_compare_left_4 = var_k.object; tmp_source_name_13 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_13 == NULL )) { tmp_source_name_13 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_13 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1225; goto try_finally_handler_12; } tmp_compare_right_4 = LOOKUP_ATTRIBUTE( tmp_source_name_13, const_str_plain_includes0 ); if ( tmp_compare_right_4 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1225; goto try_finally_handler_12; } tmp_cmp_In_2 = PySequence_Contains( tmp_compare_right_4, tmp_compare_left_4 ); if ( tmp_cmp_In_2 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_compare_right_4 ); frame_function->f_lineno = 1225; goto try_finally_handler_12; } Py_DECREF( tmp_compare_right_4 ); if (tmp_cmp_In_2 == 1) { goto branch_yes_9; } else { goto branch_no_9; } branch_yes_9:; tmp_source_name_14 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_14 == NULL )) { tmp_source_name_14 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_14 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1226; goto try_finally_handler_12; } tmp_subscr_target_12 = LOOKUP_ATTRIBUTE( tmp_source_name_14, const_str_plain_includes0 ); if ( tmp_subscr_target_12 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1226; goto try_finally_handler_12; } tmp_subscr_subscript_12 = var_k.object; tmp_assign_source_65 = LOOKUP_SUBSCRIPT( tmp_subscr_target_12, tmp_subscr_subscript_12 ); Py_DECREF( tmp_subscr_target_12 ); if ( tmp_assign_source_65 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1226; goto try_finally_handler_12; } assert( var_c.object != NULL ); { PyObject *old = var_c.object; var_c.object = tmp_assign_source_65; Py_DECREF( old ); } goto branch_end_9; branch_no_9:; tmp_compare_left_5 = var_k.object; tmp_source_name_15 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_15 == NULL )) { tmp_source_name_15 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_15 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1227; goto try_finally_handler_12; } tmp_compare_right_5 = LOOKUP_ATTRIBUTE( tmp_source_name_15, const_str_plain_includes ); if ( tmp_compare_right_5 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1227; goto try_finally_handler_12; } tmp_cmp_In_3 = PySequence_Contains( tmp_compare_right_5, tmp_compare_left_5 ); if ( tmp_cmp_In_3 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_compare_right_5 ); frame_function->f_lineno = 1227; goto try_finally_handler_12; } Py_DECREF( tmp_compare_right_5 ); if (tmp_cmp_In_3 == 1) { goto branch_yes_10; } else { goto branch_no_10; } branch_yes_10:; tmp_source_name_16 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_16 == NULL )) { tmp_source_name_16 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_16 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1228; goto try_finally_handler_12; } tmp_subscr_target_13 = LOOKUP_ATTRIBUTE( tmp_source_name_16, const_str_plain_includes ); if ( tmp_subscr_target_13 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1228; goto try_finally_handler_12; } tmp_subscr_subscript_13 = var_k.object; tmp_assign_source_66 = LOOKUP_SUBSCRIPT( tmp_subscr_target_13, tmp_subscr_subscript_13 ); Py_DECREF( tmp_subscr_target_13 ); if ( tmp_assign_source_66 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1228; goto try_finally_handler_12; } assert( var_c.object != NULL ); { PyObject *old = var_c.object; var_c.object = tmp_assign_source_66; Py_DECREF( old ); } goto branch_end_10; branch_no_10:; tmp_compare_left_6 = var_k.object; tmp_source_name_17 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_17 == NULL )) { tmp_source_name_17 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_17 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1229; goto try_finally_handler_12; } tmp_compare_right_6 = LOOKUP_ATTRIBUTE( tmp_source_name_17, const_str_plain_userincludes ); if ( tmp_compare_right_6 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1229; goto try_finally_handler_12; } tmp_cmp_In_4 = PySequence_Contains( tmp_compare_right_6, tmp_compare_left_6 ); if ( tmp_cmp_In_4 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_compare_right_6 ); frame_function->f_lineno = 1229; goto try_finally_handler_12; } Py_DECREF( tmp_compare_right_6 ); if (tmp_cmp_In_4 == 1) { goto branch_yes_11; } else { goto branch_no_11; } branch_yes_11:; tmp_source_name_18 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_18 == NULL )) { tmp_source_name_18 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_18 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1230; goto try_finally_handler_12; } tmp_subscr_target_14 = LOOKUP_ATTRIBUTE( tmp_source_name_18, const_str_plain_userincludes ); if ( tmp_subscr_target_14 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1230; goto try_finally_handler_12; } tmp_subscr_subscript_14 = var_k.object; tmp_assign_source_67 = LOOKUP_SUBSCRIPT( tmp_subscr_target_14, tmp_subscr_subscript_14 ); Py_DECREF( tmp_subscr_target_14 ); if ( tmp_assign_source_67 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1230; goto try_finally_handler_12; } assert( var_c.object != NULL ); { PyObject *old = var_c.object; var_c.object = tmp_assign_source_67; Py_DECREF( old ); } goto branch_end_11; branch_no_11:; tmp_compare_left_7 = var_k.object; tmp_source_name_19 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_19 == NULL )) { tmp_source_name_19 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_19 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1231; goto try_finally_handler_12; } tmp_compare_right_7 = LOOKUP_ATTRIBUTE( tmp_source_name_19, const_str_plain_typedefs ); if ( tmp_compare_right_7 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1231; goto try_finally_handler_12; } tmp_cmp_In_5 = PySequence_Contains( tmp_compare_right_7, tmp_compare_left_7 ); if ( tmp_cmp_In_5 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_compare_right_7 ); frame_function->f_lineno = 1231; goto try_finally_handler_12; } Py_DECREF( tmp_compare_right_7 ); if (tmp_cmp_In_5 == 1) { goto branch_yes_12; } else { goto branch_no_12; } branch_yes_12:; tmp_source_name_20 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_20 == NULL )) { tmp_source_name_20 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_20 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1232; goto try_finally_handler_12; } tmp_subscr_target_15 = LOOKUP_ATTRIBUTE( tmp_source_name_20, const_str_plain_typedefs ); if ( tmp_subscr_target_15 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1232; goto try_finally_handler_12; } tmp_subscr_subscript_15 = var_k.object; tmp_assign_source_68 = LOOKUP_SUBSCRIPT( tmp_subscr_target_15, tmp_subscr_subscript_15 ); Py_DECREF( tmp_subscr_target_15 ); if ( tmp_assign_source_68 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1232; goto try_finally_handler_12; } assert( var_c.object != NULL ); { PyObject *old = var_c.object; var_c.object = tmp_assign_source_68; Py_DECREF( old ); } goto branch_end_12; branch_no_12:; tmp_compare_left_8 = var_k.object; tmp_source_name_21 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_21 == NULL )) { tmp_source_name_21 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_21 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1233; goto try_finally_handler_12; } tmp_compare_right_8 = LOOKUP_ATTRIBUTE( tmp_source_name_21, const_str_plain_typedefs_generated ); if ( tmp_compare_right_8 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1233; goto try_finally_handler_12; } tmp_cmp_In_6 = PySequence_Contains( tmp_compare_right_8, tmp_compare_left_8 ); if ( tmp_cmp_In_6 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_compare_right_8 ); frame_function->f_lineno = 1233; goto try_finally_handler_12; } Py_DECREF( tmp_compare_right_8 ); if (tmp_cmp_In_6 == 1) { goto branch_yes_13; } else { goto branch_no_13; } branch_yes_13:; tmp_source_name_22 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_22 == NULL )) { tmp_source_name_22 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_22 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1234; goto try_finally_handler_12; } tmp_subscr_target_16 = LOOKUP_ATTRIBUTE( tmp_source_name_22, const_str_plain_typedefs_generated ); if ( tmp_subscr_target_16 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1234; goto try_finally_handler_12; } tmp_subscr_subscript_16 = var_k.object; tmp_assign_source_69 = LOOKUP_SUBSCRIPT( tmp_subscr_target_16, tmp_subscr_subscript_16 ); Py_DECREF( tmp_subscr_target_16 ); if ( tmp_assign_source_69 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1234; goto try_finally_handler_12; } assert( var_c.object != NULL ); { PyObject *old = var_c.object; var_c.object = tmp_assign_source_69; Py_DECREF( old ); } goto branch_end_13; branch_no_13:; tmp_compare_left_9 = var_k.object; tmp_source_name_23 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_23 == NULL )) { tmp_source_name_23 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_23 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1235; goto try_finally_handler_12; } tmp_compare_right_9 = LOOKUP_ATTRIBUTE( tmp_source_name_23, const_str_plain_cppmacros ); if ( tmp_compare_right_9 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1235; goto try_finally_handler_12; } tmp_cmp_In_7 = PySequence_Contains( tmp_compare_right_9, tmp_compare_left_9 ); if ( tmp_cmp_In_7 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_compare_right_9 ); frame_function->f_lineno = 1235; goto try_finally_handler_12; } Py_DECREF( tmp_compare_right_9 ); if (tmp_cmp_In_7 == 1) { goto branch_yes_14; } else { goto branch_no_14; } branch_yes_14:; tmp_source_name_24 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_24 == NULL )) { tmp_source_name_24 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_24 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1236; goto try_finally_handler_12; } tmp_subscr_target_17 = LOOKUP_ATTRIBUTE( tmp_source_name_24, const_str_plain_cppmacros ); if ( tmp_subscr_target_17 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1236; goto try_finally_handler_12; } tmp_subscr_subscript_17 = var_k.object; tmp_assign_source_70 = LOOKUP_SUBSCRIPT( tmp_subscr_target_17, tmp_subscr_subscript_17 ); Py_DECREF( tmp_subscr_target_17 ); if ( tmp_assign_source_70 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1236; goto try_finally_handler_12; } assert( var_c.object != NULL ); { PyObject *old = var_c.object; var_c.object = tmp_assign_source_70; Py_DECREF( old ); } goto branch_end_14; branch_no_14:; tmp_compare_left_10 = var_k.object; tmp_source_name_25 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_25 == NULL )) { tmp_source_name_25 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_25 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1237; goto try_finally_handler_12; } tmp_compare_right_10 = LOOKUP_ATTRIBUTE( tmp_source_name_25, const_str_plain_cfuncs ); if ( tmp_compare_right_10 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1237; goto try_finally_handler_12; } tmp_cmp_In_8 = PySequence_Contains( tmp_compare_right_10, tmp_compare_left_10 ); if ( tmp_cmp_In_8 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_compare_right_10 ); frame_function->f_lineno = 1237; goto try_finally_handler_12; } Py_DECREF( tmp_compare_right_10 ); if (tmp_cmp_In_8 == 1) { goto branch_yes_15; } else { goto branch_no_15; } branch_yes_15:; tmp_source_name_26 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_26 == NULL )) { tmp_source_name_26 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_26 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1238; goto try_finally_handler_12; } tmp_subscr_target_18 = LOOKUP_ATTRIBUTE( tmp_source_name_26, const_str_plain_cfuncs ); if ( tmp_subscr_target_18 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1238; goto try_finally_handler_12; } tmp_subscr_subscript_18 = var_k.object; tmp_assign_source_71 = LOOKUP_SUBSCRIPT( tmp_subscr_target_18, tmp_subscr_subscript_18 ); Py_DECREF( tmp_subscr_target_18 ); if ( tmp_assign_source_71 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1238; goto try_finally_handler_12; } assert( var_c.object != NULL ); { PyObject *old = var_c.object; var_c.object = tmp_assign_source_71; Py_DECREF( old ); } goto branch_end_15; branch_no_15:; tmp_compare_left_11 = var_k.object; tmp_source_name_27 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_27 == NULL )) { tmp_source_name_27 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_27 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1239; goto try_finally_handler_12; } tmp_compare_right_11 = LOOKUP_ATTRIBUTE( tmp_source_name_27, const_str_plain_callbacks ); if ( tmp_compare_right_11 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1239; goto try_finally_handler_12; } tmp_cmp_In_9 = PySequence_Contains( tmp_compare_right_11, tmp_compare_left_11 ); if ( tmp_cmp_In_9 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_compare_right_11 ); frame_function->f_lineno = 1239; goto try_finally_handler_12; } Py_DECREF( tmp_compare_right_11 ); if (tmp_cmp_In_9 == 1) { goto branch_yes_16; } else { goto branch_no_16; } branch_yes_16:; tmp_source_name_28 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_28 == NULL )) { tmp_source_name_28 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_28 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1240; goto try_finally_handler_12; } tmp_subscr_target_19 = LOOKUP_ATTRIBUTE( tmp_source_name_28, const_str_plain_callbacks ); if ( tmp_subscr_target_19 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1240; goto try_finally_handler_12; } tmp_subscr_subscript_19 = var_k.object; tmp_assign_source_72 = LOOKUP_SUBSCRIPT( tmp_subscr_target_19, tmp_subscr_subscript_19 ); Py_DECREF( tmp_subscr_target_19 ); if ( tmp_assign_source_72 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1240; goto try_finally_handler_12; } assert( var_c.object != NULL ); { PyObject *old = var_c.object; var_c.object = tmp_assign_source_72; Py_DECREF( old ); } goto branch_end_16; branch_no_16:; tmp_compare_left_12 = var_k.object; tmp_source_name_29 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_29 == NULL )) { tmp_source_name_29 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_29 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1241; goto try_finally_handler_12; } tmp_compare_right_12 = LOOKUP_ATTRIBUTE( tmp_source_name_29, const_str_plain_f90modhooks ); if ( tmp_compare_right_12 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1241; goto try_finally_handler_12; } tmp_cmp_In_10 = PySequence_Contains( tmp_compare_right_12, tmp_compare_left_12 ); if ( tmp_cmp_In_10 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_compare_right_12 ); frame_function->f_lineno = 1241; goto try_finally_handler_12; } Py_DECREF( tmp_compare_right_12 ); if (tmp_cmp_In_10 == 1) { goto branch_yes_17; } else { goto branch_no_17; } branch_yes_17:; tmp_source_name_30 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_30 == NULL )) { tmp_source_name_30 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_30 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1242; goto try_finally_handler_12; } tmp_subscr_target_20 = LOOKUP_ATTRIBUTE( tmp_source_name_30, const_str_plain_f90modhooks ); if ( tmp_subscr_target_20 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1242; goto try_finally_handler_12; } tmp_subscr_subscript_20 = var_k.object; tmp_assign_source_73 = LOOKUP_SUBSCRIPT( tmp_subscr_target_20, tmp_subscr_subscript_20 ); Py_DECREF( tmp_subscr_target_20 ); if ( tmp_assign_source_73 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1242; goto try_finally_handler_12; } assert( var_c.object != NULL ); { PyObject *old = var_c.object; var_c.object = tmp_assign_source_73; Py_DECREF( old ); } goto branch_end_17; branch_no_17:; tmp_compare_left_13 = var_k.object; tmp_source_name_31 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_31 == NULL )) { tmp_source_name_31 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_31 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1243; goto try_finally_handler_12; } tmp_compare_right_13 = LOOKUP_ATTRIBUTE( tmp_source_name_31, const_str_plain_commonhooks ); if ( tmp_compare_right_13 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1243; goto try_finally_handler_12; } tmp_cmp_In_11 = PySequence_Contains( tmp_compare_right_13, tmp_compare_left_13 ); if ( tmp_cmp_In_11 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_compare_right_13 ); frame_function->f_lineno = 1243; goto try_finally_handler_12; } Py_DECREF( tmp_compare_right_13 ); if (tmp_cmp_In_11 == 1) { goto branch_yes_18; } else { goto branch_no_18; } branch_yes_18:; tmp_source_name_32 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs ); if (unlikely( tmp_source_name_32 == NULL )) { tmp_source_name_32 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_cfuncs ); } if ( tmp_source_name_32 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127059 ], 35, 0 ); exception_tb = NULL; frame_function->f_lineno = 1244; goto try_finally_handler_12; } tmp_subscr_target_21 = LOOKUP_ATTRIBUTE( tmp_source_name_32, const_str_plain_commonhooks ); if ( tmp_subscr_target_21 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1244; goto try_finally_handler_12; } tmp_subscr_subscript_21 = var_k.object; tmp_assign_source_74 = LOOKUP_SUBSCRIPT( tmp_subscr_target_21, tmp_subscr_subscript_21 ); Py_DECREF( tmp_subscr_target_21 ); if ( tmp_assign_source_74 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1244; goto try_finally_handler_12; } assert( var_c.object != NULL ); { PyObject *old = var_c.object; var_c.object = tmp_assign_source_74; Py_DECREF( old ); } goto branch_end_18; branch_no_18:; tmp_called_27 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_errmess ); if (unlikely( tmp_called_27 == NULL )) { tmp_called_27 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_errmess ); } if ( tmp_called_27 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125842 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1246; goto try_finally_handler_12; } tmp_binop_left_3 = const_str_digest_5b7e03ef8781497c848bb48ecd301016; tmp_unary_arg_1 = var_k.object; tmp_binop_right_3 = UNARY_OPERATION( PyObject_Repr, tmp_unary_arg_1 ); if ( tmp_binop_right_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1246; goto try_finally_handler_12; } tmp_call_arg_element_33 = BINARY_OPERATION_REMAINDER( tmp_binop_left_3, tmp_binop_right_3 ); Py_DECREF( tmp_binop_right_3 ); if ( tmp_call_arg_element_33 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1246; goto try_finally_handler_12; } frame_function->f_lineno = 1246; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_27, tmp_call_arg_element_33 ); Py_DECREF( tmp_call_arg_element_33 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1246; goto try_finally_handler_12; } Py_DECREF( tmp_unused ); goto loop_start_8; branch_end_18:; branch_end_17:; branch_end_16:; branch_end_15:; branch_end_14:; branch_end_13:; branch_end_12:; branch_end_11:; branch_end_10:; branch_end_9:; tmp_subscr_target_22 = var_code.object; if ( tmp_subscr_target_22 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 25569 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1247; goto try_finally_handler_12; } tmp_subscr_subscript_22 = var_n.object; if ( tmp_subscr_subscript_22 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 12516 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1247; goto try_finally_handler_12; } tmp_source_name_33 = LOOKUP_SUBSCRIPT( tmp_subscr_target_22, tmp_subscr_subscript_22 ); if ( tmp_source_name_33 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1247; goto try_finally_handler_12; } tmp_called_28 = LOOKUP_ATTRIBUTE( tmp_source_name_33, const_str_plain_append ); Py_DECREF( tmp_source_name_33 ); if ( tmp_called_28 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1247; goto try_finally_handler_12; } tmp_call_arg_element_34 = var_c.object; if ( tmp_call_arg_element_34 == NULL ) { Py_DECREF( tmp_called_28 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 100 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1247; goto try_finally_handler_12; } frame_function->f_lineno = 1247; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_28, tmp_call_arg_element_34 ); Py_DECREF( tmp_called_28 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1247; goto try_finally_handler_12; } Py_DECREF( tmp_unused ); if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1223; goto try_finally_handler_12; } goto loop_start_8; loop_end_8:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_12:; exception_keeper_type_11 = exception_type; exception_keeper_value_11 = exception_value; exception_keeper_tb_11 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_11 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_8__iter_value.object ); tmp_for_loop_8__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_8__for_iterator.object ); tmp_for_loop_8__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_11; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_11 != NULL ) { exception_type = exception_keeper_type_11; exception_value = exception_keeper_value_11; exception_tb = exception_keeper_tb_11; goto try_finally_handler_11; } goto finally_end_11; finally_end_11:; if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1221; goto try_finally_handler_11; } goto loop_start_7; loop_end_7:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_11:; exception_keeper_type_12 = exception_type; exception_keeper_value_12 = exception_value; exception_keeper_tb_12 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_12 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_7__iter_value.object ); tmp_for_loop_7__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_7__for_iterator.object ); tmp_for_loop_7__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_12; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_12 != NULL ) { exception_type = exception_keeper_type_12; exception_value = exception_keeper_value_12; exception_tb = exception_keeper_tb_12; goto frame_exception_exit_1; } goto finally_end_12; finally_end_12:; tmp_source_name_34 = var_mod_rules.object; if ( tmp_source_name_34 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152037 ], 55, 0 ); exception_tb = NULL; frame_function->f_lineno = 1248; goto frame_exception_exit_1; } tmp_called_29 = LOOKUP_ATTRIBUTE( tmp_source_name_34, const_str_plain_append ); if ( tmp_called_29 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1248; goto frame_exception_exit_1; } tmp_call_arg_element_35 = var_code.object; if ( tmp_call_arg_element_35 == NULL ) { Py_DECREF( tmp_called_29 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 25569 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1248; goto frame_exception_exit_1; } frame_function->f_lineno = 1248; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_29, tmp_call_arg_element_35 ); Py_DECREF( tmp_called_29 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1248; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_iter_arg_13 = var_mod_rules.object; if ( tmp_iter_arg_13 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152037 ], 55, 0 ); exception_tb = NULL; frame_function->f_lineno = 1249; goto frame_exception_exit_1; } tmp_assign_source_75 = MAKE_ITERATOR( tmp_iter_arg_13 ); if ( tmp_assign_source_75 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1249; goto frame_exception_exit_1; } assert( tmp_for_loop_9__for_iterator.object == NULL ); tmp_for_loop_9__for_iterator.object = tmp_assign_source_75; // Tried code loop_start_9:; tmp_next_source_9 = tmp_for_loop_9__for_iterator.object; tmp_assign_source_76 = ITERATOR_NEXT( tmp_next_source_9 ); if (tmp_assign_source_76 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_9; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1249; goto try_finally_handler_13; } } if (tmp_for_loop_9__iter_value.object == NULL) { tmp_for_loop_9__iter_value.object = tmp_assign_source_76; } else { PyObject *old = tmp_for_loop_9__iter_value.object; tmp_for_loop_9__iter_value.object = tmp_assign_source_76; Py_DECREF( old ); } tmp_assign_source_77 = tmp_for_loop_9__iter_value.object; if (var_r.object == NULL) { var_r.object = INCREASE_REFCOUNT( tmp_assign_source_77 ); } else { PyObject *old = var_r.object; var_r.object = INCREASE_REFCOUNT( tmp_assign_source_77 ); Py_DECREF( old ); } // Tried code tmp_cond_value_6 = NULL; // Tried code // Tried code tmp_assign_source_78 = NULL; // Tried code tmp_compexpr_left_1 = const_str_plain__check; tmp_compexpr_right_1 = var_r.object; tmp_assign_source_79 = SEQUENCE_CONTAINS( tmp_compexpr_left_1, tmp_compexpr_right_1 ); if ( tmp_assign_source_79 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1250; goto try_finally_handler_17; } if (tmp_and_1__value_1.object == NULL) { tmp_and_1__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_79 ); } else { PyObject *old = tmp_and_1__value_1.object; tmp_and_1__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_79 ); Py_DECREF( old ); } tmp_cond_value_7 = tmp_and_1__value_1.object; tmp_cond_truth_7 = CHECK_IF_TRUE( tmp_cond_value_7 ); if ( tmp_cond_truth_7 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1250; goto try_finally_handler_17; } if (tmp_cond_truth_7 == 1) { goto condexpr_true_1; } else { goto condexpr_false_1; } condexpr_true_1:; tmp_assign_source_78 = NULL; // Tried code tmp_result = tmp_and_1__value_1.object != NULL; if ( tmp_result == true ) { Py_DECREF( tmp_and_1__value_1.object ); tmp_and_1__value_1.object = NULL; } assert( tmp_result != false ); tmp_subscr_target_23 = var_r.object; tmp_subscr_subscript_23 = const_str_plain__check; tmp_called_30 = LOOKUP_SUBSCRIPT( tmp_subscr_target_23, tmp_subscr_subscript_23 ); if ( tmp_called_30 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1250; goto try_finally_handler_18; } tmp_call_arg_element_36 = par_m.object; if ( tmp_call_arg_element_36 == NULL ) { Py_DECREF( tmp_called_30 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 13535 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1250; goto try_finally_handler_18; } frame_function->f_lineno = 1250; tmp_assign_source_78 = CALL_FUNCTION_WITH_ARGS1( tmp_called_30, tmp_call_arg_element_36 ); Py_DECREF( tmp_called_30 ); if ( tmp_assign_source_78 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1250; goto try_finally_handler_18; } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_18:; exception_keeper_type_13 = exception_type; exception_keeper_value_13 = exception_value; exception_keeper_tb_13 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_13 != NULL ) { exception_type = exception_keeper_type_13; exception_value = exception_keeper_value_13; exception_tb = exception_keeper_tb_13; goto try_finally_handler_17; } goto finally_end_13; finally_end_13:; goto condexpr_end_1; condexpr_false_1:; tmp_assign_source_78 = tmp_and_1__value_1.object; Py_INCREF( tmp_assign_source_78 ); condexpr_end_1:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_17:; exception_keeper_type_14 = exception_type; exception_keeper_value_14 = exception_value; exception_keeper_tb_14 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_14 != NULL ) { exception_type = exception_keeper_type_14; exception_value = exception_keeper_value_14; exception_tb = exception_keeper_tb_14; goto try_finally_handler_16; } goto finally_end_14; finally_end_14:; if (tmp_or_1__value_1.object == NULL) { tmp_or_1__value_1.object = tmp_assign_source_78; } else { PyObject *old = tmp_or_1__value_1.object; tmp_or_1__value_1.object = tmp_assign_source_78; Py_DECREF( old ); } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_16:; exception_keeper_type_15 = exception_type; exception_keeper_value_15 = exception_value; exception_keeper_tb_15 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_13 = frame_function->f_lineno; Py_XDECREF( tmp_and_1__value_1.object ); tmp_and_1__value_1.object = NULL; frame_function->f_lineno = tmp_tried_lineno_13; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_15 != NULL ) { exception_type = exception_keeper_type_15; exception_value = exception_keeper_value_15; exception_tb = exception_keeper_tb_15; goto try_finally_handler_15; } goto finally_end_15; finally_end_15:; tmp_cond_value_8 = tmp_or_1__value_1.object; tmp_cond_truth_8 = CHECK_IF_TRUE( tmp_cond_value_8 ); if ( tmp_cond_truth_8 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1250; goto try_finally_handler_15; } if (tmp_cond_truth_8 == 1) { goto condexpr_true_2; } else { goto condexpr_false_2; } condexpr_true_2:; tmp_cond_value_6 = tmp_or_1__value_1.object; goto condexpr_end_2; condexpr_false_2:; tmp_cond_value_6 = NULL; // Tried code tmp_result = tmp_or_1__value_1.object != NULL; if ( tmp_result == true ) { Py_DECREF( tmp_or_1__value_1.object ); tmp_or_1__value_1.object = NULL; } assert( tmp_result != false ); tmp_compexpr_left_2 = const_str_plain__check; tmp_compexpr_right_2 = var_r.object; if ( tmp_compexpr_right_2 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 11969 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1250; goto try_finally_handler_19; } tmp_cond_value_6 = SEQUENCE_CONTAINS_NOT( tmp_compexpr_left_2, tmp_compexpr_right_2 ); if ( tmp_cond_value_6 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1250; goto try_finally_handler_19; } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_19:; exception_keeper_type_16 = exception_type; exception_keeper_value_16 = exception_value; exception_keeper_tb_16 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_16 != NULL ) { exception_type = exception_keeper_type_16; exception_value = exception_keeper_value_16; exception_tb = exception_keeper_tb_16; goto try_finally_handler_15; } goto finally_end_16; finally_end_16:; condexpr_end_2:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_15:; exception_keeper_type_17 = exception_type; exception_keeper_value_17 = exception_value; exception_keeper_tb_17 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_17 != NULL ) { exception_type = exception_keeper_type_17; exception_value = exception_keeper_value_17; exception_tb = exception_keeper_tb_17; goto try_finally_handler_14; } goto finally_end_17; finally_end_17:; tmp_cond_truth_6 = CHECK_IF_TRUE( tmp_cond_value_6 ); if ( tmp_cond_truth_6 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1250; goto try_finally_handler_14; } if (tmp_cond_truth_6 == 1) { goto branch_yes_19; } else { goto branch_no_19; } branch_yes_19:; tmp_called_31 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_applyrules ); if (unlikely( tmp_called_31 == NULL )) { tmp_called_31 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_applyrules ); } if ( tmp_called_31 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127020 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1251; goto try_finally_handler_14; } tmp_call_arg_element_37 = var_r.object; if ( tmp_call_arg_element_37 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 11969 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1251; goto try_finally_handler_14; } tmp_call_arg_element_38 = var_vrd.object; if ( tmp_call_arg_element_38 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129813 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1251; goto try_finally_handler_14; } tmp_call_arg_element_39 = par_m.object; if ( tmp_call_arg_element_39 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 13535 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1251; goto try_finally_handler_14; } frame_function->f_lineno = 1251; tmp_assign_source_80 = CALL_FUNCTION_WITH_ARGS3( tmp_called_31, tmp_call_arg_element_37, tmp_call_arg_element_38, tmp_call_arg_element_39 ); if ( tmp_assign_source_80 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1251; goto try_finally_handler_14; } if (var_ar.object == NULL) { var_ar.object = tmp_assign_source_80; } else { PyObject *old = var_ar.object; var_ar.object = tmp_assign_source_80; Py_DECREF( old ); } tmp_called_32 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_dictappend ); if (unlikely( tmp_called_32 == NULL )) { tmp_called_32 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dictappend ); } if ( tmp_called_32 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126933 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1252; goto try_finally_handler_14; } tmp_call_arg_element_40 = var_rd.object; if ( tmp_call_arg_element_40 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1252; goto try_finally_handler_14; } tmp_call_arg_element_41 = var_ar.object; frame_function->f_lineno = 1252; tmp_assign_source_81 = CALL_FUNCTION_WITH_ARGS2( tmp_called_32, tmp_call_arg_element_40, tmp_call_arg_element_41 ); if ( tmp_assign_source_81 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1252; goto try_finally_handler_14; } if (var_rd.object == NULL) { var_rd.object = tmp_assign_source_81; } else { PyObject *old = var_rd.object; var_rd.object = tmp_assign_source_81; Py_DECREF( old ); } branch_no_19:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_14:; exception_keeper_type_18 = exception_type; exception_keeper_value_18 = exception_value; exception_keeper_tb_18 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_14 = frame_function->f_lineno; Py_XDECREF( tmp_or_1__value_1.object ); tmp_or_1__value_1.object = NULL; frame_function->f_lineno = tmp_tried_lineno_14; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_18 != NULL ) { exception_type = exception_keeper_type_18; exception_value = exception_keeper_value_18; exception_tb = exception_keeper_tb_18; goto try_finally_handler_13; } goto finally_end_18; finally_end_18:; if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1249; goto try_finally_handler_13; } goto loop_start_9; loop_end_9:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_13:; exception_keeper_type_19 = exception_type; exception_keeper_value_19 = exception_value; exception_keeper_tb_19 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_15 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_9__iter_value.object ); tmp_for_loop_9__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_9__for_iterator.object ); tmp_for_loop_9__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_15; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_19 != NULL ) { exception_type = exception_keeper_type_19; exception_value = exception_keeper_value_19; exception_tb = exception_keeper_tb_19; goto frame_exception_exit_1; } goto finally_end_19; finally_end_19:; tmp_called_33 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_applyrules ); if (unlikely( tmp_called_33 == NULL )) { tmp_called_33 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_applyrules ); } if ( tmp_called_33 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127020 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1253; goto frame_exception_exit_1; } tmp_call_arg_element_42 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_module_rules ); if (unlikely( tmp_call_arg_element_42 == NULL )) { tmp_call_arg_element_42 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_module_rules ); } if ( tmp_call_arg_element_42 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152092 ], 41, 0 ); exception_tb = NULL; frame_function->f_lineno = 1253; goto frame_exception_exit_1; } tmp_call_arg_element_43 = var_rd.object; if ( tmp_call_arg_element_43 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1253; goto frame_exception_exit_1; } frame_function->f_lineno = 1253; tmp_assign_source_82 = CALL_FUNCTION_WITH_ARGS2( tmp_called_33, tmp_call_arg_element_42, tmp_call_arg_element_43 ); if ( tmp_assign_source_82 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1253; goto frame_exception_exit_1; } if (var_ar.object == NULL) { var_ar.object = tmp_assign_source_82; } else { PyObject *old = var_ar.object; var_ar.object = tmp_assign_source_82; Py_DECREF( old ); } tmp_source_name_36 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_os ); if (unlikely( tmp_source_name_36 == NULL )) { tmp_source_name_36 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_os ); } if ( tmp_source_name_36 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 6460 ], 31, 0 ); exception_tb = NULL; frame_function->f_lineno = 1255; goto frame_exception_exit_1; } tmp_source_name_35 = LOOKUP_ATTRIBUTE( tmp_source_name_36, const_str_plain_path ); if ( tmp_source_name_35 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1255; goto frame_exception_exit_1; } tmp_called_34 = LOOKUP_ATTRIBUTE( tmp_source_name_35, const_str_plain_join ); Py_DECREF( tmp_source_name_35 ); if ( tmp_called_34 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1255; goto frame_exception_exit_1; } tmp_subscr_target_24 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_options ); if (unlikely( tmp_subscr_target_24 == NULL )) { tmp_subscr_target_24 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_options ); } if ( tmp_subscr_target_24 == NULL ) { Py_DECREF( tmp_called_34 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124432 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1255; goto frame_exception_exit_1; } tmp_subscr_subscript_24 = const_str_plain_buildpath; tmp_call_arg_element_44 = LOOKUP_SUBSCRIPT( tmp_subscr_target_24, tmp_subscr_subscript_24 ); if ( tmp_call_arg_element_44 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_34 ); frame_function->f_lineno = 1255; goto frame_exception_exit_1; } tmp_subscr_target_25 = var_vrd.object; if ( tmp_subscr_target_25 == NULL ) { Py_DECREF( tmp_called_34 ); Py_DECREF( tmp_call_arg_element_44 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129813 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1255; goto frame_exception_exit_1; } tmp_subscr_subscript_25 = const_str_plain_coutput; tmp_call_arg_element_45 = LOOKUP_SUBSCRIPT( tmp_subscr_target_25, tmp_subscr_subscript_25 ); if ( tmp_call_arg_element_45 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_34 ); Py_DECREF( tmp_call_arg_element_44 ); frame_function->f_lineno = 1255; goto frame_exception_exit_1; } frame_function->f_lineno = 1255; tmp_assign_source_83 = CALL_FUNCTION_WITH_ARGS2( tmp_called_34, tmp_call_arg_element_44, tmp_call_arg_element_45 ); Py_DECREF( tmp_called_34 ); Py_DECREF( tmp_call_arg_element_44 ); Py_DECREF( tmp_call_arg_element_45 ); if ( tmp_assign_source_83 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1255; goto frame_exception_exit_1; } assert( var_fn.object == NULL ); var_fn.object = tmp_assign_source_83; tmp_ass_subvalue_4 = var_fn.object; tmp_ass_subscribed_4 = var_ret.object; if ( tmp_ass_subscribed_4 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 38779 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1256; goto frame_exception_exit_1; } tmp_ass_subscript_4 = const_str_plain_csrc; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_4, tmp_ass_subscript_4, tmp_ass_subvalue_4 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1256; goto frame_exception_exit_1; } tmp_open_filename_1 = var_fn.object; tmp_open_mode_1 = const_str_plain_w; tmp_assign_source_84 = BUILTIN_OPEN( tmp_open_filename_1, tmp_open_mode_1, NULL ); if ( tmp_assign_source_84 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1257; goto frame_exception_exit_1; } assert( var_f.object == NULL ); var_f.object = tmp_assign_source_84; tmp_source_name_37 = var_f.object; tmp_called_35 = LOOKUP_ATTRIBUTE( tmp_source_name_37, const_str_plain_write ); if ( tmp_called_35 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1258; goto frame_exception_exit_1; } tmp_subscr_target_26 = var_ar.object; tmp_subscr_subscript_26 = const_str_plain_modulebody; tmp_source_name_38 = LOOKUP_SUBSCRIPT( tmp_subscr_target_26, tmp_subscr_subscript_26 ); if ( tmp_source_name_38 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_35 ); frame_function->f_lineno = 1258; goto frame_exception_exit_1; } tmp_called_36 = LOOKUP_ATTRIBUTE( tmp_source_name_38, const_str_plain_replace ); Py_DECREF( tmp_source_name_38 ); if ( tmp_called_36 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_35 ); frame_function->f_lineno = 1258; goto frame_exception_exit_1; } tmp_call_arg_element_47 = const_str_chr_9; tmp_call_arg_element_48 = const_str_digest_23b58def11b45727d3351702515f86af; frame_function->f_lineno = 1258; tmp_call_arg_element_46 = CALL_FUNCTION_WITH_ARGS2( tmp_called_36, tmp_call_arg_element_47, tmp_call_arg_element_48 ); Py_DECREF( tmp_called_36 ); if ( tmp_call_arg_element_46 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_35 ); frame_function->f_lineno = 1258; goto frame_exception_exit_1; } frame_function->f_lineno = 1258; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_35, tmp_call_arg_element_46 ); Py_DECREF( tmp_called_35 ); Py_DECREF( tmp_call_arg_element_46 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1258; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_source_name_39 = var_f.object; tmp_called_37 = LOOKUP_ATTRIBUTE( tmp_source_name_39, const_str_plain_close ); if ( tmp_called_37 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1259; goto frame_exception_exit_1; } frame_function->f_lineno = 1259; tmp_unused = CALL_FUNCTION_NO_ARGS( tmp_called_37 ); Py_DECREF( tmp_called_37 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1259; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_called_38 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_outmess ); if (unlikely( tmp_called_38 == NULL )) { tmp_called_38 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_outmess ); } if ( tmp_called_38 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125154 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1260; goto frame_exception_exit_1; } tmp_binop_left_4 = const_str_digest_cda50241a18adb04de807208df21a568; tmp_binop_right_4 = PyTuple_New( 2 ); tmp_subscr_target_27 = par_m.object; if ( tmp_subscr_target_27 == NULL ) { Py_DECREF( tmp_binop_right_4 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 13535 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1260; goto frame_exception_exit_1; } tmp_subscr_subscript_27 = const_str_plain_name; tmp_tuple_element_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_27, tmp_subscr_subscript_27 ); if ( tmp_tuple_element_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_binop_right_4 ); frame_function->f_lineno = 1260; goto frame_exception_exit_1; } PyTuple_SET_ITEM( tmp_binop_right_4, 0, tmp_tuple_element_1 ); tmp_tuple_element_1 = var_fn.object; Py_INCREF( tmp_tuple_element_1 ); PyTuple_SET_ITEM( tmp_binop_right_4, 1, tmp_tuple_element_1 ); tmp_call_arg_element_49 = BINARY_OPERATION_REMAINDER( tmp_binop_left_4, tmp_binop_right_4 ); Py_DECREF( tmp_binop_right_4 ); if ( tmp_call_arg_element_49 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1260; goto frame_exception_exit_1; } frame_function->f_lineno = 1260; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_38, tmp_call_arg_element_49 ); Py_DECREF( tmp_call_arg_element_49 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1260; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_subscr_target_28 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_options ); if (unlikely( tmp_subscr_target_28 == NULL )) { tmp_subscr_target_28 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_options ); } if ( tmp_subscr_target_28 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124432 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1262; goto frame_exception_exit_1; } tmp_subscr_subscript_28 = const_str_plain_dorestdoc; tmp_cond_value_9 = LOOKUP_SUBSCRIPT( tmp_subscr_target_28, tmp_subscr_subscript_28 ); if ( tmp_cond_value_9 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1262; goto frame_exception_exit_1; } tmp_cond_truth_9 = CHECK_IF_TRUE( tmp_cond_value_9 ); if ( tmp_cond_truth_9 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_cond_value_9 ); frame_function->f_lineno = 1262; goto frame_exception_exit_1; } Py_DECREF( tmp_cond_value_9 ); if (tmp_cond_truth_9 == 1) { goto branch_yes_20; } else { goto branch_no_20; } branch_yes_20:; tmp_source_name_41 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_os ); if (unlikely( tmp_source_name_41 == NULL )) { tmp_source_name_41 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_os ); } if ( tmp_source_name_41 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 6460 ], 31, 0 ); exception_tb = NULL; frame_function->f_lineno = 1263; goto frame_exception_exit_1; } tmp_source_name_40 = LOOKUP_ATTRIBUTE( tmp_source_name_41, const_str_plain_path ); if ( tmp_source_name_40 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1263; goto frame_exception_exit_1; } tmp_called_39 = LOOKUP_ATTRIBUTE( tmp_source_name_40, const_str_plain_join ); Py_DECREF( tmp_source_name_40 ); if ( tmp_called_39 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1263; goto frame_exception_exit_1; } tmp_subscr_target_29 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_options ); if (unlikely( tmp_subscr_target_29 == NULL )) { tmp_subscr_target_29 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_options ); } if ( tmp_subscr_target_29 == NULL ) { Py_DECREF( tmp_called_39 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124432 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1263; goto frame_exception_exit_1; } tmp_subscr_subscript_29 = const_str_plain_buildpath; tmp_call_arg_element_50 = LOOKUP_SUBSCRIPT( tmp_subscr_target_29, tmp_subscr_subscript_29 ); if ( tmp_call_arg_element_50 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_39 ); frame_function->f_lineno = 1263; goto frame_exception_exit_1; } tmp_subscr_target_30 = var_vrd.object; if ( tmp_subscr_target_30 == NULL ) { Py_DECREF( tmp_called_39 ); Py_DECREF( tmp_call_arg_element_50 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129813 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1263; goto frame_exception_exit_1; } tmp_subscr_subscript_30 = const_str_plain_modulename; tmp_binop_left_5 = LOOKUP_SUBSCRIPT( tmp_subscr_target_30, tmp_subscr_subscript_30 ); if ( tmp_binop_left_5 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_39 ); Py_DECREF( tmp_call_arg_element_50 ); frame_function->f_lineno = 1263; goto frame_exception_exit_1; } tmp_binop_right_5 = const_str_digest_71830f14f0828044f06e530273435a27; tmp_call_arg_element_51 = BINARY_OPERATION_ADD( tmp_binop_left_5, tmp_binop_right_5 ); Py_DECREF( tmp_binop_left_5 ); if ( tmp_call_arg_element_51 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_39 ); Py_DECREF( tmp_call_arg_element_50 ); frame_function->f_lineno = 1263; goto frame_exception_exit_1; } frame_function->f_lineno = 1263; tmp_assign_source_85 = CALL_FUNCTION_WITH_ARGS2( tmp_called_39, tmp_call_arg_element_50, tmp_call_arg_element_51 ); Py_DECREF( tmp_called_39 ); Py_DECREF( tmp_call_arg_element_50 ); Py_DECREF( tmp_call_arg_element_51 ); if ( tmp_assign_source_85 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1263; goto frame_exception_exit_1; } assert( var_fn.object != NULL ); { PyObject *old = var_fn.object; var_fn.object = tmp_assign_source_85; Py_DECREF( old ); } tmp_open_filename_2 = var_fn.object; tmp_open_mode_2 = const_str_plain_w; tmp_assign_source_86 = BUILTIN_OPEN( tmp_open_filename_2, tmp_open_mode_2, NULL ); if ( tmp_assign_source_86 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1264; goto frame_exception_exit_1; } assert( var_f.object != NULL ); { PyObject *old = var_f.object; var_f.object = tmp_assign_source_86; Py_DECREF( old ); } tmp_source_name_42 = var_f.object; tmp_called_40 = LOOKUP_ATTRIBUTE( tmp_source_name_42, const_str_plain_write ); if ( tmp_called_40 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1265; goto frame_exception_exit_1; } tmp_call_arg_element_52 = const_str_digest_c32335831cabcefadffa803ef4902569; frame_function->f_lineno = 1265; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_40, tmp_call_arg_element_52 ); Py_DECREF( tmp_called_40 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1265; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_source_name_43 = var_f.object; tmp_called_41 = LOOKUP_ATTRIBUTE( tmp_source_name_43, const_str_plain_write ); if ( tmp_called_41 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1266; goto frame_exception_exit_1; } tmp_source_name_44 = const_str_newline; tmp_called_42 = LOOKUP_ATTRIBUTE( tmp_source_name_44, const_str_plain_join ); if ( tmp_called_42 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_41 ); frame_function->f_lineno = 1266; goto frame_exception_exit_1; } tmp_subscr_target_31 = var_ar.object; tmp_subscr_subscript_31 = const_str_plain_restdoc; tmp_call_arg_element_54 = LOOKUP_SUBSCRIPT( tmp_subscr_target_31, tmp_subscr_subscript_31 ); if ( tmp_call_arg_element_54 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_41 ); Py_DECREF( tmp_called_42 ); frame_function->f_lineno = 1266; goto frame_exception_exit_1; } frame_function->f_lineno = 1266; tmp_call_arg_element_53 = CALL_FUNCTION_WITH_ARGS1( tmp_called_42, tmp_call_arg_element_54 ); Py_DECREF( tmp_called_42 ); Py_DECREF( tmp_call_arg_element_54 ); if ( tmp_call_arg_element_53 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_41 ); frame_function->f_lineno = 1266; goto frame_exception_exit_1; } frame_function->f_lineno = 1266; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_41, tmp_call_arg_element_53 ); Py_DECREF( tmp_called_41 ); Py_DECREF( tmp_call_arg_element_53 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1266; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_source_name_45 = var_f.object; tmp_called_43 = LOOKUP_ATTRIBUTE( tmp_source_name_45, const_str_plain_close ); if ( tmp_called_43 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1267; goto frame_exception_exit_1; } frame_function->f_lineno = 1267; tmp_unused = CALL_FUNCTION_NO_ARGS( tmp_called_43 ); Py_DECREF( tmp_called_43 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1267; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_called_44 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_outmess ); if (unlikely( tmp_called_44 == NULL )) { tmp_called_44 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_outmess ); } if ( tmp_called_44 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125154 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1268; goto frame_exception_exit_1; } tmp_binop_left_6 = const_str_digest_e38fb2055690700b05e7284ed8a85e3c; tmp_binop_right_6 = PyTuple_New( 2 ); tmp_subscr_target_32 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_options ); if (unlikely( tmp_subscr_target_32 == NULL )) { tmp_subscr_target_32 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_options ); } if ( tmp_subscr_target_32 == NULL ) { Py_DECREF( tmp_binop_right_6 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124432 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1268; goto frame_exception_exit_1; } tmp_subscr_subscript_32 = const_str_plain_buildpath; tmp_tuple_element_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_32, tmp_subscr_subscript_32 ); if ( tmp_tuple_element_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_binop_right_6 ); frame_function->f_lineno = 1268; goto frame_exception_exit_1; } PyTuple_SET_ITEM( tmp_binop_right_6, 0, tmp_tuple_element_2 ); tmp_subscr_target_33 = var_vrd.object; if ( tmp_subscr_target_33 == NULL ) { Py_DECREF( tmp_binop_right_6 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129813 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1268; goto frame_exception_exit_1; } tmp_subscr_subscript_33 = const_str_plain_modulename; tmp_tuple_element_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_33, tmp_subscr_subscript_33 ); if ( tmp_tuple_element_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_binop_right_6 ); frame_function->f_lineno = 1268; goto frame_exception_exit_1; } PyTuple_SET_ITEM( tmp_binop_right_6, 1, tmp_tuple_element_2 ); tmp_call_arg_element_55 = BINARY_OPERATION_REMAINDER( tmp_binop_left_6, tmp_binop_right_6 ); Py_DECREF( tmp_binop_right_6 ); if ( tmp_call_arg_element_55 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1268; goto frame_exception_exit_1; } frame_function->f_lineno = 1268; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_44, tmp_call_arg_element_55 ); Py_DECREF( tmp_call_arg_element_55 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1268; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); branch_no_20:; tmp_subscr_target_34 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_options ); if (unlikely( tmp_subscr_target_34 == NULL )) { tmp_subscr_target_34 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_options ); } if ( tmp_subscr_target_34 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124432 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1269; goto frame_exception_exit_1; } tmp_subscr_subscript_34 = const_str_plain_dolatexdoc; tmp_cond_value_10 = LOOKUP_SUBSCRIPT( tmp_subscr_target_34, tmp_subscr_subscript_34 ); if ( tmp_cond_value_10 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1269; goto frame_exception_exit_1; } tmp_cond_truth_10 = CHECK_IF_TRUE( tmp_cond_value_10 ); if ( tmp_cond_truth_10 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_cond_value_10 ); frame_function->f_lineno = 1269; goto frame_exception_exit_1; } Py_DECREF( tmp_cond_value_10 ); if (tmp_cond_truth_10 == 1) { goto branch_yes_21; } else { goto branch_no_21; } branch_yes_21:; tmp_source_name_47 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_os ); if (unlikely( tmp_source_name_47 == NULL )) { tmp_source_name_47 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_os ); } if ( tmp_source_name_47 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 6460 ], 31, 0 ); exception_tb = NULL; frame_function->f_lineno = 1270; goto frame_exception_exit_1; } tmp_source_name_46 = LOOKUP_ATTRIBUTE( tmp_source_name_47, const_str_plain_path ); if ( tmp_source_name_46 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1270; goto frame_exception_exit_1; } tmp_called_45 = LOOKUP_ATTRIBUTE( tmp_source_name_46, const_str_plain_join ); Py_DECREF( tmp_source_name_46 ); if ( tmp_called_45 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1270; goto frame_exception_exit_1; } tmp_subscr_target_35 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_options ); if (unlikely( tmp_subscr_target_35 == NULL )) { tmp_subscr_target_35 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_options ); } if ( tmp_subscr_target_35 == NULL ) { Py_DECREF( tmp_called_45 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124432 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1270; goto frame_exception_exit_1; } tmp_subscr_subscript_35 = const_str_plain_buildpath; tmp_call_arg_element_56 = LOOKUP_SUBSCRIPT( tmp_subscr_target_35, tmp_subscr_subscript_35 ); if ( tmp_call_arg_element_56 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_45 ); frame_function->f_lineno = 1270; goto frame_exception_exit_1; } tmp_subscr_target_36 = var_vrd.object; if ( tmp_subscr_target_36 == NULL ) { Py_DECREF( tmp_called_45 ); Py_DECREF( tmp_call_arg_element_56 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129813 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1270; goto frame_exception_exit_1; } tmp_subscr_subscript_36 = const_str_plain_modulename; tmp_binop_left_7 = LOOKUP_SUBSCRIPT( tmp_subscr_target_36, tmp_subscr_subscript_36 ); if ( tmp_binop_left_7 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_45 ); Py_DECREF( tmp_call_arg_element_56 ); frame_function->f_lineno = 1270; goto frame_exception_exit_1; } tmp_binop_right_7 = const_str_digest_dbf10af0e37c0956cfea856a5a4357de; tmp_call_arg_element_57 = BINARY_OPERATION_ADD( tmp_binop_left_7, tmp_binop_right_7 ); Py_DECREF( tmp_binop_left_7 ); if ( tmp_call_arg_element_57 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_45 ); Py_DECREF( tmp_call_arg_element_56 ); frame_function->f_lineno = 1270; goto frame_exception_exit_1; } frame_function->f_lineno = 1270; tmp_assign_source_87 = CALL_FUNCTION_WITH_ARGS2( tmp_called_45, tmp_call_arg_element_56, tmp_call_arg_element_57 ); Py_DECREF( tmp_called_45 ); Py_DECREF( tmp_call_arg_element_56 ); Py_DECREF( tmp_call_arg_element_57 ); if ( tmp_assign_source_87 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1270; goto frame_exception_exit_1; } assert( var_fn.object != NULL ); { PyObject *old = var_fn.object; var_fn.object = tmp_assign_source_87; Py_DECREF( old ); } tmp_ass_subvalue_5 = var_fn.object; tmp_ass_subscribed_5 = var_ret.object; if ( tmp_ass_subscribed_5 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 38779 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1271; goto frame_exception_exit_1; } tmp_ass_subscript_5 = const_str_plain_ltx; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_5, tmp_ass_subscript_5, tmp_ass_subvalue_5 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1271; goto frame_exception_exit_1; } tmp_open_filename_3 = var_fn.object; tmp_open_mode_3 = const_str_plain_w; tmp_assign_source_88 = BUILTIN_OPEN( tmp_open_filename_3, tmp_open_mode_3, NULL ); if ( tmp_assign_source_88 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1272; goto frame_exception_exit_1; } assert( var_f.object != NULL ); { PyObject *old = var_f.object; var_f.object = tmp_assign_source_88; Py_DECREF( old ); } tmp_source_name_48 = var_f.object; tmp_called_46 = LOOKUP_ATTRIBUTE( tmp_source_name_48, const_str_plain_write ); if ( tmp_called_46 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1273; goto frame_exception_exit_1; } tmp_binop_left_8 = const_str_digest_5b2f1fd139d7c2fa41a3bd15052f7cc6; tmp_binop_right_8 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_f2py_version ); if (unlikely( tmp_binop_right_8 == NULL )) { tmp_binop_right_8 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_f2py_version ); } if ( tmp_binop_right_8 == NULL ) { Py_DECREF( tmp_called_46 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 144933 ], 41, 0 ); exception_tb = NULL; frame_function->f_lineno = 1273; goto frame_exception_exit_1; } tmp_call_arg_element_58 = BINARY_OPERATION_REMAINDER( tmp_binop_left_8, tmp_binop_right_8 ); if ( tmp_call_arg_element_58 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_46 ); frame_function->f_lineno = 1273; goto frame_exception_exit_1; } frame_function->f_lineno = 1273; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_46, tmp_call_arg_element_58 ); Py_DECREF( tmp_called_46 ); Py_DECREF( tmp_call_arg_element_58 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1273; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_compare_left_14 = const_str_plain_shortlatex; tmp_compare_right_14 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_options ); if (unlikely( tmp_compare_right_14 == NULL )) { tmp_compare_right_14 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_options ); } if ( tmp_compare_right_14 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124432 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1274; goto frame_exception_exit_1; } tmp_cmp_NotIn_1 = PySequence_Contains( tmp_compare_right_14, tmp_compare_left_14 ); if ( tmp_cmp_NotIn_1 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1274; goto frame_exception_exit_1; } if (tmp_cmp_NotIn_1 == 0) { goto branch_yes_22; } else { goto branch_no_22; } branch_yes_22:; tmp_source_name_49 = var_f.object; tmp_called_47 = LOOKUP_ATTRIBUTE( tmp_source_name_49, const_str_plain_write ); if ( tmp_called_47 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1275; goto frame_exception_exit_1; } tmp_call_arg_element_59 = const_str_digest_fba1625b3c6ce450ca640bc284d80373; frame_function->f_lineno = 1275; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_47, tmp_call_arg_element_59 ); Py_DECREF( tmp_called_47 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1275; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); branch_no_22:; tmp_source_name_50 = var_f.object; tmp_called_48 = LOOKUP_ATTRIBUTE( tmp_source_name_50, const_str_plain_write ); if ( tmp_called_48 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1276; goto frame_exception_exit_1; } tmp_source_name_51 = const_str_newline; tmp_called_49 = LOOKUP_ATTRIBUTE( tmp_source_name_51, const_str_plain_join ); if ( tmp_called_49 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_48 ); frame_function->f_lineno = 1276; goto frame_exception_exit_1; } tmp_subscr_target_37 = var_ar.object; tmp_subscr_subscript_37 = const_str_plain_latexdoc; tmp_call_arg_element_61 = LOOKUP_SUBSCRIPT( tmp_subscr_target_37, tmp_subscr_subscript_37 ); if ( tmp_call_arg_element_61 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_48 ); Py_DECREF( tmp_called_49 ); frame_function->f_lineno = 1276; goto frame_exception_exit_1; } frame_function->f_lineno = 1276; tmp_call_arg_element_60 = CALL_FUNCTION_WITH_ARGS1( tmp_called_49, tmp_call_arg_element_61 ); Py_DECREF( tmp_called_49 ); Py_DECREF( tmp_call_arg_element_61 ); if ( tmp_call_arg_element_60 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_48 ); frame_function->f_lineno = 1276; goto frame_exception_exit_1; } frame_function->f_lineno = 1276; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_48, tmp_call_arg_element_60 ); Py_DECREF( tmp_called_48 ); Py_DECREF( tmp_call_arg_element_60 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1276; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_compare_left_15 = const_str_plain_shortlatex; tmp_compare_right_15 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_options ); if (unlikely( tmp_compare_right_15 == NULL )) { tmp_compare_right_15 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_options ); } if ( tmp_compare_right_15 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124432 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1277; goto frame_exception_exit_1; } tmp_cmp_NotIn_2 = PySequence_Contains( tmp_compare_right_15, tmp_compare_left_15 ); if ( tmp_cmp_NotIn_2 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1277; goto frame_exception_exit_1; } if (tmp_cmp_NotIn_2 == 0) { goto branch_yes_23; } else { goto branch_no_23; } branch_yes_23:; tmp_source_name_52 = var_f.object; tmp_called_50 = LOOKUP_ATTRIBUTE( tmp_source_name_52, const_str_plain_write ); if ( tmp_called_50 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1278; goto frame_exception_exit_1; } tmp_call_arg_element_62 = const_str_digest_5e3bedeaeb5deb1039acf2ed98489637; frame_function->f_lineno = 1278; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_50, tmp_call_arg_element_62 ); Py_DECREF( tmp_called_50 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1278; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); branch_no_23:; tmp_source_name_53 = var_f.object; tmp_called_51 = LOOKUP_ATTRIBUTE( tmp_source_name_53, const_str_plain_close ); if ( tmp_called_51 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1279; goto frame_exception_exit_1; } frame_function->f_lineno = 1279; tmp_unused = CALL_FUNCTION_NO_ARGS( tmp_called_51 ); Py_DECREF( tmp_called_51 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1279; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_called_52 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_outmess ); if (unlikely( tmp_called_52 == NULL )) { tmp_called_52 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_outmess ); } if ( tmp_called_52 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125154 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1280; goto frame_exception_exit_1; } tmp_binop_left_9 = const_str_digest_d232384ee4b96c9afbc24157d4303e41; tmp_binop_right_9 = PyTuple_New( 2 ); tmp_subscr_target_38 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_options ); if (unlikely( tmp_subscr_target_38 == NULL )) { tmp_subscr_target_38 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_options ); } if ( tmp_subscr_target_38 == NULL ) { Py_DECREF( tmp_binop_right_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124432 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1280; goto frame_exception_exit_1; } tmp_subscr_subscript_38 = const_str_plain_buildpath; tmp_tuple_element_3 = LOOKUP_SUBSCRIPT( tmp_subscr_target_38, tmp_subscr_subscript_38 ); if ( tmp_tuple_element_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_binop_right_9 ); frame_function->f_lineno = 1280; goto frame_exception_exit_1; } PyTuple_SET_ITEM( tmp_binop_right_9, 0, tmp_tuple_element_3 ); tmp_subscr_target_39 = var_vrd.object; if ( tmp_subscr_target_39 == NULL ) { Py_DECREF( tmp_binop_right_9 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129813 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1280; goto frame_exception_exit_1; } tmp_subscr_subscript_39 = const_str_plain_modulename; tmp_tuple_element_3 = LOOKUP_SUBSCRIPT( tmp_subscr_target_39, tmp_subscr_subscript_39 ); if ( tmp_tuple_element_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_binop_right_9 ); frame_function->f_lineno = 1280; goto frame_exception_exit_1; } PyTuple_SET_ITEM( tmp_binop_right_9, 1, tmp_tuple_element_3 ); tmp_call_arg_element_63 = BINARY_OPERATION_REMAINDER( tmp_binop_left_9, tmp_binop_right_9 ); Py_DECREF( tmp_binop_right_9 ); if ( tmp_call_arg_element_63 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1280; goto frame_exception_exit_1; } frame_function->f_lineno = 1280; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_52, tmp_call_arg_element_63 ); Py_DECREF( tmp_call_arg_element_63 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1280; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); branch_no_21:; tmp_cond_value_11 = var_funcwrappers.object; if ( tmp_cond_value_11 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151753 ], 58, 0 ); exception_tb = NULL; frame_function->f_lineno = 1281; goto frame_exception_exit_1; } tmp_cond_truth_11 = CHECK_IF_TRUE( tmp_cond_value_11 ); if ( tmp_cond_truth_11 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1281; goto frame_exception_exit_1; } if (tmp_cond_truth_11 == 1) { goto branch_yes_24; } else { goto branch_no_24; } branch_yes_24:; tmp_source_name_55 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_os ); if (unlikely( tmp_source_name_55 == NULL )) { tmp_source_name_55 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_os ); } if ( tmp_source_name_55 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 6460 ], 31, 0 ); exception_tb = NULL; frame_function->f_lineno = 1282; goto frame_exception_exit_1; } tmp_source_name_54 = LOOKUP_ATTRIBUTE( tmp_source_name_55, const_str_plain_path ); if ( tmp_source_name_54 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1282; goto frame_exception_exit_1; } tmp_called_53 = LOOKUP_ATTRIBUTE( tmp_source_name_54, const_str_plain_join ); Py_DECREF( tmp_source_name_54 ); if ( tmp_called_53 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1282; goto frame_exception_exit_1; } tmp_subscr_target_40 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_options ); if (unlikely( tmp_subscr_target_40 == NULL )) { tmp_subscr_target_40 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_options ); } if ( tmp_subscr_target_40 == NULL ) { Py_DECREF( tmp_called_53 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124432 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1282; goto frame_exception_exit_1; } tmp_subscr_subscript_40 = const_str_plain_buildpath; tmp_call_arg_element_64 = LOOKUP_SUBSCRIPT( tmp_subscr_target_40, tmp_subscr_subscript_40 ); if ( tmp_call_arg_element_64 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_53 ); frame_function->f_lineno = 1282; goto frame_exception_exit_1; } tmp_subscr_target_41 = var_vrd.object; if ( tmp_subscr_target_41 == NULL ) { Py_DECREF( tmp_called_53 ); Py_DECREF( tmp_call_arg_element_64 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129813 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1282; goto frame_exception_exit_1; } tmp_subscr_subscript_41 = const_str_plain_f2py_wrapper_output; tmp_call_arg_element_65 = LOOKUP_SUBSCRIPT( tmp_subscr_target_41, tmp_subscr_subscript_41 ); if ( tmp_call_arg_element_65 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_53 ); Py_DECREF( tmp_call_arg_element_64 ); frame_function->f_lineno = 1282; goto frame_exception_exit_1; } frame_function->f_lineno = 1282; tmp_assign_source_89 = CALL_FUNCTION_WITH_ARGS2( tmp_called_53, tmp_call_arg_element_64, tmp_call_arg_element_65 ); Py_DECREF( tmp_called_53 ); Py_DECREF( tmp_call_arg_element_64 ); Py_DECREF( tmp_call_arg_element_65 ); if ( tmp_assign_source_89 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1282; goto frame_exception_exit_1; } assert( var_wn.object == NULL ); var_wn.object = tmp_assign_source_89; tmp_ass_subvalue_6 = var_wn.object; tmp_ass_subscribed_6 = var_ret.object; if ( tmp_ass_subscribed_6 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 38779 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1283; goto frame_exception_exit_1; } tmp_ass_subscript_6 = const_str_plain_fsrc; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_6, tmp_ass_subscript_6, tmp_ass_subvalue_6 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1283; goto frame_exception_exit_1; } tmp_open_filename_4 = var_wn.object; tmp_open_mode_4 = const_str_plain_w; tmp_assign_source_90 = BUILTIN_OPEN( tmp_open_filename_4, tmp_open_mode_4, NULL ); if ( tmp_assign_source_90 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1284; goto frame_exception_exit_1; } if (var_f.object == NULL) { var_f.object = tmp_assign_source_90; } else { PyObject *old = var_f.object; var_f.object = tmp_assign_source_90; Py_DECREF( old ); } tmp_source_name_56 = var_f.object; tmp_called_54 = LOOKUP_ATTRIBUTE( tmp_source_name_56, const_str_plain_write ); if ( tmp_called_54 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1285; goto frame_exception_exit_1; } tmp_call_arg_element_66 = const_str_digest_fde8d015bd498e7e13c01750c46677b5; frame_function->f_lineno = 1285; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_54, tmp_call_arg_element_66 ); Py_DECREF( tmp_called_54 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1285; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_source_name_57 = var_f.object; tmp_called_55 = LOOKUP_ATTRIBUTE( tmp_source_name_57, const_str_plain_write ); if ( tmp_called_55 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1286; goto frame_exception_exit_1; } tmp_binop_left_10 = const_str_digest_d8eb3b4b1075e21ea19c37046b527fe3; tmp_binop_right_10 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_f2py_version ); if (unlikely( tmp_binop_right_10 == NULL )) { tmp_binop_right_10 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_f2py_version ); } if ( tmp_binop_right_10 == NULL ) { Py_DECREF( tmp_called_55 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 144933 ], 41, 0 ); exception_tb = NULL; frame_function->f_lineno = 1286; goto frame_exception_exit_1; } tmp_call_arg_element_67 = BINARY_OPERATION_REMAINDER( tmp_binop_left_10, tmp_binop_right_10 ); if ( tmp_call_arg_element_67 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_55 ); frame_function->f_lineno = 1286; goto frame_exception_exit_1; } frame_function->f_lineno = 1286; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_55, tmp_call_arg_element_67 ); Py_DECREF( tmp_called_55 ); Py_DECREF( tmp_call_arg_element_67 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1286; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_source_name_58 = var_f.object; tmp_called_56 = LOOKUP_ATTRIBUTE( tmp_source_name_58, const_str_plain_write ); if ( tmp_called_56 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1287; goto frame_exception_exit_1; } tmp_call_arg_element_68 = const_str_digest_64c014c101de059e40ab2098f7c02568; frame_function->f_lineno = 1287; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_56, tmp_call_arg_element_68 ); Py_DECREF( tmp_called_56 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1287; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_assign_source_91 = PyList_New( 0 ); assert( var_lines.object == NULL ); var_lines.object = tmp_assign_source_91; tmp_source_name_60 = const_str_digest_e1c06d85ae7b8b032bef47e42e4c08f9; tmp_called_58 = LOOKUP_ATTRIBUTE( tmp_source_name_60, const_str_plain_join ); if ( tmp_called_58 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1289; goto frame_exception_exit_1; } tmp_call_arg_element_69 = var_funcwrappers.object; if ( tmp_call_arg_element_69 == NULL ) { Py_DECREF( tmp_called_58 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151753 ], 58, 0 ); exception_tb = NULL; frame_function->f_lineno = 1289; goto frame_exception_exit_1; } frame_function->f_lineno = 1289; tmp_binop_left_11 = CALL_FUNCTION_WITH_ARGS1( tmp_called_58, tmp_call_arg_element_69 ); Py_DECREF( tmp_called_58 ); if ( tmp_binop_left_11 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1289; goto frame_exception_exit_1; } tmp_binop_right_11 = const_str_newline; tmp_source_name_59 = BINARY_OPERATION_ADD( tmp_binop_left_11, tmp_binop_right_11 ); Py_DECREF( tmp_binop_left_11 ); if ( tmp_source_name_59 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1289; goto frame_exception_exit_1; } tmp_called_57 = LOOKUP_ATTRIBUTE( tmp_source_name_59, const_str_plain_split ); Py_DECREF( tmp_source_name_59 ); if ( tmp_called_57 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1289; goto frame_exception_exit_1; } tmp_call_arg_element_70 = const_str_newline; frame_function->f_lineno = 1289; tmp_iter_arg_14 = CALL_FUNCTION_WITH_ARGS1( tmp_called_57, tmp_call_arg_element_70 ); Py_DECREF( tmp_called_57 ); if ( tmp_iter_arg_14 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1289; goto frame_exception_exit_1; } tmp_assign_source_92 = MAKE_ITERATOR( tmp_iter_arg_14 ); Py_DECREF( tmp_iter_arg_14 ); if ( tmp_assign_source_92 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1289; goto frame_exception_exit_1; } assert( tmp_for_loop_10__for_iterator.object == NULL ); tmp_for_loop_10__for_iterator.object = tmp_assign_source_92; // Tried code loop_start_10:; tmp_next_source_10 = tmp_for_loop_10__for_iterator.object; tmp_assign_source_93 = ITERATOR_NEXT( tmp_next_source_10 ); if (tmp_assign_source_93 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_10; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1289; goto try_finally_handler_20; } } if (tmp_for_loop_10__iter_value.object == NULL) { tmp_for_loop_10__iter_value.object = tmp_assign_source_93; } else { PyObject *old = tmp_for_loop_10__iter_value.object; tmp_for_loop_10__iter_value.object = tmp_assign_source_93; Py_DECREF( old ); } tmp_assign_source_94 = tmp_for_loop_10__iter_value.object; if (var_l.object == NULL) { var_l.object = INCREASE_REFCOUNT( tmp_assign_source_94 ); } else { PyObject *old = var_l.object; var_l.object = INCREASE_REFCOUNT( tmp_assign_source_94 ); Py_DECREF( old ); } // Tried code tmp_cond_value_12 = NULL; // Tried code tmp_assign_source_95 = var_l.object; if (tmp_and_2__value_1.object == NULL) { tmp_and_2__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_95 ); } else { PyObject *old = tmp_and_2__value_1.object; tmp_and_2__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_95 ); Py_DECREF( old ); } tmp_cond_value_13 = tmp_and_2__value_1.object; tmp_cond_truth_13 = CHECK_IF_TRUE( tmp_cond_value_13 ); if ( tmp_cond_truth_13 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1290; goto try_finally_handler_22; } if (tmp_cond_truth_13 == 1) { goto condexpr_true_3; } else { goto condexpr_false_3; } condexpr_true_3:; tmp_cond_value_12 = NULL; // Tried code tmp_result = tmp_and_2__value_1.object != NULL; if ( tmp_result == true ) { Py_DECREF( tmp_and_2__value_1.object ); tmp_and_2__value_1.object = NULL; } assert( tmp_result != false ); tmp_subscr_target_42 = var_l.object; tmp_subscr_subscript_42 = const_int_0; tmp_compexpr_left_3 = LOOKUP_SUBSCRIPT( tmp_subscr_target_42, tmp_subscr_subscript_42 ); if ( tmp_compexpr_left_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1290; goto try_finally_handler_23; } tmp_compexpr_right_3 = const_str_space; tmp_cond_value_12 = RICH_COMPARE_EQ( tmp_compexpr_left_3, tmp_compexpr_right_3 ); Py_DECREF( tmp_compexpr_left_3 ); if ( tmp_cond_value_12 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1290; goto try_finally_handler_23; } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_23:; exception_keeper_type_20 = exception_type; exception_keeper_value_20 = exception_value; exception_keeper_tb_20 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_20 != NULL ) { exception_type = exception_keeper_type_20; exception_value = exception_keeper_value_20; exception_tb = exception_keeper_tb_20; goto try_finally_handler_22; } goto finally_end_20; finally_end_20:; goto condexpr_end_3; condexpr_false_3:; tmp_cond_value_12 = tmp_and_2__value_1.object; Py_INCREF( tmp_cond_value_12 ); condexpr_end_3:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_22:; exception_keeper_type_21 = exception_type; exception_keeper_value_21 = exception_value; exception_keeper_tb_21 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_21 != NULL ) { exception_type = exception_keeper_type_21; exception_value = exception_keeper_value_21; exception_tb = exception_keeper_tb_21; goto try_finally_handler_21; } goto finally_end_21; finally_end_21:; tmp_cond_truth_12 = CHECK_IF_TRUE( tmp_cond_value_12 ); if ( tmp_cond_truth_12 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_cond_value_12 ); frame_function->f_lineno = 1290; goto try_finally_handler_21; } Py_DECREF( tmp_cond_value_12 ); if (tmp_cond_truth_12 == 1) { goto branch_yes_25; } else { goto branch_no_25; } branch_yes_25:; loop_start_11:; tmp_len_arg_1 = var_l.object; if ( tmp_len_arg_1 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 20276 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1291; goto try_finally_handler_21; } tmp_compare_left_16 = BUILTIN_LEN( tmp_len_arg_1 ); if ( tmp_compare_left_16 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1291; goto try_finally_handler_21; } tmp_compare_right_16 = const_int_pos_66; tmp_cmp_GtE_1 = RICH_COMPARE_BOOL_GE( tmp_compare_left_16, tmp_compare_right_16 ); if ( tmp_cmp_GtE_1 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_compare_left_16 ); frame_function->f_lineno = 1291; goto try_finally_handler_21; } Py_DECREF( tmp_compare_left_16 ); if (tmp_cmp_GtE_1 == 1) { goto branch_no_26; } else { goto branch_yes_26; } branch_yes_26:; goto loop_end_11; branch_no_26:; tmp_source_name_61 = var_lines.object; if ( tmp_source_name_61 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 16411 ], 51, 0 ); exception_tb = NULL; frame_function->f_lineno = 1292; goto try_finally_handler_21; } tmp_called_59 = LOOKUP_ATTRIBUTE( tmp_source_name_61, const_str_plain_append ); if ( tmp_called_59 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1292; goto try_finally_handler_21; } tmp_sliceslicedel_index_lower_2 = 0; tmp_slice_index_upper_2 = 66; tmp_slice_source_2 = var_l.object; if ( tmp_slice_source_2 == NULL ) { Py_DECREF( tmp_called_59 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 20276 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1292; goto try_finally_handler_21; } tmp_binop_left_12 = LOOKUP_INDEX_SLICE( tmp_slice_source_2, tmp_sliceslicedel_index_lower_2, tmp_slice_index_upper_2 ); if ( tmp_binop_left_12 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_59 ); frame_function->f_lineno = 1292; goto try_finally_handler_21; } tmp_binop_right_12 = const_str_digest_d16b4bd4598ec2bdd698c16a87fe77c9; tmp_call_arg_element_71 = BINARY_OPERATION_ADD( tmp_binop_left_12, tmp_binop_right_12 ); Py_DECREF( tmp_binop_left_12 ); if ( tmp_call_arg_element_71 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_59 ); frame_function->f_lineno = 1292; goto try_finally_handler_21; } frame_function->f_lineno = 1292; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_59, tmp_call_arg_element_71 ); Py_DECREF( tmp_called_59 ); Py_DECREF( tmp_call_arg_element_71 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1292; goto try_finally_handler_21; } Py_DECREF( tmp_unused ); tmp_sliceslicedel_index_lower_3 = 66; tmp_slice_index_upper_3 = PY_SSIZE_T_MAX; tmp_slice_source_3 = var_l.object; if ( tmp_slice_source_3 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 20276 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1293; goto try_finally_handler_21; } tmp_assign_source_96 = LOOKUP_INDEX_SLICE( tmp_slice_source_3, tmp_sliceslicedel_index_lower_3, tmp_slice_index_upper_3 ); if ( tmp_assign_source_96 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1293; goto try_finally_handler_21; } if (var_l.object == NULL) { var_l.object = tmp_assign_source_96; } else { PyObject *old = var_l.object; var_l.object = tmp_assign_source_96; Py_DECREF( old ); } if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1291; goto try_finally_handler_21; } goto loop_start_11; loop_end_11:; tmp_source_name_62 = var_lines.object; if ( tmp_source_name_62 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 16411 ], 51, 0 ); exception_tb = NULL; frame_function->f_lineno = 1294; goto try_finally_handler_21; } tmp_called_60 = LOOKUP_ATTRIBUTE( tmp_source_name_62, const_str_plain_append ); if ( tmp_called_60 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1294; goto try_finally_handler_21; } tmp_binop_left_13 = var_l.object; tmp_binop_right_13 = const_str_newline; tmp_call_arg_element_72 = BINARY_OPERATION_ADD( tmp_binop_left_13, tmp_binop_right_13 ); if ( tmp_call_arg_element_72 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_60 ); frame_function->f_lineno = 1294; goto try_finally_handler_21; } frame_function->f_lineno = 1294; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_60, tmp_call_arg_element_72 ); Py_DECREF( tmp_called_60 ); Py_DECREF( tmp_call_arg_element_72 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1294; goto try_finally_handler_21; } Py_DECREF( tmp_unused ); goto branch_end_25; branch_no_25:; tmp_source_name_63 = var_lines.object; if ( tmp_source_name_63 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 16411 ], 51, 0 ); exception_tb = NULL; frame_function->f_lineno = 1295; goto try_finally_handler_21; } tmp_called_61 = LOOKUP_ATTRIBUTE( tmp_source_name_63, const_str_plain_append ); if ( tmp_called_61 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1295; goto try_finally_handler_21; } tmp_binop_left_14 = var_l.object; if ( tmp_binop_left_14 == NULL ) { Py_DECREF( tmp_called_61 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 20276 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1295; goto try_finally_handler_21; } tmp_binop_right_14 = const_str_newline; tmp_call_arg_element_73 = BINARY_OPERATION_ADD( tmp_binop_left_14, tmp_binop_right_14 ); if ( tmp_call_arg_element_73 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_61 ); frame_function->f_lineno = 1295; goto try_finally_handler_21; } frame_function->f_lineno = 1295; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_61, tmp_call_arg_element_73 ); Py_DECREF( tmp_called_61 ); Py_DECREF( tmp_call_arg_element_73 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1295; goto try_finally_handler_21; } Py_DECREF( tmp_unused ); branch_end_25:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_21:; exception_keeper_type_22 = exception_type; exception_keeper_value_22 = exception_value; exception_keeper_tb_22 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_16 = frame_function->f_lineno; Py_XDECREF( tmp_and_2__value_1.object ); tmp_and_2__value_1.object = NULL; frame_function->f_lineno = tmp_tried_lineno_16; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_22 != NULL ) { exception_type = exception_keeper_type_22; exception_value = exception_keeper_value_22; exception_tb = exception_keeper_tb_22; goto try_finally_handler_20; } goto finally_end_22; finally_end_22:; if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1289; goto try_finally_handler_20; } goto loop_start_10; loop_end_10:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_20:; exception_keeper_type_23 = exception_type; exception_keeper_value_23 = exception_value; exception_keeper_tb_23 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_17 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_10__iter_value.object ); tmp_for_loop_10__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_10__for_iterator.object ); tmp_for_loop_10__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_17; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_23 != NULL ) { exception_type = exception_keeper_type_23; exception_value = exception_keeper_value_23; exception_tb = exception_keeper_tb_23; goto frame_exception_exit_1; } goto finally_end_23; finally_end_23:; tmp_source_name_65 = const_str_empty; tmp_called_63 = LOOKUP_ATTRIBUTE( tmp_source_name_65, const_str_plain_join ); if ( tmp_called_63 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1296; goto frame_exception_exit_1; } tmp_call_arg_element_74 = var_lines.object; if ( tmp_call_arg_element_74 == NULL ) { Py_DECREF( tmp_called_63 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 16411 ], 51, 0 ); exception_tb = NULL; frame_function->f_lineno = 1296; goto frame_exception_exit_1; } frame_function->f_lineno = 1296; tmp_source_name_64 = CALL_FUNCTION_WITH_ARGS1( tmp_called_63, tmp_call_arg_element_74 ); Py_DECREF( tmp_called_63 ); if ( tmp_source_name_64 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1296; goto frame_exception_exit_1; } tmp_called_62 = LOOKUP_ATTRIBUTE( tmp_source_name_64, const_str_plain_replace ); Py_DECREF( tmp_source_name_64 ); if ( tmp_called_62 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1296; goto frame_exception_exit_1; } tmp_call_arg_element_75 = const_str_digest_859fc68497e02be265b67eeb17699a77; tmp_call_arg_element_76 = const_str_newline; frame_function->f_lineno = 1296; tmp_assign_source_97 = CALL_FUNCTION_WITH_ARGS2( tmp_called_62, tmp_call_arg_element_75, tmp_call_arg_element_76 ); Py_DECREF( tmp_called_62 ); if ( tmp_assign_source_97 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1296; goto frame_exception_exit_1; } if (var_lines.object == NULL) { var_lines.object = tmp_assign_source_97; } else { PyObject *old = var_lines.object; var_lines.object = tmp_assign_source_97; Py_DECREF( old ); } tmp_source_name_66 = var_f.object; if ( tmp_source_name_66 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 6491 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1297; goto frame_exception_exit_1; } tmp_called_64 = LOOKUP_ATTRIBUTE( tmp_source_name_66, const_str_plain_write ); if ( tmp_called_64 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1297; goto frame_exception_exit_1; } tmp_call_arg_element_77 = var_lines.object; frame_function->f_lineno = 1297; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_64, tmp_call_arg_element_77 ); Py_DECREF( tmp_called_64 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1297; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_source_name_67 = var_f.object; if ( tmp_source_name_67 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 6491 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1298; goto frame_exception_exit_1; } tmp_called_65 = LOOKUP_ATTRIBUTE( tmp_source_name_67, const_str_plain_close ); if ( tmp_called_65 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1298; goto frame_exception_exit_1; } frame_function->f_lineno = 1298; tmp_unused = CALL_FUNCTION_NO_ARGS( tmp_called_65 ); Py_DECREF( tmp_called_65 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1298; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_called_66 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_outmess ); if (unlikely( tmp_called_66 == NULL )) { tmp_called_66 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_outmess ); } if ( tmp_called_66 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125154 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1299; goto frame_exception_exit_1; } tmp_binop_left_15 = const_str_digest_c83ed1bc416d044b338832b29fb2651d; tmp_binop_right_15 = var_wn.object; if ( tmp_binop_right_15 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152133 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1299; goto frame_exception_exit_1; } tmp_call_arg_element_78 = BINARY_OPERATION_REMAINDER( tmp_binop_left_15, tmp_binop_right_15 ); if ( tmp_call_arg_element_78 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1299; goto frame_exception_exit_1; } frame_function->f_lineno = 1299; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_66, tmp_call_arg_element_78 ); Py_DECREF( tmp_call_arg_element_78 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1299; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); branch_no_24:; tmp_cond_value_14 = var_funcwrappers2.object; if ( tmp_cond_value_14 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151694 ], 59, 0 ); exception_tb = NULL; frame_function->f_lineno = 1300; goto frame_exception_exit_1; } tmp_cond_truth_14 = CHECK_IF_TRUE( tmp_cond_value_14 ); if ( tmp_cond_truth_14 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1300; goto frame_exception_exit_1; } if (tmp_cond_truth_14 == 1) { goto branch_yes_27; } else { goto branch_no_27; } branch_yes_27:; tmp_source_name_69 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_os ); if (unlikely( tmp_source_name_69 == NULL )) { tmp_source_name_69 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_os ); } if ( tmp_source_name_69 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 6460 ], 31, 0 ); exception_tb = NULL; frame_function->f_lineno = 1301; goto frame_exception_exit_1; } tmp_source_name_68 = LOOKUP_ATTRIBUTE( tmp_source_name_69, const_str_plain_path ); if ( tmp_source_name_68 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1301; goto frame_exception_exit_1; } tmp_called_67 = LOOKUP_ATTRIBUTE( tmp_source_name_68, const_str_plain_join ); Py_DECREF( tmp_source_name_68 ); if ( tmp_called_67 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1301; goto frame_exception_exit_1; } tmp_subscr_target_43 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_options ); if (unlikely( tmp_subscr_target_43 == NULL )) { tmp_subscr_target_43 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_options ); } if ( tmp_subscr_target_43 == NULL ) { Py_DECREF( tmp_called_67 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124432 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1301; goto frame_exception_exit_1; } tmp_subscr_subscript_43 = const_str_plain_buildpath; tmp_call_arg_element_79 = LOOKUP_SUBSCRIPT( tmp_subscr_target_43, tmp_subscr_subscript_43 ); if ( tmp_call_arg_element_79 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_67 ); frame_function->f_lineno = 1301; goto frame_exception_exit_1; } tmp_binop_left_16 = const_str_digest_3746a458488dce9d90d90525809f2b02; tmp_subscr_target_44 = var_vrd.object; if ( tmp_subscr_target_44 == NULL ) { Py_DECREF( tmp_called_67 ); Py_DECREF( tmp_call_arg_element_79 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129813 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1301; goto frame_exception_exit_1; } tmp_subscr_subscript_44 = const_str_plain_modulename; tmp_binop_right_16 = LOOKUP_SUBSCRIPT( tmp_subscr_target_44, tmp_subscr_subscript_44 ); if ( tmp_binop_right_16 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_67 ); Py_DECREF( tmp_call_arg_element_79 ); frame_function->f_lineno = 1301; goto frame_exception_exit_1; } tmp_call_arg_element_80 = BINARY_OPERATION_REMAINDER( tmp_binop_left_16, tmp_binop_right_16 ); Py_DECREF( tmp_binop_right_16 ); if ( tmp_call_arg_element_80 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_67 ); Py_DECREF( tmp_call_arg_element_79 ); frame_function->f_lineno = 1301; goto frame_exception_exit_1; } frame_function->f_lineno = 1301; tmp_assign_source_98 = CALL_FUNCTION_WITH_ARGS2( tmp_called_67, tmp_call_arg_element_79, tmp_call_arg_element_80 ); Py_DECREF( tmp_called_67 ); Py_DECREF( tmp_call_arg_element_79 ); Py_DECREF( tmp_call_arg_element_80 ); if ( tmp_assign_source_98 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1301; goto frame_exception_exit_1; } if (var_wn.object == NULL) { var_wn.object = tmp_assign_source_98; } else { PyObject *old = var_wn.object; var_wn.object = tmp_assign_source_98; Py_DECREF( old ); } tmp_ass_subvalue_7 = var_wn.object; tmp_ass_subscribed_7 = var_ret.object; if ( tmp_ass_subscribed_7 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 38779 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1302; goto frame_exception_exit_1; } tmp_ass_subscript_7 = const_str_plain_fsrc; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_7, tmp_ass_subscript_7, tmp_ass_subvalue_7 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1302; goto frame_exception_exit_1; } tmp_open_filename_5 = var_wn.object; tmp_open_mode_5 = const_str_plain_w; tmp_assign_source_99 = BUILTIN_OPEN( tmp_open_filename_5, tmp_open_mode_5, NULL ); if ( tmp_assign_source_99 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1303; goto frame_exception_exit_1; } if (var_f.object == NULL) { var_f.object = tmp_assign_source_99; } else { PyObject *old = var_f.object; var_f.object = tmp_assign_source_99; Py_DECREF( old ); } tmp_source_name_70 = var_f.object; tmp_called_68 = LOOKUP_ATTRIBUTE( tmp_source_name_70, const_str_plain_write ); if ( tmp_called_68 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1304; goto frame_exception_exit_1; } tmp_call_arg_element_81 = const_str_digest_0f31941b1b984d687d1832a3265bb0bd; frame_function->f_lineno = 1304; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_68, tmp_call_arg_element_81 ); Py_DECREF( tmp_called_68 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1304; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_source_name_71 = var_f.object; tmp_called_69 = LOOKUP_ATTRIBUTE( tmp_source_name_71, const_str_plain_write ); if ( tmp_called_69 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1305; goto frame_exception_exit_1; } tmp_binop_left_17 = const_str_digest_9699306eee9969fdb7872a23b1255525; tmp_binop_right_17 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_f2py_version ); if (unlikely( tmp_binop_right_17 == NULL )) { tmp_binop_right_17 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_f2py_version ); } if ( tmp_binop_right_17 == NULL ) { Py_DECREF( tmp_called_69 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 144933 ], 41, 0 ); exception_tb = NULL; frame_function->f_lineno = 1305; goto frame_exception_exit_1; } tmp_call_arg_element_82 = BINARY_OPERATION_REMAINDER( tmp_binop_left_17, tmp_binop_right_17 ); if ( tmp_call_arg_element_82 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_69 ); frame_function->f_lineno = 1305; goto frame_exception_exit_1; } frame_function->f_lineno = 1305; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_69, tmp_call_arg_element_82 ); Py_DECREF( tmp_called_69 ); Py_DECREF( tmp_call_arg_element_82 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1305; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_source_name_72 = var_f.object; tmp_called_70 = LOOKUP_ATTRIBUTE( tmp_source_name_72, const_str_plain_write ); if ( tmp_called_70 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1306; goto frame_exception_exit_1; } tmp_call_arg_element_83 = const_str_digest_d463a03c581a8b2bf2d33fceb0420ee2; frame_function->f_lineno = 1306; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_70, tmp_call_arg_element_83 ); Py_DECREF( tmp_called_70 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1306; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_assign_source_100 = PyList_New( 0 ); if (var_lines.object == NULL) { var_lines.object = tmp_assign_source_100; } else { PyObject *old = var_lines.object; var_lines.object = tmp_assign_source_100; Py_DECREF( old ); } tmp_source_name_74 = const_str_digest_e1c06d85ae7b8b032bef47e42e4c08f9; tmp_called_72 = LOOKUP_ATTRIBUTE( tmp_source_name_74, const_str_plain_join ); if ( tmp_called_72 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1308; goto frame_exception_exit_1; } tmp_call_arg_element_84 = var_funcwrappers2.object; if ( tmp_call_arg_element_84 == NULL ) { Py_DECREF( tmp_called_72 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151694 ], 59, 0 ); exception_tb = NULL; frame_function->f_lineno = 1308; goto frame_exception_exit_1; } frame_function->f_lineno = 1308; tmp_binop_left_18 = CALL_FUNCTION_WITH_ARGS1( tmp_called_72, tmp_call_arg_element_84 ); Py_DECREF( tmp_called_72 ); if ( tmp_binop_left_18 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1308; goto frame_exception_exit_1; } tmp_binop_right_18 = const_str_newline; tmp_source_name_73 = BINARY_OPERATION_ADD( tmp_binop_left_18, tmp_binop_right_18 ); Py_DECREF( tmp_binop_left_18 ); if ( tmp_source_name_73 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1308; goto frame_exception_exit_1; } tmp_called_71 = LOOKUP_ATTRIBUTE( tmp_source_name_73, const_str_plain_split ); Py_DECREF( tmp_source_name_73 ); if ( tmp_called_71 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1308; goto frame_exception_exit_1; } tmp_call_arg_element_85 = const_str_newline; frame_function->f_lineno = 1308; tmp_iter_arg_15 = CALL_FUNCTION_WITH_ARGS1( tmp_called_71, tmp_call_arg_element_85 ); Py_DECREF( tmp_called_71 ); if ( tmp_iter_arg_15 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1308; goto frame_exception_exit_1; } tmp_assign_source_101 = MAKE_ITERATOR( tmp_iter_arg_15 ); Py_DECREF( tmp_iter_arg_15 ); if ( tmp_assign_source_101 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1308; goto frame_exception_exit_1; } assert( tmp_for_loop_11__for_iterator.object == NULL ); tmp_for_loop_11__for_iterator.object = tmp_assign_source_101; // Tried code loop_start_12:; tmp_next_source_11 = tmp_for_loop_11__for_iterator.object; tmp_assign_source_102 = ITERATOR_NEXT( tmp_next_source_11 ); if (tmp_assign_source_102 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_12; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1308; goto try_finally_handler_24; } } if (tmp_for_loop_11__iter_value.object == NULL) { tmp_for_loop_11__iter_value.object = tmp_assign_source_102; } else { PyObject *old = tmp_for_loop_11__iter_value.object; tmp_for_loop_11__iter_value.object = tmp_assign_source_102; Py_DECREF( old ); } tmp_assign_source_103 = tmp_for_loop_11__iter_value.object; if (var_l.object == NULL) { var_l.object = INCREASE_REFCOUNT( tmp_assign_source_103 ); } else { PyObject *old = var_l.object; var_l.object = INCREASE_REFCOUNT( tmp_assign_source_103 ); Py_DECREF( old ); } // Tried code tmp_cond_value_15 = NULL; // Tried code tmp_len_arg_2 = var_l.object; tmp_compexpr_left_4 = BUILTIN_LEN( tmp_len_arg_2 ); if ( tmp_compexpr_left_4 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1309; goto try_finally_handler_26; } tmp_compexpr_right_4 = const_int_pos_72; tmp_assign_source_104 = RICH_COMPARE_GT( tmp_compexpr_left_4, tmp_compexpr_right_4 ); Py_DECREF( tmp_compexpr_left_4 ); if ( tmp_assign_source_104 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1309; goto try_finally_handler_26; } if (tmp_and_3__value_1.object == NULL) { tmp_and_3__value_1.object = tmp_assign_source_104; } else { PyObject *old = tmp_and_3__value_1.object; tmp_and_3__value_1.object = tmp_assign_source_104; Py_DECREF( old ); } tmp_cond_value_16 = tmp_and_3__value_1.object; tmp_cond_truth_16 = CHECK_IF_TRUE( tmp_cond_value_16 ); if ( tmp_cond_truth_16 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1309; goto try_finally_handler_26; } if (tmp_cond_truth_16 == 1) { goto condexpr_true_4; } else { goto condexpr_false_4; } condexpr_true_4:; tmp_cond_value_15 = NULL; // Tried code tmp_result = tmp_and_3__value_1.object != NULL; if ( tmp_result == true ) { Py_DECREF( tmp_and_3__value_1.object ); tmp_and_3__value_1.object = NULL; } assert( tmp_result != false ); tmp_subscr_target_45 = var_l.object; tmp_subscr_subscript_45 = const_int_0; tmp_compexpr_left_5 = LOOKUP_SUBSCRIPT( tmp_subscr_target_45, tmp_subscr_subscript_45 ); if ( tmp_compexpr_left_5 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1309; goto try_finally_handler_27; } tmp_compexpr_right_5 = const_str_space; tmp_cond_value_15 = RICH_COMPARE_EQ( tmp_compexpr_left_5, tmp_compexpr_right_5 ); Py_DECREF( tmp_compexpr_left_5 ); if ( tmp_cond_value_15 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1309; goto try_finally_handler_27; } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_27:; exception_keeper_type_24 = exception_type; exception_keeper_value_24 = exception_value; exception_keeper_tb_24 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_24 != NULL ) { exception_type = exception_keeper_type_24; exception_value = exception_keeper_value_24; exception_tb = exception_keeper_tb_24; goto try_finally_handler_26; } goto finally_end_24; finally_end_24:; goto condexpr_end_4; condexpr_false_4:; tmp_cond_value_15 = tmp_and_3__value_1.object; Py_INCREF( tmp_cond_value_15 ); condexpr_end_4:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_26:; exception_keeper_type_25 = exception_type; exception_keeper_value_25 = exception_value; exception_keeper_tb_25 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_25 != NULL ) { exception_type = exception_keeper_type_25; exception_value = exception_keeper_value_25; exception_tb = exception_keeper_tb_25; goto try_finally_handler_25; } goto finally_end_25; finally_end_25:; tmp_cond_truth_15 = CHECK_IF_TRUE( tmp_cond_value_15 ); if ( tmp_cond_truth_15 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_cond_value_15 ); frame_function->f_lineno = 1309; goto try_finally_handler_25; } Py_DECREF( tmp_cond_value_15 ); if (tmp_cond_truth_15 == 1) { goto branch_yes_28; } else { goto branch_no_28; } branch_yes_28:; tmp_source_name_75 = var_lines.object; if ( tmp_source_name_75 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 16411 ], 51, 0 ); exception_tb = NULL; frame_function->f_lineno = 1310; goto try_finally_handler_25; } tmp_called_73 = LOOKUP_ATTRIBUTE( tmp_source_name_75, const_str_plain_append ); if ( tmp_called_73 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1310; goto try_finally_handler_25; } tmp_sliceslicedel_index_lower_4 = 0; tmp_slice_index_upper_4 = 72; tmp_slice_source_4 = var_l.object; if ( tmp_slice_source_4 == NULL ) { Py_DECREF( tmp_called_73 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 20276 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1310; goto try_finally_handler_25; } tmp_binop_left_19 = LOOKUP_INDEX_SLICE( tmp_slice_source_4, tmp_sliceslicedel_index_lower_4, tmp_slice_index_upper_4 ); if ( tmp_binop_left_19 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_73 ); frame_function->f_lineno = 1310; goto try_finally_handler_25; } tmp_binop_right_19 = const_str_digest_57f487778749be446e3a072c5c9fc960; tmp_call_arg_element_86 = BINARY_OPERATION_ADD( tmp_binop_left_19, tmp_binop_right_19 ); Py_DECREF( tmp_binop_left_19 ); if ( tmp_call_arg_element_86 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_73 ); frame_function->f_lineno = 1310; goto try_finally_handler_25; } frame_function->f_lineno = 1310; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_73, tmp_call_arg_element_86 ); Py_DECREF( tmp_called_73 ); Py_DECREF( tmp_call_arg_element_86 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1310; goto try_finally_handler_25; } Py_DECREF( tmp_unused ); tmp_sliceslicedel_index_lower_5 = 72; tmp_slice_index_upper_5 = PY_SSIZE_T_MAX; tmp_slice_source_5 = var_l.object; if ( tmp_slice_source_5 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 20276 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1311; goto try_finally_handler_25; } tmp_assign_source_105 = LOOKUP_INDEX_SLICE( tmp_slice_source_5, tmp_sliceslicedel_index_lower_5, tmp_slice_index_upper_5 ); if ( tmp_assign_source_105 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1311; goto try_finally_handler_25; } if (var_l.object == NULL) { var_l.object = tmp_assign_source_105; } else { PyObject *old = var_l.object; var_l.object = tmp_assign_source_105; Py_DECREF( old ); } loop_start_13:; tmp_len_arg_3 = var_l.object; if ( tmp_len_arg_3 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 20276 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1312; goto try_finally_handler_25; } tmp_compare_left_17 = BUILTIN_LEN( tmp_len_arg_3 ); if ( tmp_compare_left_17 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1312; goto try_finally_handler_25; } tmp_compare_right_17 = const_int_pos_66; tmp_cmp_Gt_1 = RICH_COMPARE_BOOL_GT( tmp_compare_left_17, tmp_compare_right_17 ); if ( tmp_cmp_Gt_1 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_compare_left_17 ); frame_function->f_lineno = 1312; goto try_finally_handler_25; } Py_DECREF( tmp_compare_left_17 ); if (tmp_cmp_Gt_1 == 1) { goto branch_no_29; } else { goto branch_yes_29; } branch_yes_29:; goto loop_end_13; branch_no_29:; tmp_source_name_76 = var_lines.object; if ( tmp_source_name_76 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 16411 ], 51, 0 ); exception_tb = NULL; frame_function->f_lineno = 1313; goto try_finally_handler_25; } tmp_called_74 = LOOKUP_ATTRIBUTE( tmp_source_name_76, const_str_plain_append ); if ( tmp_called_74 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1313; goto try_finally_handler_25; } tmp_sliceslicedel_index_lower_6 = 0; tmp_slice_index_upper_6 = 66; tmp_slice_source_6 = var_l.object; if ( tmp_slice_source_6 == NULL ) { Py_DECREF( tmp_called_74 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 20276 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1313; goto try_finally_handler_25; } tmp_binop_left_20 = LOOKUP_INDEX_SLICE( tmp_slice_source_6, tmp_sliceslicedel_index_lower_6, tmp_slice_index_upper_6 ); if ( tmp_binop_left_20 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_74 ); frame_function->f_lineno = 1313; goto try_finally_handler_25; } tmp_binop_right_20 = const_str_digest_57f487778749be446e3a072c5c9fc960; tmp_call_arg_element_87 = BINARY_OPERATION_ADD( tmp_binop_left_20, tmp_binop_right_20 ); Py_DECREF( tmp_binop_left_20 ); if ( tmp_call_arg_element_87 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_74 ); frame_function->f_lineno = 1313; goto try_finally_handler_25; } frame_function->f_lineno = 1313; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_74, tmp_call_arg_element_87 ); Py_DECREF( tmp_called_74 ); Py_DECREF( tmp_call_arg_element_87 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1313; goto try_finally_handler_25; } Py_DECREF( tmp_unused ); tmp_sliceslicedel_index_lower_7 = 66; tmp_slice_index_upper_7 = PY_SSIZE_T_MAX; tmp_slice_source_7 = var_l.object; if ( tmp_slice_source_7 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 20276 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1314; goto try_finally_handler_25; } tmp_assign_source_106 = LOOKUP_INDEX_SLICE( tmp_slice_source_7, tmp_sliceslicedel_index_lower_7, tmp_slice_index_upper_7 ); if ( tmp_assign_source_106 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1314; goto try_finally_handler_25; } if (var_l.object == NULL) { var_l.object = tmp_assign_source_106; } else { PyObject *old = var_l.object; var_l.object = tmp_assign_source_106; Py_DECREF( old ); } if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1312; goto try_finally_handler_25; } goto loop_start_13; loop_end_13:; tmp_source_name_77 = var_lines.object; if ( tmp_source_name_77 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 16411 ], 51, 0 ); exception_tb = NULL; frame_function->f_lineno = 1315; goto try_finally_handler_25; } tmp_called_75 = LOOKUP_ATTRIBUTE( tmp_source_name_77, const_str_plain_append ); if ( tmp_called_75 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1315; goto try_finally_handler_25; } tmp_binop_left_21 = var_l.object; tmp_binop_right_21 = const_str_newline; tmp_call_arg_element_88 = BINARY_OPERATION_ADD( tmp_binop_left_21, tmp_binop_right_21 ); if ( tmp_call_arg_element_88 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_75 ); frame_function->f_lineno = 1315; goto try_finally_handler_25; } frame_function->f_lineno = 1315; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_75, tmp_call_arg_element_88 ); Py_DECREF( tmp_called_75 ); Py_DECREF( tmp_call_arg_element_88 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1315; goto try_finally_handler_25; } Py_DECREF( tmp_unused ); goto branch_end_28; branch_no_28:; tmp_source_name_78 = var_lines.object; if ( tmp_source_name_78 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 16411 ], 51, 0 ); exception_tb = NULL; frame_function->f_lineno = 1316; goto try_finally_handler_25; } tmp_called_76 = LOOKUP_ATTRIBUTE( tmp_source_name_78, const_str_plain_append ); if ( tmp_called_76 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1316; goto try_finally_handler_25; } tmp_binop_left_22 = var_l.object; if ( tmp_binop_left_22 == NULL ) { Py_DECREF( tmp_called_76 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 20276 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1316; goto try_finally_handler_25; } tmp_binop_right_22 = const_str_newline; tmp_call_arg_element_89 = BINARY_OPERATION_ADD( tmp_binop_left_22, tmp_binop_right_22 ); if ( tmp_call_arg_element_89 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_76 ); frame_function->f_lineno = 1316; goto try_finally_handler_25; } frame_function->f_lineno = 1316; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_76, tmp_call_arg_element_89 ); Py_DECREF( tmp_called_76 ); Py_DECREF( tmp_call_arg_element_89 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1316; goto try_finally_handler_25; } Py_DECREF( tmp_unused ); branch_end_28:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_25:; exception_keeper_type_26 = exception_type; exception_keeper_value_26 = exception_value; exception_keeper_tb_26 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_18 = frame_function->f_lineno; Py_XDECREF( tmp_and_3__value_1.object ); tmp_and_3__value_1.object = NULL; frame_function->f_lineno = tmp_tried_lineno_18; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_26 != NULL ) { exception_type = exception_keeper_type_26; exception_value = exception_keeper_value_26; exception_tb = exception_keeper_tb_26; goto try_finally_handler_24; } goto finally_end_26; finally_end_26:; if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1308; goto try_finally_handler_24; } goto loop_start_12; loop_end_12:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_24:; exception_keeper_type_27 = exception_type; exception_keeper_value_27 = exception_value; exception_keeper_tb_27 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_19 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_11__iter_value.object ); tmp_for_loop_11__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_11__for_iterator.object ); tmp_for_loop_11__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_19; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_27 != NULL ) { exception_type = exception_keeper_type_27; exception_value = exception_keeper_value_27; exception_tb = exception_keeper_tb_27; goto frame_exception_exit_1; } goto finally_end_27; finally_end_27:; tmp_source_name_80 = const_str_empty; tmp_called_78 = LOOKUP_ATTRIBUTE( tmp_source_name_80, const_str_plain_join ); if ( tmp_called_78 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1317; goto frame_exception_exit_1; } tmp_call_arg_element_90 = var_lines.object; if ( tmp_call_arg_element_90 == NULL ) { Py_DECREF( tmp_called_78 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 16411 ], 51, 0 ); exception_tb = NULL; frame_function->f_lineno = 1317; goto frame_exception_exit_1; } frame_function->f_lineno = 1317; tmp_source_name_79 = CALL_FUNCTION_WITH_ARGS1( tmp_called_78, tmp_call_arg_element_90 ); Py_DECREF( tmp_called_78 ); if ( tmp_source_name_79 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1317; goto frame_exception_exit_1; } tmp_called_77 = LOOKUP_ATTRIBUTE( tmp_source_name_79, const_str_plain_replace ); Py_DECREF( tmp_source_name_79 ); if ( tmp_called_77 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1317; goto frame_exception_exit_1; } tmp_call_arg_element_91 = const_str_digest_859fc68497e02be265b67eeb17699a77; tmp_call_arg_element_92 = const_str_newline; frame_function->f_lineno = 1317; tmp_assign_source_107 = CALL_FUNCTION_WITH_ARGS2( tmp_called_77, tmp_call_arg_element_91, tmp_call_arg_element_92 ); Py_DECREF( tmp_called_77 ); if ( tmp_assign_source_107 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1317; goto frame_exception_exit_1; } if (var_lines.object == NULL) { var_lines.object = tmp_assign_source_107; } else { PyObject *old = var_lines.object; var_lines.object = tmp_assign_source_107; Py_DECREF( old ); } tmp_source_name_81 = var_f.object; if ( tmp_source_name_81 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 6491 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1318; goto frame_exception_exit_1; } tmp_called_79 = LOOKUP_ATTRIBUTE( tmp_source_name_81, const_str_plain_write ); if ( tmp_called_79 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1318; goto frame_exception_exit_1; } tmp_call_arg_element_93 = var_lines.object; frame_function->f_lineno = 1318; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_79, tmp_call_arg_element_93 ); Py_DECREF( tmp_called_79 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1318; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_source_name_82 = var_f.object; if ( tmp_source_name_82 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 6491 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1319; goto frame_exception_exit_1; } tmp_called_80 = LOOKUP_ATTRIBUTE( tmp_source_name_82, const_str_plain_close ); if ( tmp_called_80 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1319; goto frame_exception_exit_1; } frame_function->f_lineno = 1319; tmp_unused = CALL_FUNCTION_NO_ARGS( tmp_called_80 ); Py_DECREF( tmp_called_80 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1319; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); tmp_called_81 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_outmess ); if (unlikely( tmp_called_81 == NULL )) { tmp_called_81 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_outmess ); } if ( tmp_called_81 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125154 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1320; goto frame_exception_exit_1; } tmp_binop_left_23 = const_str_digest_1480e469b585979a7f4d96343815e357; tmp_binop_right_23 = var_wn.object; if ( tmp_binop_right_23 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152133 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1320; goto frame_exception_exit_1; } tmp_call_arg_element_94 = BINARY_OPERATION_REMAINDER( tmp_binop_left_23, tmp_binop_right_23 ); if ( tmp_call_arg_element_94 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1320; goto frame_exception_exit_1; } frame_function->f_lineno = 1320; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_81, tmp_call_arg_element_94 ); Py_DECREF( tmp_call_arg_element_94 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1320; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); branch_no_27:; tmp_return_value = var_ret.object; if ( tmp_return_value == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 38779 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1321; goto frame_exception_exit_1; } Py_INCREF( tmp_return_value ); goto frame_return_exit_1; #if 0 RESTORE_FRAME_EXCEPTION( frame_function ); #endif // Put the previous frame back on top. popFrameStack(); #if PYTHON_VERSION >= 340 frame_function->f_executing -= 1; #endif Py_DECREF( frame_function ); goto frame_no_exception_1; frame_return_exit_1:; #if 0 RESTORE_FRAME_EXCEPTION( frame_function ); #endif popFrameStack(); #if PYTHON_VERSION >= 340 frame_function->f_executing -= 1; #endif Py_DECREF( frame_function ); goto function_return_exit; frame_exception_exit_1:; #if 0 RESTORE_FRAME_EXCEPTION( frame_function ); #endif if ( exception_tb == NULL ) { exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) ); } else if ( exception_tb->tb_frame != frame_function ) { PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) ); traceback_new->tb_next = exception_tb; exception_tb = traceback_new; } tmp_frame_locals = PyDict_New(); if ((var_ret.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_ret, var_ret.object ); } if ((var_mod_rules.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_mod_rules, var_mod_rules.object ); } if ((var_vrd.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_vrd, var_vrd.object ); } if ((var_rd.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_rd, var_rd.object ); } if ((var_funcwrappers.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_funcwrappers, var_funcwrappers.object ); } if ((var_funcwrappers2.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_funcwrappers2, var_funcwrappers2.object ); } if ((var_n.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_n, var_n.object ); } if ((var_nb.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_nb, var_nb.object ); } if ((var_bi.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_bi, var_bi.object ); } if ((var_b.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_b, var_b.object ); } if ((var_nb_list.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_nb_list, var_nb_list.object ); } if ((var_k.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_k, var_k.object ); } if ((var_a.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_a, var_a.object ); } if ((var_nb1.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_nb1, var_nb1.object ); } if ((var_api.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_api, var_api.object ); } if ((var_wrap.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_wrap, var_wrap.object ); } if ((var_ar.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_ar, var_ar.object ); } if ((var_cr.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_cr, var_cr.object ); } if ((var_mr.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_mr, var_mr.object ); } if ((var_u.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_u, var_u.object ); } if ((var_needs.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_needs, var_needs.object ); } if ((var_code.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_code, var_code.object ); } if ((var_c.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_c, var_c.object ); } if ((var_r.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_r, var_r.object ); } if ((var_fn.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_fn, var_fn.object ); } if ((var_f.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_f, var_f.object ); } if ((var_wn.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_wn, var_wn.object ); } if ((var_lines.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_lines, var_lines.object ); } if ((var_l.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_l, var_l.object ); } if ((par_m.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_m, par_m.object ); } if ((par_um.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_um, par_um.object ); } detachFrame( exception_tb, tmp_frame_locals ); popFrameStack(); #if PYTHON_VERSION >= 340 frame_function->f_executing -= 1; #endif Py_DECREF( frame_function ); // Return the error. goto function_exception_exit; frame_no_exception_1:; // Return statement must be present. assert(false); function_exception_exit: assert( exception_type ); PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb ); return NULL; function_return_exit: return tmp_return_value; } static PyObject *fparse_function_1_buildmodule_of_module_numpy$f2py$rules( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw ) { assert( kw == NULL || PyDict_Check( kw ) ); NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0; NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0; NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0; Py_ssize_t args_given = args_size; PyObject *_python_par_m = NULL; PyObject *_python_par_um = NULL; // Copy given dictionary values to the the respective variables: if ( kw_size > 0 ) { Py_ssize_t ppos = 0; PyObject *key, *value; while( PyDict_Next( kw, &ppos, &key, &value ) ) { #if PYTHON_VERSION < 300 if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) )) #else if (unlikely( !PyUnicode_Check( key ) )) #endif { PyErr_Format( PyExc_TypeError, "buildmodule() keywords must be strings" ); goto error_exit; } NUITKA_MAY_BE_UNUSED bool found = false; Py_INCREF( key ); Py_INCREF( value ); // Quick path, could be our value. if ( found == false && const_str_plain_m == key ) { assert( _python_par_m == NULL ); _python_par_m = value; found = true; kw_found += 1; } if ( found == false && const_str_plain_um == key ) { assert( _python_par_um == NULL ); _python_par_um = value; found = true; kw_found += 1; } // Slow path, compare against all parameter names. if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_m, key ) == 1 ) { assert( _python_par_m == NULL ); _python_par_m = value; found = true; kw_found += 1; } if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_um, key ) == 1 ) { assert( _python_par_um == NULL ); _python_par_um = value; found = true; kw_found += 1; } Py_DECREF( key ); if ( found == false ) { Py_DECREF( value ); PyErr_Format( PyExc_TypeError, "buildmodule() got an unexpected keyword argument '%s'", Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>" ); goto error_exit; } } #if PYTHON_VERSION < 300 assert( kw_found == kw_size ); assert( kw_only_found == 0 ); #endif } // Check if too many arguments were given in case of non star args if (unlikely( args_given > 2 )) { #if PYTHON_VERSION < 270 ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size ); #elif PYTHON_VERSION < 330 ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found ); #else ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found ); #endif goto error_exit; } // Copy normal parameter values given as part of the args list to the respective variables: if (likely( 0 < args_given )) { if (unlikely( _python_par_m != NULL )) { ERROR_MULTIPLE_VALUES( self, 0 ); goto error_exit; } _python_par_m = INCREASE_REFCOUNT( args[ 0 ] ); } else if ( _python_par_m == NULL ) { if ( 0 + self->m_defaults_given >= 2 ) { _python_par_m = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 2 ) ); } #if PYTHON_VERSION < 330 else { #if PYTHON_VERSION < 270 ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found ); #elif PYTHON_VERSION < 300 ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found ); #else ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found ); #endif goto error_exit; } #endif } if (likely( 1 < args_given )) { if (unlikely( _python_par_um != NULL )) { ERROR_MULTIPLE_VALUES( self, 1 ); goto error_exit; } _python_par_um = INCREASE_REFCOUNT( args[ 1 ] ); } else if ( _python_par_um == NULL ) { if ( 1 + self->m_defaults_given >= 2 ) { _python_par_um = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 2 ) ); } #if PYTHON_VERSION < 330 else { #if PYTHON_VERSION < 270 ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found ); #elif PYTHON_VERSION < 300 ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found ); #else ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found ); #endif goto error_exit; } #endif } #if PYTHON_VERSION >= 330 if (unlikely( _python_par_m == NULL || _python_par_um == NULL )) { PyObject *values[] = { _python_par_m, _python_par_um }; ERROR_TOO_FEW_ARGUMENTS( self, values ); goto error_exit; } #endif return impl_function_1_buildmodule_of_module_numpy$f2py$rules( self, _python_par_m, _python_par_um ); error_exit:; Py_XDECREF( _python_par_m ); Py_XDECREF( _python_par_um ); return NULL; } static PyObject *dparse_function_1_buildmodule_of_module_numpy$f2py$rules( Nuitka_FunctionObject *self, PyObject **args, int size ) { if ( size == 2 ) { return impl_function_1_buildmodule_of_module_numpy$f2py$rules( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ) ); } else { PyObject *result = fparse_function_1_buildmodule_of_module_numpy$f2py$rules( self, args, size, NULL ); return result; } } static PyObject *impl_function_2_buildapi_of_module_numpy$f2py$rules( Nuitka_FunctionObject *self, PyObject *_python_par_rout ) { // No context is used. // Local variable declarations. PyObjectLocalVariable par_rout; par_rout.object = _python_par_rout; PyObjectLocalVariable var_wrap; PyObjectLocalVariable var_args; PyObjectLocalVariable var_depargs; PyObjectLocalVariable var_var; PyObjectLocalVariable var_a; PyObjectLocalVariable var_auxvars; PyObjectLocalVariable var_vrd; PyObjectLocalVariable var_rd; PyObjectLocalVariable var_r; PyObjectLocalVariable var_ar; PyObjectLocalVariable var_nth; PyObjectLocalVariable var_nthk; PyObjectLocalVariable var_savevrd; PyObjectLocalVariable var__rules; PyObjectLocalVariable var_c; PyObjectLocalVariable var_optargs; PyObjectLocalVariable var_cfs; PyObjectLocalVariable var_k; PyObjectLocalVariable var_argformat; PyObjectTempVariable tmp_tuple_unpack_1__source_iter; PyObjectTempVariable tmp_tuple_unpack_1__element_1; PyObjectTempVariable tmp_tuple_unpack_1__element_2; PyObjectTempVariable tmp_tuple_unpack_2__source_iter; PyObjectTempVariable tmp_tuple_unpack_2__element_1; PyObjectTempVariable tmp_tuple_unpack_2__element_2; PyObjectTempVariable tmp_listcontr_1__listcontr_iter; PyObjectTempVariable tmp_listcontr_1__listcontr_result; PyObjectTempVariable tmp_listcontr_1__iter_value_0; PyObjectTempVariable tmp_for_loop_1__for_iterator; PyObjectTempVariable tmp_for_loop_1__iter_value; PyObjectTempVariable tmp_and_1__value_1; PyObjectTempVariable tmp_or_1__value_1; PyObjectTempVariable tmp_tuple_unpack_3__source_iter; PyObjectTempVariable tmp_tuple_unpack_3__element_1; PyObjectTempVariable tmp_tuple_unpack_3__element_2; PyObjectTempVariable tmp_for_loop_2__for_iterator; PyObjectTempVariable tmp_for_loop_2__iter_value; PyObjectTempVariable tmp_for_loop_3__for_iterator; PyObjectTempVariable tmp_for_loop_3__iter_value; PyObjectTempVariable tmp_and_2__value_1; PyObjectTempVariable tmp_or_2__value_1; PyObjectTempVariable tmp_for_loop_4__for_iterator; PyObjectTempVariable tmp_for_loop_4__iter_value; PyObjectTempVariable tmp_for_loop_5__for_iterator; PyObjectTempVariable tmp_for_loop_5__iter_value; PyObjectTempVariable tmp_and_3__value_1; PyObjectTempVariable tmp_or_3__value_1; PyObjectTempVariable tmp_for_loop_6__for_iterator; PyObjectTempVariable tmp_for_loop_6__iter_value; PyObjectTempVariable tmp_for_loop_7__for_iterator; PyObjectTempVariable tmp_for_loop_7__iter_value; PyObjectTempVariable tmp_and_4__value_1; PyObjectTempVariable tmp_and_5__value_1; PyObjectTempVariable tmp_or_4__value_1; PyObjectTempVariable tmp_inplace_assign_1__inplace_target; PyObjectTempVariable tmp_inplace_assign_1__inplace_subscript; PyObject *exception_type = NULL, *exception_value = NULL; PyTracebackObject *exception_tb = NULL; PyObject *exception_keeper_type_1; PyObject *exception_keeper_value_1; PyTracebackObject *exception_keeper_tb_1; PyObject *exception_keeper_type_2; PyObject *exception_keeper_value_2; PyTracebackObject *exception_keeper_tb_2; PyObject *exception_keeper_type_3; PyObject *exception_keeper_value_3; PyTracebackObject *exception_keeper_tb_3; PyObject *exception_keeper_type_4; PyObject *exception_keeper_value_4; PyTracebackObject *exception_keeper_tb_4; PyObject *exception_keeper_type_5; PyObject *exception_keeper_value_5; PyTracebackObject *exception_keeper_tb_5; PyObject *exception_keeper_type_6; PyObject *exception_keeper_value_6; PyTracebackObject *exception_keeper_tb_6; PyObject *exception_keeper_type_7; PyObject *exception_keeper_value_7; PyTracebackObject *exception_keeper_tb_7; PyObject *exception_keeper_type_8; PyObject *exception_keeper_value_8; PyTracebackObject *exception_keeper_tb_8; PyObject *exception_keeper_type_9; PyObject *exception_keeper_value_9; PyTracebackObject *exception_keeper_tb_9; PyObject *exception_keeper_type_10; PyObject *exception_keeper_value_10; PyTracebackObject *exception_keeper_tb_10; PyObject *exception_keeper_type_11; PyObject *exception_keeper_value_11; PyTracebackObject *exception_keeper_tb_11; PyObject *exception_keeper_type_12; PyObject *exception_keeper_value_12; PyTracebackObject *exception_keeper_tb_12; PyObject *exception_keeper_type_13; PyObject *exception_keeper_value_13; PyTracebackObject *exception_keeper_tb_13; PyObject *exception_keeper_type_14; PyObject *exception_keeper_value_14; PyTracebackObject *exception_keeper_tb_14; PyObject *exception_keeper_type_15; PyObject *exception_keeper_value_15; PyTracebackObject *exception_keeper_tb_15; PyObject *exception_keeper_type_16; PyObject *exception_keeper_value_16; PyTracebackObject *exception_keeper_tb_16; PyObject *exception_keeper_type_17; PyObject *exception_keeper_value_17; PyTracebackObject *exception_keeper_tb_17; PyObject *exception_keeper_type_18; PyObject *exception_keeper_value_18; PyTracebackObject *exception_keeper_tb_18; PyObject *exception_keeper_type_19; PyObject *exception_keeper_value_19; PyTracebackObject *exception_keeper_tb_19; PyObject *exception_keeper_type_20; PyObject *exception_keeper_value_20; PyTracebackObject *exception_keeper_tb_20; PyObject *exception_keeper_type_21; PyObject *exception_keeper_value_21; PyTracebackObject *exception_keeper_tb_21; PyObject *exception_keeper_type_22; PyObject *exception_keeper_value_22; PyTracebackObject *exception_keeper_tb_22; PyObject *exception_keeper_type_23; PyObject *exception_keeper_value_23; PyTracebackObject *exception_keeper_tb_23; PyObject *exception_keeper_type_24; PyObject *exception_keeper_value_24; PyTracebackObject *exception_keeper_tb_24; PyObject *exception_keeper_type_25; PyObject *exception_keeper_value_25; PyTracebackObject *exception_keeper_tb_25; PyObject *exception_keeper_type_26; PyObject *exception_keeper_value_26; PyTracebackObject *exception_keeper_tb_26; PyObject *exception_keeper_type_27; PyObject *exception_keeper_value_27; PyTracebackObject *exception_keeper_tb_27; PyObject *exception_keeper_type_28; PyObject *exception_keeper_value_28; PyTracebackObject *exception_keeper_tb_28; PyObject *exception_keeper_type_29; PyObject *exception_keeper_value_29; PyTracebackObject *exception_keeper_tb_29; PyObject *exception_keeper_type_30; PyObject *exception_keeper_value_30; PyTracebackObject *exception_keeper_tb_30; PyObject *exception_keeper_type_31; PyObject *exception_keeper_value_31; PyTracebackObject *exception_keeper_tb_31; PyObject *exception_keeper_type_32; PyObject *exception_keeper_value_32; PyTracebackObject *exception_keeper_tb_32; PyObject *exception_keeper_type_33; PyObject *exception_keeper_value_33; PyTracebackObject *exception_keeper_tb_33; PyObject *exception_keeper_type_34; PyObject *exception_keeper_value_34; PyTracebackObject *exception_keeper_tb_34; PyObject *exception_keeper_type_35; PyObject *exception_keeper_value_35; PyTracebackObject *exception_keeper_tb_35; PyObject *exception_keeper_type_36; PyObject *exception_keeper_value_36; PyTracebackObject *exception_keeper_tb_36; PyObject *exception_keeper_type_37; PyObject *exception_keeper_value_37; PyTracebackObject *exception_keeper_tb_37; PyObject *exception_keeper_type_38; PyObject *exception_keeper_value_38; PyTracebackObject *exception_keeper_tb_38; PyObject *exception_keeper_type_39; PyObject *exception_keeper_value_39; PyTracebackObject *exception_keeper_tb_39; PyObject *exception_keeper_type_40; PyObject *exception_keeper_value_40; PyTracebackObject *exception_keeper_tb_40; PyObject *tmp_append_to_1; PyObject *tmp_append_value_1; PyObject *tmp_ass_subscribed_1; PyObject *tmp_ass_subscribed_2; PyObject *tmp_ass_subscribed_3; PyObject *tmp_ass_subscribed_4; PyObject *tmp_ass_subscribed_5; PyObject *tmp_ass_subscribed_6; PyObject *tmp_ass_subscribed_7; PyObject *tmp_ass_subscribed_8; PyObject *tmp_ass_subscribed_9; PyObject *tmp_ass_subscribed_10; PyObject *tmp_ass_subscribed_11; PyObject *tmp_ass_subscribed_12; PyObject *tmp_ass_subscribed_13; PyObject *tmp_ass_subscribed_14; PyObject *tmp_ass_subscribed_15; PyObject *tmp_ass_subscribed_16; PyObject *tmp_ass_subscribed_17; PyObject *tmp_ass_subscribed_18; PyObject *tmp_ass_subscribed_19; PyObject *tmp_ass_subscript_1; PyObject *tmp_ass_subscript_2; PyObject *tmp_ass_subscript_3; PyObject *tmp_ass_subscript_4; PyObject *tmp_ass_subscript_5; PyObject *tmp_ass_subscript_6; PyObject *tmp_ass_subscript_7; PyObject *tmp_ass_subscript_8; PyObject *tmp_ass_subscript_9; PyObject *tmp_ass_subscript_10; PyObject *tmp_ass_subscript_11; PyObject *tmp_ass_subscript_12; PyObject *tmp_ass_subscript_13; PyObject *tmp_ass_subscript_14; PyObject *tmp_ass_subscript_15; PyObject *tmp_ass_subscript_16; PyObject *tmp_ass_subscript_17; PyObject *tmp_ass_subscript_18; PyObject *tmp_ass_subscript_19; PyObject *tmp_ass_subvalue_1; PyObject *tmp_ass_subvalue_2; PyObject *tmp_ass_subvalue_3; PyObject *tmp_ass_subvalue_4; PyObject *tmp_ass_subvalue_5; PyObject *tmp_ass_subvalue_6; PyObject *tmp_ass_subvalue_7; PyObject *tmp_ass_subvalue_8; PyObject *tmp_ass_subvalue_9; PyObject *tmp_ass_subvalue_10; PyObject *tmp_ass_subvalue_11; PyObject *tmp_ass_subvalue_12; PyObject *tmp_ass_subvalue_13; PyObject *tmp_ass_subvalue_14; PyObject *tmp_ass_subvalue_15; PyObject *tmp_ass_subvalue_16; PyObject *tmp_ass_subvalue_17; PyObject *tmp_ass_subvalue_18; PyObject *tmp_ass_subvalue_19; PyObject *tmp_assattr_name_1; PyObject *tmp_assattr_target_1; PyObject *tmp_assign_source_1; PyObject *tmp_assign_source_2; PyObject *tmp_assign_source_3; PyObject *tmp_assign_source_4; PyObject *tmp_assign_source_5; PyObject *tmp_assign_source_6; PyObject *tmp_assign_source_7; PyObject *tmp_assign_source_8; PyObject *tmp_assign_source_9; PyObject *tmp_assign_source_10; PyObject *tmp_assign_source_11; PyObject *tmp_assign_source_12; PyObject *tmp_assign_source_13; PyObject *tmp_assign_source_14; PyObject *tmp_assign_source_15; PyObject *tmp_assign_source_16; PyObject *tmp_assign_source_17; PyObject *tmp_assign_source_18; PyObject *tmp_assign_source_19; PyObject *tmp_assign_source_20; PyObject *tmp_assign_source_21; PyObject *tmp_assign_source_22; PyObject *tmp_assign_source_23; PyObject *tmp_assign_source_24; PyObject *tmp_assign_source_25; PyObject *tmp_assign_source_26; PyObject *tmp_assign_source_27; PyObject *tmp_assign_source_28; PyObject *tmp_assign_source_29; PyObject *tmp_assign_source_30; PyObject *tmp_assign_source_31; PyObject *tmp_assign_source_32; PyObject *tmp_assign_source_33; PyObject *tmp_assign_source_34; PyObject *tmp_assign_source_35; PyObject *tmp_assign_source_36; PyObject *tmp_assign_source_37; PyObject *tmp_assign_source_38; PyObject *tmp_assign_source_39; PyObject *tmp_assign_source_40; PyObject *tmp_assign_source_41; PyObject *tmp_assign_source_42; PyObject *tmp_assign_source_43; PyObject *tmp_assign_source_44; PyObject *tmp_assign_source_45; PyObject *tmp_assign_source_46; PyObject *tmp_assign_source_47; PyObject *tmp_assign_source_48; PyObject *tmp_assign_source_49; PyObject *tmp_assign_source_50; PyObject *tmp_assign_source_51; PyObject *tmp_assign_source_52; PyObject *tmp_assign_source_53; PyObject *tmp_assign_source_54; PyObject *tmp_assign_source_55; PyObject *tmp_assign_source_56; PyObject *tmp_assign_source_57; PyObject *tmp_assign_source_58; PyObject *tmp_assign_source_59; PyObject *tmp_assign_source_60; PyObject *tmp_assign_source_61; PyObject *tmp_assign_source_62; PyObject *tmp_assign_source_63; PyObject *tmp_assign_source_64; PyObject *tmp_assign_source_65; PyObject *tmp_assign_source_66; PyObject *tmp_assign_source_67; PyObject *tmp_assign_source_68; PyObject *tmp_assign_source_69; PyObject *tmp_assign_source_70; PyObject *tmp_assign_source_71; PyObject *tmp_assign_source_72; PyObject *tmp_assign_source_73; PyObject *tmp_assign_source_74; PyObject *tmp_assign_source_75; PyObject *tmp_assign_source_76; PyObject *tmp_assign_source_77; PyObject *tmp_binop_left_1; PyObject *tmp_binop_left_2; PyObject *tmp_binop_left_3; PyObject *tmp_binop_left_4; PyObject *tmp_binop_left_5; PyObject *tmp_binop_left_6; PyObject *tmp_binop_left_7; PyObject *tmp_binop_left_8; PyObject *tmp_binop_left_9; PyObject *tmp_binop_left_10; PyObject *tmp_binop_left_11; PyObject *tmp_binop_left_12; PyObject *tmp_binop_left_13; PyObject *tmp_binop_left_14; PyObject *tmp_binop_left_15; PyObject *tmp_binop_left_16; PyObject *tmp_binop_left_17; PyObject *tmp_binop_left_18; PyObject *tmp_binop_left_19; PyObject *tmp_binop_left_20; PyObject *tmp_binop_right_1; PyObject *tmp_binop_right_2; PyObject *tmp_binop_right_3; PyObject *tmp_binop_right_4; PyObject *tmp_binop_right_5; PyObject *tmp_binop_right_6; PyObject *tmp_binop_right_7; PyObject *tmp_binop_right_8; PyObject *tmp_binop_right_9; PyObject *tmp_binop_right_10; PyObject *tmp_binop_right_11; PyObject *tmp_binop_right_12; PyObject *tmp_binop_right_13; PyObject *tmp_binop_right_14; PyObject *tmp_binop_right_15; PyObject *tmp_binop_right_16; PyObject *tmp_binop_right_17; PyObject *tmp_binop_right_18; PyObject *tmp_binop_right_19; PyObject *tmp_binop_right_20; bool tmp_break_1; bool tmp_break_2; PyObject *tmp_call_arg_element_1; PyObject *tmp_call_arg_element_2; PyObject *tmp_call_arg_element_3; PyObject *tmp_call_arg_element_4; PyObject *tmp_call_arg_element_5; PyObject *tmp_call_arg_element_6; PyObject *tmp_call_arg_element_7; PyObject *tmp_call_arg_element_8; PyObject *tmp_call_arg_element_9; PyObject *tmp_call_arg_element_10; PyObject *tmp_call_arg_element_11; PyObject *tmp_call_arg_element_12; PyObject *tmp_call_arg_element_13; PyObject *tmp_call_arg_element_14; PyObject *tmp_call_arg_element_15; PyObject *tmp_call_arg_element_16; PyObject *tmp_call_arg_element_17; PyObject *tmp_call_arg_element_18; PyObject *tmp_call_arg_element_19; PyObject *tmp_call_arg_element_20; PyObject *tmp_call_arg_element_21; PyObject *tmp_call_arg_element_22; PyObject *tmp_call_arg_element_23; PyObject *tmp_call_arg_element_24; PyObject *tmp_call_arg_element_25; PyObject *tmp_call_arg_element_26; PyObject *tmp_call_arg_element_27; PyObject *tmp_call_arg_element_28; PyObject *tmp_call_arg_element_29; PyObject *tmp_call_arg_element_30; PyObject *tmp_call_arg_element_31; PyObject *tmp_call_arg_element_32; PyObject *tmp_call_arg_element_33; PyObject *tmp_call_arg_element_34; PyObject *tmp_call_arg_element_35; PyObject *tmp_call_arg_element_36; PyObject *tmp_call_arg_element_37; PyObject *tmp_call_arg_element_38; PyObject *tmp_call_arg_element_39; PyObject *tmp_call_arg_element_40; PyObject *tmp_call_arg_element_41; PyObject *tmp_call_arg_element_42; PyObject *tmp_call_arg_element_43; PyObject *tmp_call_arg_element_44; PyObject *tmp_call_arg_element_45; PyObject *tmp_call_arg_element_46; PyObject *tmp_call_arg_element_47; PyObject *tmp_call_arg_element_48; PyObject *tmp_call_arg_element_49; PyObject *tmp_call_arg_element_50; PyObject *tmp_call_arg_element_51; PyObject *tmp_call_arg_element_52; PyObject *tmp_call_arg_element_53; PyObject *tmp_call_arg_element_54; PyObject *tmp_call_arg_element_55; PyObject *tmp_call_arg_element_56; PyObject *tmp_call_arg_element_57; PyObject *tmp_call_arg_element_58; PyObject *tmp_call_arg_element_59; PyObject *tmp_call_arg_element_60; PyObject *tmp_call_arg_element_61; PyObject *tmp_call_arg_element_62; PyObject *tmp_call_arg_element_63; PyObject *tmp_call_arg_element_64; PyObject *tmp_call_arg_element_65; PyObject *tmp_call_arg_element_66; PyObject *tmp_call_arg_element_67; PyObject *tmp_call_arg_element_68; PyObject *tmp_called_1; PyObject *tmp_called_2; PyObject *tmp_called_3; PyObject *tmp_called_4; PyObject *tmp_called_5; PyObject *tmp_called_6; PyObject *tmp_called_7; PyObject *tmp_called_8; PyObject *tmp_called_9; PyObject *tmp_called_10; PyObject *tmp_called_11; PyObject *tmp_called_12; PyObject *tmp_called_13; PyObject *tmp_called_14; PyObject *tmp_called_15; PyObject *tmp_called_16; PyObject *tmp_called_17; PyObject *tmp_called_18; PyObject *tmp_called_19; PyObject *tmp_called_20; PyObject *tmp_called_21; PyObject *tmp_called_22; PyObject *tmp_called_23; PyObject *tmp_called_24; PyObject *tmp_called_25; PyObject *tmp_called_26; PyObject *tmp_called_27; PyObject *tmp_called_28; PyObject *tmp_called_29; PyObject *tmp_called_30; PyObject *tmp_called_31; PyObject *tmp_called_32; PyObject *tmp_called_33; PyObject *tmp_called_34; PyObject *tmp_called_35; PyObject *tmp_called_36; PyObject *tmp_called_37; PyObject *tmp_called_38; PyObject *tmp_called_39; PyObject *tmp_called_40; PyObject *tmp_called_41; PyObject *tmp_called_42; PyObject *tmp_called_43; PyObject *tmp_called_44; PyObject *tmp_called_45; PyObject *tmp_called_46; PyObject *tmp_called_47; int tmp_cmp_Eq_1; int tmp_cmp_Gt_1; int tmp_cmp_In_1; int tmp_cmp_In_2; int tmp_cmp_In_3; int tmp_cmp_In_4; int tmp_cmp_NotIn_1; PyObject *tmp_compare_left_1; PyObject *tmp_compare_left_2; PyObject *tmp_compare_left_3; PyObject *tmp_compare_left_4; PyObject *tmp_compare_left_5; PyObject *tmp_compare_left_6; PyObject *tmp_compare_left_7; PyObject *tmp_compare_right_1; PyObject *tmp_compare_right_2; PyObject *tmp_compare_right_3; PyObject *tmp_compare_right_4; PyObject *tmp_compare_right_5; PyObject *tmp_compare_right_6; PyObject *tmp_compare_right_7; PyObject *tmp_compexpr_left_1; PyObject *tmp_compexpr_left_2; PyObject *tmp_compexpr_left_3; PyObject *tmp_compexpr_left_4; PyObject *tmp_compexpr_left_5; PyObject *tmp_compexpr_left_6; PyObject *tmp_compexpr_left_7; PyObject *tmp_compexpr_left_8; PyObject *tmp_compexpr_right_1; PyObject *tmp_compexpr_right_2; PyObject *tmp_compexpr_right_3; PyObject *tmp_compexpr_right_4; PyObject *tmp_compexpr_right_5; PyObject *tmp_compexpr_right_6; PyObject *tmp_compexpr_right_7; PyObject *tmp_compexpr_right_8; int tmp_cond_truth_1; int tmp_cond_truth_2; int tmp_cond_truth_3; int tmp_cond_truth_4; int tmp_cond_truth_5; int tmp_cond_truth_6; int tmp_cond_truth_7; int tmp_cond_truth_8; int tmp_cond_truth_9; int tmp_cond_truth_10; int tmp_cond_truth_11; int tmp_cond_truth_12; int tmp_cond_truth_13; int tmp_cond_truth_14; int tmp_cond_truth_15; int tmp_cond_truth_16; int tmp_cond_truth_17; int tmp_cond_truth_18; int tmp_cond_truth_19; int tmp_cond_truth_20; int tmp_cond_truth_21; int tmp_cond_truth_22; PyObject *tmp_cond_value_1; PyObject *tmp_cond_value_2; PyObject *tmp_cond_value_3; PyObject *tmp_cond_value_4; PyObject *tmp_cond_value_5; PyObject *tmp_cond_value_6; PyObject *tmp_cond_value_7; PyObject *tmp_cond_value_8; PyObject *tmp_cond_value_9; PyObject *tmp_cond_value_10; PyObject *tmp_cond_value_11; PyObject *tmp_cond_value_12; PyObject *tmp_cond_value_13; PyObject *tmp_cond_value_14; PyObject *tmp_cond_value_15; PyObject *tmp_cond_value_16; PyObject *tmp_cond_value_17; PyObject *tmp_cond_value_18; PyObject *tmp_cond_value_19; PyObject *tmp_cond_value_20; PyObject *tmp_cond_value_21; PyObject *tmp_cond_value_22; PyObject *tmp_dict_key_1; PyObject *tmp_dict_key_2; PyObject *tmp_dict_key_3; PyObject *tmp_dict_key_4; PyObject *tmp_dict_key_5; PyObject *tmp_dict_key_6; PyObject *tmp_dict_key_7; PyObject *tmp_dict_key_8; PyObject *tmp_dict_key_9; PyObject *tmp_dict_key_10; PyObject *tmp_dict_key_11; PyObject *tmp_dict_key_12; PyObject *tmp_dict_key_13; PyObject *tmp_dict_value_1; PyObject *tmp_dict_value_2; PyObject *tmp_dict_value_3; PyObject *tmp_dict_value_4; PyObject *tmp_dict_value_5; PyObject *tmp_dict_value_6; PyObject *tmp_dict_value_7; PyObject *tmp_dict_value_8; PyObject *tmp_dict_value_9; PyObject *tmp_dict_value_10; PyObject *tmp_dict_value_11; PyObject *tmp_dict_value_12; PyObject *tmp_dict_value_13; PyObject *tmp_frame_locals; PyObject *tmp_isinstance_cls_1; PyObject *tmp_isinstance_cls_2; PyObject *tmp_isinstance_cls_3; PyObject *tmp_isinstance_cls_4; PyObject *tmp_isinstance_cls_5; PyObject *tmp_isinstance_cls_6; PyObject *tmp_isinstance_cls_7; PyObject *tmp_isinstance_inst_1; PyObject *tmp_isinstance_inst_2; PyObject *tmp_isinstance_inst_3; PyObject *tmp_isinstance_inst_4; PyObject *tmp_isinstance_inst_5; PyObject *tmp_isinstance_inst_6; PyObject *tmp_isinstance_inst_7; PyObject *tmp_iter_arg_1; PyObject *tmp_iter_arg_2; PyObject *tmp_iter_arg_3; PyObject *tmp_iter_arg_4; PyObject *tmp_iter_arg_5; PyObject *tmp_iter_arg_6; PyObject *tmp_iter_arg_7; PyObject *tmp_iter_arg_8; PyObject *tmp_iter_arg_9; PyObject *tmp_iter_arg_10; PyObject *tmp_iter_arg_11; PyObject *tmp_iterator_attempt_1; PyObject *tmp_iterator_attempt_2; PyObject *tmp_iterator_attempt_3; PyObject *tmp_iterator_name_1; PyObject *tmp_iterator_name_2; PyObject *tmp_iterator_name_3; PyObject *tmp_len_arg_1; PyObject *tmp_next_source_1; PyObject *tmp_next_source_2; PyObject *tmp_next_source_3; PyObject *tmp_next_source_4; PyObject *tmp_next_source_5; PyObject *tmp_next_source_6; PyObject *tmp_next_source_7; PyObject *tmp_next_source_8; PyObject *tmp_raise_type_1; PyObject *tmp_raise_value_1; int tmp_res; bool tmp_result; PyObject *tmp_return_value; Py_ssize_t tmp_slice_index_upper_1; Py_ssize_t tmp_slice_index_upper_2; PyObject *tmp_slice_source_1; PyObject *tmp_slice_source_2; Py_ssize_t tmp_sliceslicedel_index_lower_1; Py_ssize_t tmp_sliceslicedel_index_lower_2; PyObject *tmp_source_name_1; PyObject *tmp_source_name_2; PyObject *tmp_source_name_3; PyObject *tmp_source_name_4; PyObject *tmp_source_name_5; PyObject *tmp_source_name_6; PyObject *tmp_source_name_7; PyObject *tmp_subscr_subscript_1; PyObject *tmp_subscr_subscript_2; PyObject *tmp_subscr_subscript_3; PyObject *tmp_subscr_subscript_4; PyObject *tmp_subscr_subscript_5; PyObject *tmp_subscr_subscript_6; PyObject *tmp_subscr_subscript_7; PyObject *tmp_subscr_subscript_8; PyObject *tmp_subscr_subscript_9; PyObject *tmp_subscr_subscript_10; PyObject *tmp_subscr_subscript_11; PyObject *tmp_subscr_subscript_12; PyObject *tmp_subscr_subscript_13; PyObject *tmp_subscr_subscript_14; PyObject *tmp_subscr_subscript_15; PyObject *tmp_subscr_subscript_16; PyObject *tmp_subscr_subscript_17; PyObject *tmp_subscr_subscript_18; PyObject *tmp_subscr_subscript_19; PyObject *tmp_subscr_subscript_20; PyObject *tmp_subscr_subscript_21; PyObject *tmp_subscr_subscript_22; PyObject *tmp_subscr_subscript_23; PyObject *tmp_subscr_subscript_24; PyObject *tmp_subscr_subscript_25; PyObject *tmp_subscr_subscript_26; PyObject *tmp_subscr_subscript_27; PyObject *tmp_subscr_subscript_28; PyObject *tmp_subscr_subscript_29; PyObject *tmp_subscr_subscript_30; PyObject *tmp_subscr_subscript_31; PyObject *tmp_subscr_subscript_32; PyObject *tmp_subscr_subscript_33; PyObject *tmp_subscr_subscript_34; PyObject *tmp_subscr_subscript_35; PyObject *tmp_subscr_subscript_36; PyObject *tmp_subscr_subscript_37; PyObject *tmp_subscr_subscript_38; PyObject *tmp_subscr_subscript_39; PyObject *tmp_subscr_subscript_40; PyObject *tmp_subscr_subscript_41; PyObject *tmp_subscr_subscript_42; PyObject *tmp_subscr_subscript_43; PyObject *tmp_subscr_subscript_44; PyObject *tmp_subscr_subscript_45; PyObject *tmp_subscr_subscript_46; PyObject *tmp_subscr_subscript_47; PyObject *tmp_subscr_subscript_48; PyObject *tmp_subscr_subscript_49; PyObject *tmp_subscr_subscript_50; PyObject *tmp_subscr_subscript_51; PyObject *tmp_subscr_subscript_52; PyObject *tmp_subscr_subscript_53; PyObject *tmp_subscr_subscript_54; PyObject *tmp_subscr_subscript_55; PyObject *tmp_subscr_subscript_56; PyObject *tmp_subscr_subscript_57; PyObject *tmp_subscr_target_1; PyObject *tmp_subscr_target_2; PyObject *tmp_subscr_target_3; PyObject *tmp_subscr_target_4; PyObject *tmp_subscr_target_5; PyObject *tmp_subscr_target_6; PyObject *tmp_subscr_target_7; PyObject *tmp_subscr_target_8; PyObject *tmp_subscr_target_9; PyObject *tmp_subscr_target_10; PyObject *tmp_subscr_target_11; PyObject *tmp_subscr_target_12; PyObject *tmp_subscr_target_13; PyObject *tmp_subscr_target_14; PyObject *tmp_subscr_target_15; PyObject *tmp_subscr_target_16; PyObject *tmp_subscr_target_17; PyObject *tmp_subscr_target_18; PyObject *tmp_subscr_target_19; PyObject *tmp_subscr_target_20; PyObject *tmp_subscr_target_21; PyObject *tmp_subscr_target_22; PyObject *tmp_subscr_target_23; PyObject *tmp_subscr_target_24; PyObject *tmp_subscr_target_25; PyObject *tmp_subscr_target_26; PyObject *tmp_subscr_target_27; PyObject *tmp_subscr_target_28; PyObject *tmp_subscr_target_29; PyObject *tmp_subscr_target_30; PyObject *tmp_subscr_target_31; PyObject *tmp_subscr_target_32; PyObject *tmp_subscr_target_33; PyObject *tmp_subscr_target_34; PyObject *tmp_subscr_target_35; PyObject *tmp_subscr_target_36; PyObject *tmp_subscr_target_37; PyObject *tmp_subscr_target_38; PyObject *tmp_subscr_target_39; PyObject *tmp_subscr_target_40; PyObject *tmp_subscr_target_41; PyObject *tmp_subscr_target_42; PyObject *tmp_subscr_target_43; PyObject *tmp_subscr_target_44; PyObject *tmp_subscr_target_45; PyObject *tmp_subscr_target_46; PyObject *tmp_subscr_target_47; PyObject *tmp_subscr_target_48; PyObject *tmp_subscr_target_49; PyObject *tmp_subscr_target_50; PyObject *tmp_subscr_target_51; PyObject *tmp_subscr_target_52; PyObject *tmp_subscr_target_53; PyObject *tmp_subscr_target_54; PyObject *tmp_subscr_target_55; PyObject *tmp_subscr_target_56; PyObject *tmp_subscr_target_57; int tmp_tried_lineno_1; int tmp_tried_lineno_2; int tmp_tried_lineno_3; int tmp_tried_lineno_4; int tmp_tried_lineno_5; int tmp_tried_lineno_6; int tmp_tried_lineno_7; int tmp_tried_lineno_8; int tmp_tried_lineno_9; int tmp_tried_lineno_10; int tmp_tried_lineno_11; int tmp_tried_lineno_12; int tmp_tried_lineno_13; int tmp_tried_lineno_14; int tmp_tried_lineno_15; int tmp_tried_lineno_16; int tmp_tried_lineno_17; int tmp_tried_lineno_18; int tmp_tried_lineno_19; int tmp_tried_lineno_20; int tmp_tried_lineno_21; int tmp_tried_lineno_22; PyObject *tmp_tuple_element_1; PyObject *tmp_tuple_element_2; PyObject *tmp_tuple_element_3; PyObject *tmp_tuple_element_4; PyObject *tmp_type_arg_1; PyObject *tmp_unary_arg_1; PyObject *tmp_unary_arg_2; PyObject *tmp_unary_arg_3; PyObject *tmp_unpack_1; PyObject *tmp_unpack_2; PyObject *tmp_unpack_3; PyObject *tmp_unpack_4; PyObject *tmp_unpack_5; PyObject *tmp_unpack_6; NUITKA_MAY_BE_UNUSED PyObject *tmp_unused; tmp_return_value = NULL; // Actual function code. static PyFrameObject *cache_frame_function = NULL; MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_fc191ca33fb34ff1ba4327ff3087b85f, module_numpy$f2py$rules ); PyFrameObject *frame_function = cache_frame_function; // Push the new frame as the currently active one. pushFrameStack( frame_function ); // Mark the frame object as in use, ref count 1 will be up for reuse. Py_INCREF( frame_function ); assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack #if PYTHON_VERSION >= 340 frame_function->f_executing += 1; #endif // Framed code: // Tried code tmp_source_name_1 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_func2subr ); if (unlikely( tmp_source_name_1 == NULL )) { tmp_source_name_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_func2subr ); } if ( tmp_source_name_1 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 131173 ], 38, 0 ); exception_tb = NULL; frame_function->f_lineno = 1328; goto try_finally_handler_1; } tmp_called_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_assubr ); if ( tmp_called_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1328; goto try_finally_handler_1; } tmp_call_arg_element_1 = par_rout.object; if ( tmp_call_arg_element_1 == NULL ) { Py_DECREF( tmp_called_1 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124776 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1328; goto try_finally_handler_1; } frame_function->f_lineno = 1328; tmp_iter_arg_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_1, tmp_call_arg_element_1 ); Py_DECREF( tmp_called_1 ); if ( tmp_iter_arg_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1328; goto try_finally_handler_1; } tmp_assign_source_1 = MAKE_ITERATOR( tmp_iter_arg_1 ); Py_DECREF( tmp_iter_arg_1 ); if ( tmp_assign_source_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1328; goto try_finally_handler_1; } assert( tmp_tuple_unpack_1__source_iter.object == NULL ); tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_1; tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object; tmp_assign_source_2 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 ); if ( tmp_assign_source_2 == NULL ) { if ( !ERROR_OCCURED() ) { exception_type = INCREASE_REFCOUNT( PyExc_StopIteration ); exception_value = NULL; exception_tb = NULL; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); } frame_function->f_lineno = 1328; goto try_finally_handler_1; } assert( tmp_tuple_unpack_1__element_1.object == NULL ); tmp_tuple_unpack_1__element_1.object = tmp_assign_source_2; tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object; tmp_assign_source_3 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 ); if ( tmp_assign_source_3 == NULL ) { if ( !ERROR_OCCURED() ) { exception_type = INCREASE_REFCOUNT( PyExc_StopIteration ); exception_value = NULL; exception_tb = NULL; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); } frame_function->f_lineno = 1328; goto try_finally_handler_1; } assert( tmp_tuple_unpack_1__element_2.object == NULL ); tmp_tuple_unpack_1__element_2.object = tmp_assign_source_3; tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object; // Check if iterator has left-over elements. assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) ); tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 ); if (likely( tmp_iterator_attempt_1 == NULL )) { // TODO: Could first fetch, then check, should be faster. if ( !ERROR_OCCURED() ) { } else if ( PyErr_ExceptionMatches( PyExc_StopIteration )) { PyErr_Clear(); } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); goto try_finally_handler_1; } } else { Py_DECREF( tmp_iterator_attempt_1 ); // TODO: Could avoid PyErr_Format. #if PYTHON_VERSION < 300 PyErr_Format( PyExc_ValueError, "too many values to unpack" ); #else PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" ); #endif PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); goto try_finally_handler_1; } tmp_assign_source_4 = tmp_tuple_unpack_1__element_1.object; if (par_rout.object == NULL) { par_rout.object = INCREASE_REFCOUNT( tmp_assign_source_4 ); } else { PyObject *old = par_rout.object; par_rout.object = INCREASE_REFCOUNT( tmp_assign_source_4 ); Py_DECREF( old ); } tmp_assign_source_5 = tmp_tuple_unpack_1__element_2.object; assert( var_wrap.object == NULL ); var_wrap.object = INCREASE_REFCOUNT( tmp_assign_source_5 ); // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_1:; exception_keeper_type_1 = exception_type; exception_keeper_value_1 = exception_value; exception_keeper_tb_1 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_1 = frame_function->f_lineno; Py_XDECREF( tmp_tuple_unpack_1__source_iter.object ); tmp_tuple_unpack_1__source_iter.object = NULL; Py_XDECREF( tmp_tuple_unpack_1__element_1.object ); tmp_tuple_unpack_1__element_1.object = NULL; Py_XDECREF( tmp_tuple_unpack_1__element_2.object ); tmp_tuple_unpack_1__element_2.object = NULL; frame_function->f_lineno = tmp_tried_lineno_1; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_1 != NULL ) { exception_type = exception_keeper_type_1; exception_value = exception_keeper_value_1; exception_tb = exception_keeper_tb_1; goto frame_exception_exit_1; } goto finally_end_1; finally_end_1:; // Tried code tmp_called_2 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_getargs2 ); if (unlikely( tmp_called_2 == NULL )) { tmp_called_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_getargs2 ); } if ( tmp_called_2 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152181 ], 37, 0 ); exception_tb = NULL; frame_function->f_lineno = 1329; goto try_finally_handler_2; } tmp_call_arg_element_2 = par_rout.object; if ( tmp_call_arg_element_2 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124776 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1329; goto try_finally_handler_2; } frame_function->f_lineno = 1329; tmp_iter_arg_2 = CALL_FUNCTION_WITH_ARGS1( tmp_called_2, tmp_call_arg_element_2 ); if ( tmp_iter_arg_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1329; goto try_finally_handler_2; } tmp_assign_source_6 = MAKE_ITERATOR( tmp_iter_arg_2 ); Py_DECREF( tmp_iter_arg_2 ); if ( tmp_assign_source_6 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1329; goto try_finally_handler_2; } assert( tmp_tuple_unpack_2__source_iter.object == NULL ); tmp_tuple_unpack_2__source_iter.object = tmp_assign_source_6; tmp_unpack_3 = tmp_tuple_unpack_2__source_iter.object; tmp_assign_source_7 = UNPACK_PARAMETER_NEXT( tmp_unpack_3, 0 ); if ( tmp_assign_source_7 == NULL ) { if ( !ERROR_OCCURED() ) { exception_type = INCREASE_REFCOUNT( PyExc_StopIteration ); exception_value = NULL; exception_tb = NULL; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); } frame_function->f_lineno = 1329; goto try_finally_handler_2; } assert( tmp_tuple_unpack_2__element_1.object == NULL ); tmp_tuple_unpack_2__element_1.object = tmp_assign_source_7; tmp_unpack_4 = tmp_tuple_unpack_2__source_iter.object; tmp_assign_source_8 = UNPACK_PARAMETER_NEXT( tmp_unpack_4, 1 ); if ( tmp_assign_source_8 == NULL ) { if ( !ERROR_OCCURED() ) { exception_type = INCREASE_REFCOUNT( PyExc_StopIteration ); exception_value = NULL; exception_tb = NULL; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); } frame_function->f_lineno = 1329; goto try_finally_handler_2; } assert( tmp_tuple_unpack_2__element_2.object == NULL ); tmp_tuple_unpack_2__element_2.object = tmp_assign_source_8; tmp_iterator_name_2 = tmp_tuple_unpack_2__source_iter.object; // Check if iterator has left-over elements. assertObject( tmp_iterator_name_2 ); assert( PyIter_Check( tmp_iterator_name_2 ) ); tmp_iterator_attempt_2 = (*Py_TYPE( tmp_iterator_name_2 )->tp_iternext)( tmp_iterator_name_2 ); if (likely( tmp_iterator_attempt_2 == NULL )) { // TODO: Could first fetch, then check, should be faster. if ( !ERROR_OCCURED() ) { } else if ( PyErr_ExceptionMatches( PyExc_StopIteration )) { PyErr_Clear(); } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); goto try_finally_handler_2; } } else { Py_DECREF( tmp_iterator_attempt_2 ); // TODO: Could avoid PyErr_Format. #if PYTHON_VERSION < 300 PyErr_Format( PyExc_ValueError, "too many values to unpack" ); #else PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" ); #endif PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); goto try_finally_handler_2; } tmp_assign_source_9 = tmp_tuple_unpack_2__element_1.object; assert( var_args.object == NULL ); var_args.object = INCREASE_REFCOUNT( tmp_assign_source_9 ); tmp_assign_source_10 = tmp_tuple_unpack_2__element_2.object; assert( var_depargs.object == NULL ); var_depargs.object = INCREASE_REFCOUNT( tmp_assign_source_10 ); // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_2:; exception_keeper_type_2 = exception_type; exception_keeper_value_2 = exception_value; exception_keeper_tb_2 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_2 = frame_function->f_lineno; Py_XDECREF( tmp_tuple_unpack_2__source_iter.object ); tmp_tuple_unpack_2__source_iter.object = NULL; Py_XDECREF( tmp_tuple_unpack_2__element_1.object ); tmp_tuple_unpack_2__element_1.object = NULL; Py_XDECREF( tmp_tuple_unpack_2__element_2.object ); tmp_tuple_unpack_2__element_2.object = NULL; frame_function->f_lineno = tmp_tried_lineno_2; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_2 != NULL ) { exception_type = exception_keeper_type_2; exception_value = exception_keeper_value_2; exception_tb = exception_keeper_tb_2; goto frame_exception_exit_1; } goto finally_end_2; finally_end_2:; tmp_assattr_name_1 = var_depargs.object; if ( tmp_assattr_name_1 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129663 ], 53, 0 ); exception_tb = NULL; frame_function->f_lineno = 1330; goto frame_exception_exit_1; } tmp_assattr_target_1 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_capi_maps ); if (unlikely( tmp_assattr_target_1 == NULL )) { tmp_assattr_target_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_capi_maps ); } if ( tmp_assattr_target_1 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 131261 ], 38, 0 ); exception_tb = NULL; frame_function->f_lineno = 1330; goto frame_exception_exit_1; } tmp_result = SET_ATTRIBUTE( tmp_assattr_target_1, const_str_plain_depargs, tmp_assattr_name_1 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1330; goto frame_exception_exit_1; } tmp_subscr_target_1 = par_rout.object; if ( tmp_subscr_target_1 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124776 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1331; goto frame_exception_exit_1; } tmp_subscr_subscript_1 = const_str_plain_vars; tmp_assign_source_11 = LOOKUP_SUBSCRIPT( tmp_subscr_target_1, tmp_subscr_subscript_1 ); if ( tmp_assign_source_11 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1331; goto frame_exception_exit_1; } assert( var_var.object == NULL ); var_var.object = tmp_assign_source_11; // Tried code tmp_assign_source_12 = NULL; // Tried code tmp_source_name_2 = var_var.object; tmp_called_3 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_keys ); if ( tmp_called_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1332; goto try_finally_handler_4; } frame_function->f_lineno = 1332; tmp_iter_arg_3 = CALL_FUNCTION_NO_ARGS( tmp_called_3 ); Py_DECREF( tmp_called_3 ); if ( tmp_iter_arg_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1332; goto try_finally_handler_4; } tmp_assign_source_13 = MAKE_ITERATOR( tmp_iter_arg_3 ); Py_DECREF( tmp_iter_arg_3 ); if ( tmp_assign_source_13 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1332; goto try_finally_handler_4; } assert( tmp_listcontr_1__listcontr_iter.object == NULL ); tmp_listcontr_1__listcontr_iter.object = tmp_assign_source_13; tmp_assign_source_14 = PyList_New( 0 ); assert( tmp_listcontr_1__listcontr_result.object == NULL ); tmp_listcontr_1__listcontr_result.object = tmp_assign_source_14; loop_start_1:; tmp_next_source_1 = tmp_listcontr_1__listcontr_iter.object; tmp_assign_source_15 = ITERATOR_NEXT( tmp_next_source_1 ); if (tmp_assign_source_15 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_1; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1332; goto try_finally_handler_4; } } if (tmp_listcontr_1__iter_value_0.object == NULL) { tmp_listcontr_1__iter_value_0.object = tmp_assign_source_15; } else { PyObject *old = tmp_listcontr_1__iter_value_0.object; tmp_listcontr_1__iter_value_0.object = tmp_assign_source_15; Py_DECREF( old ); } tmp_assign_source_16 = tmp_listcontr_1__iter_value_0.object; if (var_a.object == NULL) { var_a.object = INCREASE_REFCOUNT( tmp_assign_source_16 ); } else { PyObject *old = var_a.object; var_a.object = INCREASE_REFCOUNT( tmp_assign_source_16 ); Py_DECREF( old ); } tmp_called_4 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_aux ); if (unlikely( tmp_called_4 == NULL )) { tmp_called_4 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_aux ); } if ( tmp_called_4 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126649 ], 41, 0 ); exception_tb = NULL; frame_function->f_lineno = 1332; goto try_finally_handler_4; } tmp_subscr_target_2 = var_var.object; if ( tmp_subscr_target_2 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 88437 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1332; goto try_finally_handler_4; } tmp_subscr_subscript_2 = var_a.object; tmp_call_arg_element_3 = LOOKUP_SUBSCRIPT( tmp_subscr_target_2, tmp_subscr_subscript_2 ); if ( tmp_call_arg_element_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1332; goto try_finally_handler_4; } frame_function->f_lineno = 1332; tmp_cond_value_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_4, tmp_call_arg_element_3 ); Py_DECREF( tmp_call_arg_element_3 ); if ( tmp_cond_value_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1332; goto try_finally_handler_4; } tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 ); if ( tmp_cond_truth_1 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_cond_value_1 ); frame_function->f_lineno = 1332; goto try_finally_handler_4; } Py_DECREF( tmp_cond_value_1 ); if (tmp_cond_truth_1 == 1) { goto branch_yes_1; } else { goto branch_no_1; } branch_yes_1:; tmp_append_to_1 = tmp_listcontr_1__listcontr_result.object; tmp_append_value_1 = var_a.object; tmp_res = PyList_Append( tmp_append_to_1, tmp_append_value_1 ); if ( tmp_res == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1332; goto try_finally_handler_4; } tmp_unused = Py_None; branch_no_1:; if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1332; goto try_finally_handler_4; } goto loop_start_1; loop_end_1:; tmp_assign_source_12 = tmp_listcontr_1__listcontr_result.object; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_4:; exception_keeper_type_3 = exception_type; exception_keeper_value_3 = exception_value; exception_keeper_tb_3 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_3 = frame_function->f_lineno; Py_XDECREF( tmp_listcontr_1__iter_value_0.object ); tmp_listcontr_1__iter_value_0.object = NULL; frame_function->f_lineno = tmp_tried_lineno_3; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_3 != NULL ) { exception_type = exception_keeper_type_3; exception_value = exception_keeper_value_3; exception_tb = exception_keeper_tb_3; goto try_finally_handler_3; } goto finally_end_3; finally_end_3:; assert( var_auxvars.object == NULL ); var_auxvars.object = INCREASE_REFCOUNT( tmp_assign_source_12 ); // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_3:; exception_keeper_type_4 = exception_type; exception_keeper_value_4 = exception_value; exception_keeper_tb_4 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_4 = frame_function->f_lineno; Py_XDECREF( tmp_listcontr_1__listcontr_result.object ); tmp_listcontr_1__listcontr_result.object = NULL; Py_XDECREF( tmp_listcontr_1__listcontr_iter.object ); tmp_listcontr_1__listcontr_iter.object = NULL; frame_function->f_lineno = tmp_tried_lineno_4; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_4 != NULL ) { exception_type = exception_keeper_type_4; exception_value = exception_keeper_value_4; exception_tb = exception_keeper_tb_4; goto frame_exception_exit_1; } goto finally_end_4; finally_end_4:; tmp_called_5 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_called_5 == NULL )) { tmp_called_5 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_called_5 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150156 ], 44, 0 ); exception_tb = NULL; frame_function->f_lineno = 1334; goto frame_exception_exit_1; } tmp_call_arg_element_4 = par_rout.object; if ( tmp_call_arg_element_4 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124776 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1334; goto frame_exception_exit_1; } frame_function->f_lineno = 1334; tmp_cond_value_2 = CALL_FUNCTION_WITH_ARGS1( tmp_called_5, tmp_call_arg_element_4 ); if ( tmp_cond_value_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1334; goto frame_exception_exit_1; } tmp_cond_truth_2 = CHECK_IF_TRUE( tmp_cond_value_2 ); if ( tmp_cond_truth_2 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_cond_value_2 ); frame_function->f_lineno = 1334; goto frame_exception_exit_1; } Py_DECREF( tmp_cond_value_2 ); if (tmp_cond_truth_2 == 1) { goto branch_yes_2; } else { goto branch_no_2; } branch_yes_2:; tmp_called_6 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_outmess ); if (unlikely( tmp_called_6 == NULL )) { tmp_called_6 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_outmess ); } if ( tmp_called_6 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125154 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1335; goto frame_exception_exit_1; } tmp_binop_left_1 = const_str_digest_9a09d3352ebc0352e2ebe35a2c06dfe2; tmp_binop_right_1 = PyTuple_New( 2 ); tmp_subscr_target_3 = par_rout.object; if ( tmp_subscr_target_3 == NULL ) { Py_DECREF( tmp_binop_right_1 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124776 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1335; goto frame_exception_exit_1; } tmp_subscr_subscript_3 = const_str_plain_modulename; tmp_tuple_element_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_3, tmp_subscr_subscript_3 ); if ( tmp_tuple_element_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_binop_right_1 ); frame_function->f_lineno = 1335; goto frame_exception_exit_1; } PyTuple_SET_ITEM( tmp_binop_right_1, 0, tmp_tuple_element_1 ); tmp_subscr_target_4 = par_rout.object; if ( tmp_subscr_target_4 == NULL ) { Py_DECREF( tmp_binop_right_1 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124776 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1335; goto frame_exception_exit_1; } tmp_subscr_subscript_4 = const_str_plain_name; tmp_tuple_element_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_4, tmp_subscr_subscript_4 ); if ( tmp_tuple_element_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_binop_right_1 ); frame_function->f_lineno = 1335; goto frame_exception_exit_1; } PyTuple_SET_ITEM( tmp_binop_right_1, 1, tmp_tuple_element_1 ); tmp_call_arg_element_5 = BINARY_OPERATION_REMAINDER( tmp_binop_left_1, tmp_binop_right_1 ); Py_DECREF( tmp_binop_right_1 ); if ( tmp_call_arg_element_5 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1335; goto frame_exception_exit_1; } frame_function->f_lineno = 1335; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_6, tmp_call_arg_element_5 ); Py_DECREF( tmp_call_arg_element_5 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1335; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); goto branch_end_2; branch_no_2:; tmp_called_7 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_outmess ); if (unlikely( tmp_called_7 == NULL )) { tmp_called_7 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_outmess ); } if ( tmp_called_7 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125154 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1337; goto frame_exception_exit_1; } tmp_binop_left_2 = const_str_digest_0b2ee4e163c7715c3637d39da00ca3d5; tmp_subscr_target_5 = par_rout.object; if ( tmp_subscr_target_5 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124776 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1337; goto frame_exception_exit_1; } tmp_subscr_subscript_5 = const_str_plain_name; tmp_binop_right_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_5, tmp_subscr_subscript_5 ); if ( tmp_binop_right_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1337; goto frame_exception_exit_1; } tmp_call_arg_element_6 = BINARY_OPERATION_REMAINDER( tmp_binop_left_2, tmp_binop_right_2 ); Py_DECREF( tmp_binop_right_2 ); if ( tmp_call_arg_element_6 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1337; goto frame_exception_exit_1; } frame_function->f_lineno = 1337; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_7, tmp_call_arg_element_6 ); Py_DECREF( tmp_call_arg_element_6 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1337; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); branch_end_2:; tmp_called_8 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_routsign2map ); if (unlikely( tmp_called_8 == NULL )) { tmp_called_8 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_routsign2map ); } if ( tmp_called_8 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152218 ], 41, 0 ); exception_tb = NULL; frame_function->f_lineno = 1339; goto frame_exception_exit_1; } tmp_call_arg_element_7 = par_rout.object; if ( tmp_call_arg_element_7 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124776 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1339; goto frame_exception_exit_1; } frame_function->f_lineno = 1339; tmp_assign_source_17 = CALL_FUNCTION_WITH_ARGS1( tmp_called_8, tmp_call_arg_element_7 ); if ( tmp_assign_source_17 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1339; goto frame_exception_exit_1; } assert( var_vrd.object == NULL ); var_vrd.object = tmp_assign_source_17; tmp_called_9 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_dictappend ); if (unlikely( tmp_called_9 == NULL )) { tmp_called_9 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dictappend ); } if ( tmp_called_9 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126933 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1340; goto frame_exception_exit_1; } tmp_call_arg_element_8 = PyDict_New(); tmp_call_arg_element_9 = var_vrd.object; frame_function->f_lineno = 1340; tmp_assign_source_18 = CALL_FUNCTION_WITH_ARGS2( tmp_called_9, tmp_call_arg_element_8, tmp_call_arg_element_9 ); Py_DECREF( tmp_call_arg_element_8 ); if ( tmp_assign_source_18 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1340; goto frame_exception_exit_1; } assert( var_rd.object == NULL ); var_rd.object = tmp_assign_source_18; tmp_iter_arg_4 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_rout_rules ); if (unlikely( tmp_iter_arg_4 == NULL )) { tmp_iter_arg_4 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_rout_rules ); } if ( tmp_iter_arg_4 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152259 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1341; goto frame_exception_exit_1; } tmp_assign_source_19 = MAKE_ITERATOR( tmp_iter_arg_4 ); if ( tmp_assign_source_19 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1341; goto frame_exception_exit_1; } assert( tmp_for_loop_1__for_iterator.object == NULL ); tmp_for_loop_1__for_iterator.object = tmp_assign_source_19; // Tried code loop_start_2:; tmp_next_source_2 = tmp_for_loop_1__for_iterator.object; tmp_assign_source_20 = ITERATOR_NEXT( tmp_next_source_2 ); if (tmp_assign_source_20 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_2; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1341; goto try_finally_handler_5; } } if (tmp_for_loop_1__iter_value.object == NULL) { tmp_for_loop_1__iter_value.object = tmp_assign_source_20; } else { PyObject *old = tmp_for_loop_1__iter_value.object; tmp_for_loop_1__iter_value.object = tmp_assign_source_20; Py_DECREF( old ); } tmp_assign_source_21 = tmp_for_loop_1__iter_value.object; if (var_r.object == NULL) { var_r.object = INCREASE_REFCOUNT( tmp_assign_source_21 ); } else { PyObject *old = var_r.object; var_r.object = INCREASE_REFCOUNT( tmp_assign_source_21 ); Py_DECREF( old ); } // Tried code tmp_cond_value_3 = NULL; // Tried code // Tried code tmp_assign_source_22 = NULL; // Tried code tmp_compexpr_left_1 = const_str_plain__check; tmp_compexpr_right_1 = var_r.object; tmp_assign_source_23 = SEQUENCE_CONTAINS( tmp_compexpr_left_1, tmp_compexpr_right_1 ); if ( tmp_assign_source_23 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1342; goto try_finally_handler_9; } if (tmp_and_1__value_1.object == NULL) { tmp_and_1__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_23 ); } else { PyObject *old = tmp_and_1__value_1.object; tmp_and_1__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_23 ); Py_DECREF( old ); } tmp_cond_value_4 = tmp_and_1__value_1.object; tmp_cond_truth_4 = CHECK_IF_TRUE( tmp_cond_value_4 ); if ( tmp_cond_truth_4 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1342; goto try_finally_handler_9; } if (tmp_cond_truth_4 == 1) { goto condexpr_true_1; } else { goto condexpr_false_1; } condexpr_true_1:; tmp_assign_source_22 = NULL; // Tried code tmp_result = tmp_and_1__value_1.object != NULL; if ( tmp_result == true ) { Py_DECREF( tmp_and_1__value_1.object ); tmp_and_1__value_1.object = NULL; } assert( tmp_result != false ); tmp_subscr_target_6 = var_r.object; tmp_subscr_subscript_6 = const_str_plain__check; tmp_called_10 = LOOKUP_SUBSCRIPT( tmp_subscr_target_6, tmp_subscr_subscript_6 ); if ( tmp_called_10 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1342; goto try_finally_handler_10; } tmp_call_arg_element_10 = par_rout.object; if ( tmp_call_arg_element_10 == NULL ) { Py_DECREF( tmp_called_10 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124776 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1342; goto try_finally_handler_10; } frame_function->f_lineno = 1342; tmp_assign_source_22 = CALL_FUNCTION_WITH_ARGS1( tmp_called_10, tmp_call_arg_element_10 ); Py_DECREF( tmp_called_10 ); if ( tmp_assign_source_22 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1342; goto try_finally_handler_10; } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_10:; exception_keeper_type_5 = exception_type; exception_keeper_value_5 = exception_value; exception_keeper_tb_5 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_5 != NULL ) { exception_type = exception_keeper_type_5; exception_value = exception_keeper_value_5; exception_tb = exception_keeper_tb_5; goto try_finally_handler_9; } goto finally_end_5; finally_end_5:; goto condexpr_end_1; condexpr_false_1:; tmp_assign_source_22 = tmp_and_1__value_1.object; Py_INCREF( tmp_assign_source_22 ); condexpr_end_1:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_9:; exception_keeper_type_6 = exception_type; exception_keeper_value_6 = exception_value; exception_keeper_tb_6 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_6 != NULL ) { exception_type = exception_keeper_type_6; exception_value = exception_keeper_value_6; exception_tb = exception_keeper_tb_6; goto try_finally_handler_8; } goto finally_end_6; finally_end_6:; if (tmp_or_1__value_1.object == NULL) { tmp_or_1__value_1.object = tmp_assign_source_22; } else { PyObject *old = tmp_or_1__value_1.object; tmp_or_1__value_1.object = tmp_assign_source_22; Py_DECREF( old ); } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_8:; exception_keeper_type_7 = exception_type; exception_keeper_value_7 = exception_value; exception_keeper_tb_7 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_5 = frame_function->f_lineno; Py_XDECREF( tmp_and_1__value_1.object ); tmp_and_1__value_1.object = NULL; frame_function->f_lineno = tmp_tried_lineno_5; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_7 != NULL ) { exception_type = exception_keeper_type_7; exception_value = exception_keeper_value_7; exception_tb = exception_keeper_tb_7; goto try_finally_handler_7; } goto finally_end_7; finally_end_7:; tmp_cond_value_5 = tmp_or_1__value_1.object; tmp_cond_truth_5 = CHECK_IF_TRUE( tmp_cond_value_5 ); if ( tmp_cond_truth_5 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1342; goto try_finally_handler_7; } if (tmp_cond_truth_5 == 1) { goto condexpr_true_2; } else { goto condexpr_false_2; } condexpr_true_2:; tmp_cond_value_3 = tmp_or_1__value_1.object; goto condexpr_end_2; condexpr_false_2:; tmp_cond_value_3 = NULL; // Tried code tmp_result = tmp_or_1__value_1.object != NULL; if ( tmp_result == true ) { Py_DECREF( tmp_or_1__value_1.object ); tmp_or_1__value_1.object = NULL; } assert( tmp_result != false ); tmp_compexpr_left_2 = const_str_plain__check; tmp_compexpr_right_2 = var_r.object; if ( tmp_compexpr_right_2 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 11969 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1342; goto try_finally_handler_11; } tmp_cond_value_3 = SEQUENCE_CONTAINS_NOT( tmp_compexpr_left_2, tmp_compexpr_right_2 ); if ( tmp_cond_value_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1342; goto try_finally_handler_11; } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_11:; exception_keeper_type_8 = exception_type; exception_keeper_value_8 = exception_value; exception_keeper_tb_8 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_8 != NULL ) { exception_type = exception_keeper_type_8; exception_value = exception_keeper_value_8; exception_tb = exception_keeper_tb_8; goto try_finally_handler_7; } goto finally_end_8; finally_end_8:; condexpr_end_2:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_7:; exception_keeper_type_9 = exception_type; exception_keeper_value_9 = exception_value; exception_keeper_tb_9 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_9 != NULL ) { exception_type = exception_keeper_type_9; exception_value = exception_keeper_value_9; exception_tb = exception_keeper_tb_9; goto try_finally_handler_6; } goto finally_end_9; finally_end_9:; tmp_cond_truth_3 = CHECK_IF_TRUE( tmp_cond_value_3 ); if ( tmp_cond_truth_3 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1342; goto try_finally_handler_6; } if (tmp_cond_truth_3 == 1) { goto branch_yes_3; } else { goto branch_no_3; } branch_yes_3:; tmp_called_11 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_applyrules ); if (unlikely( tmp_called_11 == NULL )) { tmp_called_11 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_applyrules ); } if ( tmp_called_11 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127020 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1343; goto try_finally_handler_6; } tmp_call_arg_element_11 = var_r.object; if ( tmp_call_arg_element_11 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 11969 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1343; goto try_finally_handler_6; } tmp_call_arg_element_12 = var_vrd.object; if ( tmp_call_arg_element_12 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129813 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1343; goto try_finally_handler_6; } tmp_call_arg_element_13 = par_rout.object; if ( tmp_call_arg_element_13 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124776 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1343; goto try_finally_handler_6; } frame_function->f_lineno = 1343; tmp_assign_source_24 = CALL_FUNCTION_WITH_ARGS3( tmp_called_11, tmp_call_arg_element_11, tmp_call_arg_element_12, tmp_call_arg_element_13 ); if ( tmp_assign_source_24 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1343; goto try_finally_handler_6; } if (var_ar.object == NULL) { var_ar.object = tmp_assign_source_24; } else { PyObject *old = var_ar.object; var_ar.object = tmp_assign_source_24; Py_DECREF( old ); } tmp_called_12 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_dictappend ); if (unlikely( tmp_called_12 == NULL )) { tmp_called_12 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dictappend ); } if ( tmp_called_12 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126933 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1344; goto try_finally_handler_6; } tmp_call_arg_element_14 = var_rd.object; if ( tmp_call_arg_element_14 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1344; goto try_finally_handler_6; } tmp_call_arg_element_15 = var_ar.object; frame_function->f_lineno = 1344; tmp_assign_source_25 = CALL_FUNCTION_WITH_ARGS2( tmp_called_12, tmp_call_arg_element_14, tmp_call_arg_element_15 ); if ( tmp_assign_source_25 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1344; goto try_finally_handler_6; } if (var_rd.object == NULL) { var_rd.object = tmp_assign_source_25; } else { PyObject *old = var_rd.object; var_rd.object = tmp_assign_source_25; Py_DECREF( old ); } branch_no_3:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_6:; exception_keeper_type_10 = exception_type; exception_keeper_value_10 = exception_value; exception_keeper_tb_10 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_6 = frame_function->f_lineno; Py_XDECREF( tmp_or_1__value_1.object ); tmp_or_1__value_1.object = NULL; frame_function->f_lineno = tmp_tried_lineno_6; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_10 != NULL ) { exception_type = exception_keeper_type_10; exception_value = exception_keeper_value_10; exception_tb = exception_keeper_tb_10; goto try_finally_handler_5; } goto finally_end_10; finally_end_10:; if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1341; goto try_finally_handler_5; } goto loop_start_2; loop_end_2:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_5:; exception_keeper_type_11 = exception_type; exception_keeper_value_11 = exception_value; exception_keeper_tb_11 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_7 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_1__iter_value.object ); tmp_for_loop_1__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_1__for_iterator.object ); tmp_for_loop_1__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_7; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_11 != NULL ) { exception_type = exception_keeper_type_11; exception_value = exception_keeper_value_11; exception_tb = exception_keeper_tb_11; goto frame_exception_exit_1; } goto finally_end_11; finally_end_11:; // Tried code tmp_iter_arg_5 = const_tuple_int_0_int_0_tuple; tmp_assign_source_26 = MAKE_ITERATOR( tmp_iter_arg_5 ); if ( tmp_assign_source_26 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1347; goto try_finally_handler_12; } assert( tmp_tuple_unpack_3__source_iter.object == NULL ); tmp_tuple_unpack_3__source_iter.object = tmp_assign_source_26; tmp_unpack_5 = tmp_tuple_unpack_3__source_iter.object; tmp_assign_source_27 = UNPACK_PARAMETER_NEXT( tmp_unpack_5, 0 ); if ( tmp_assign_source_27 == NULL ) { if ( !ERROR_OCCURED() ) { exception_type = INCREASE_REFCOUNT( PyExc_StopIteration ); exception_value = NULL; exception_tb = NULL; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); } frame_function->f_lineno = 1347; goto try_finally_handler_12; } assert( tmp_tuple_unpack_3__element_1.object == NULL ); tmp_tuple_unpack_3__element_1.object = tmp_assign_source_27; tmp_unpack_6 = tmp_tuple_unpack_3__source_iter.object; tmp_assign_source_28 = UNPACK_PARAMETER_NEXT( tmp_unpack_6, 1 ); if ( tmp_assign_source_28 == NULL ) { if ( !ERROR_OCCURED() ) { exception_type = INCREASE_REFCOUNT( PyExc_StopIteration ); exception_value = NULL; exception_tb = NULL; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); } frame_function->f_lineno = 1347; goto try_finally_handler_12; } assert( tmp_tuple_unpack_3__element_2.object == NULL ); tmp_tuple_unpack_3__element_2.object = tmp_assign_source_28; tmp_iterator_name_3 = tmp_tuple_unpack_3__source_iter.object; // Check if iterator has left-over elements. assertObject( tmp_iterator_name_3 ); assert( PyIter_Check( tmp_iterator_name_3 ) ); tmp_iterator_attempt_3 = (*Py_TYPE( tmp_iterator_name_3 )->tp_iternext)( tmp_iterator_name_3 ); if (likely( tmp_iterator_attempt_3 == NULL )) { // TODO: Could first fetch, then check, should be faster. if ( !ERROR_OCCURED() ) { } else if ( PyErr_ExceptionMatches( PyExc_StopIteration )) { PyErr_Clear(); } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); goto try_finally_handler_12; } } else { Py_DECREF( tmp_iterator_attempt_3 ); // TODO: Could avoid PyErr_Format. #if PYTHON_VERSION < 300 PyErr_Format( PyExc_ValueError, "too many values to unpack" ); #else PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" ); #endif PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); goto try_finally_handler_12; } tmp_assign_source_29 = tmp_tuple_unpack_3__element_1.object; assert( var_nth.object == NULL ); var_nth.object = INCREASE_REFCOUNT( tmp_assign_source_29 ); tmp_assign_source_30 = tmp_tuple_unpack_3__element_2.object; assert( var_nthk.object == NULL ); var_nthk.object = INCREASE_REFCOUNT( tmp_assign_source_30 ); // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_12:; exception_keeper_type_12 = exception_type; exception_keeper_value_12 = exception_value; exception_keeper_tb_12 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_8 = frame_function->f_lineno; Py_XDECREF( tmp_tuple_unpack_3__source_iter.object ); tmp_tuple_unpack_3__source_iter.object = NULL; Py_XDECREF( tmp_tuple_unpack_3__element_1.object ); tmp_tuple_unpack_3__element_1.object = NULL; Py_XDECREF( tmp_tuple_unpack_3__element_2.object ); tmp_tuple_unpack_3__element_2.object = NULL; frame_function->f_lineno = tmp_tried_lineno_8; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_12 != NULL ) { exception_type = exception_keeper_type_12; exception_value = exception_keeper_value_12; exception_tb = exception_keeper_tb_12; goto frame_exception_exit_1; } goto finally_end_12; finally_end_12:; tmp_assign_source_31 = PyDict_New(); assert( var_savevrd.object == NULL ); var_savevrd.object = tmp_assign_source_31; tmp_iter_arg_6 = var_args.object; if ( tmp_iter_arg_6 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 5435 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1349; goto frame_exception_exit_1; } tmp_assign_source_32 = MAKE_ITERATOR( tmp_iter_arg_6 ); if ( tmp_assign_source_32 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1349; goto frame_exception_exit_1; } assert( tmp_for_loop_2__for_iterator.object == NULL ); tmp_for_loop_2__for_iterator.object = tmp_assign_source_32; // Tried code loop_start_3:; tmp_next_source_3 = tmp_for_loop_2__for_iterator.object; tmp_assign_source_33 = ITERATOR_NEXT( tmp_next_source_3 ); if (tmp_assign_source_33 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_3; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1349; goto try_finally_handler_13; } } if (tmp_for_loop_2__iter_value.object == NULL) { tmp_for_loop_2__iter_value.object = tmp_assign_source_33; } else { PyObject *old = tmp_for_loop_2__iter_value.object; tmp_for_loop_2__iter_value.object = tmp_assign_source_33; Py_DECREF( old ); } tmp_assign_source_34 = tmp_for_loop_2__iter_value.object; if (var_a.object == NULL) { var_a.object = INCREASE_REFCOUNT( tmp_assign_source_34 ); } else { PyObject *old = var_a.object; var_a.object = INCREASE_REFCOUNT( tmp_assign_source_34 ); Py_DECREF( old ); } tmp_called_13 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_sign2map ); if (unlikely( tmp_called_13 == NULL )) { tmp_called_13 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_sign2map ); } if ( tmp_called_13 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152298 ], 37, 0 ); exception_tb = NULL; frame_function->f_lineno = 1350; goto try_finally_handler_13; } tmp_call_arg_element_16 = var_a.object; tmp_subscr_target_7 = var_var.object; if ( tmp_subscr_target_7 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 88437 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1350; goto try_finally_handler_13; } tmp_subscr_subscript_7 = var_a.object; tmp_call_arg_element_17 = LOOKUP_SUBSCRIPT( tmp_subscr_target_7, tmp_subscr_subscript_7 ); if ( tmp_call_arg_element_17 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1350; goto try_finally_handler_13; } frame_function->f_lineno = 1350; tmp_assign_source_35 = CALL_FUNCTION_WITH_ARGS2( tmp_called_13, tmp_call_arg_element_16, tmp_call_arg_element_17 ); Py_DECREF( tmp_call_arg_element_17 ); if ( tmp_assign_source_35 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1350; goto try_finally_handler_13; } if (var_vrd.object == NULL) { var_vrd.object = tmp_assign_source_35; } else { PyObject *old = var_vrd.object; var_vrd.object = tmp_assign_source_35; Py_DECREF( old ); } tmp_called_14 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_aux ); if (unlikely( tmp_called_14 == NULL )) { tmp_called_14 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_aux ); } if ( tmp_called_14 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126649 ], 41, 0 ); exception_tb = NULL; frame_function->f_lineno = 1351; goto try_finally_handler_13; } tmp_subscr_target_8 = var_var.object; if ( tmp_subscr_target_8 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 88437 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1351; goto try_finally_handler_13; } tmp_subscr_subscript_8 = var_a.object; tmp_call_arg_element_18 = LOOKUP_SUBSCRIPT( tmp_subscr_target_8, tmp_subscr_subscript_8 ); if ( tmp_call_arg_element_18 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1351; goto try_finally_handler_13; } frame_function->f_lineno = 1351; tmp_cond_value_6 = CALL_FUNCTION_WITH_ARGS1( tmp_called_14, tmp_call_arg_element_18 ); Py_DECREF( tmp_call_arg_element_18 ); if ( tmp_cond_value_6 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1351; goto try_finally_handler_13; } tmp_cond_truth_6 = CHECK_IF_TRUE( tmp_cond_value_6 ); if ( tmp_cond_truth_6 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_cond_value_6 ); frame_function->f_lineno = 1351; goto try_finally_handler_13; } Py_DECREF( tmp_cond_value_6 ); if (tmp_cond_truth_6 == 1) { goto branch_yes_4; } else { goto branch_no_4; } branch_yes_4:; tmp_assign_source_36 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_aux_rules ); if (unlikely( tmp_assign_source_36 == NULL )) { tmp_assign_source_36 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_aux_rules ); } if ( tmp_assign_source_36 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152335 ], 38, 0 ); exception_tb = NULL; frame_function->f_lineno = 1352; goto try_finally_handler_13; } if (var__rules.object == NULL) { var__rules.object = INCREASE_REFCOUNT( tmp_assign_source_36 ); } else { PyObject *old = var__rules.object; var__rules.object = INCREASE_REFCOUNT( tmp_assign_source_36 ); Py_DECREF( old ); } goto branch_end_4; branch_no_4:; tmp_assign_source_37 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_arg_rules ); if (unlikely( tmp_assign_source_37 == NULL )) { tmp_assign_source_37 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_arg_rules ); } if ( tmp_assign_source_37 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152373 ], 38, 0 ); exception_tb = NULL; frame_function->f_lineno = 1354; goto try_finally_handler_13; } if (var__rules.object == NULL) { var__rules.object = INCREASE_REFCOUNT( tmp_assign_source_37 ); } else { PyObject *old = var__rules.object; var__rules.object = INCREASE_REFCOUNT( tmp_assign_source_37 ); Py_DECREF( old ); } tmp_called_15 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_hide ); if (unlikely( tmp_called_15 == NULL )) { tmp_called_15 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_hide ); } if ( tmp_called_15 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125395 ], 42, 0 ); exception_tb = NULL; frame_function->f_lineno = 1355; goto try_finally_handler_13; } tmp_subscr_target_9 = var_var.object; if ( tmp_subscr_target_9 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 88437 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1355; goto try_finally_handler_13; } tmp_subscr_subscript_9 = var_a.object; tmp_call_arg_element_19 = LOOKUP_SUBSCRIPT( tmp_subscr_target_9, tmp_subscr_subscript_9 ); if ( tmp_call_arg_element_19 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1355; goto try_finally_handler_13; } frame_function->f_lineno = 1355; tmp_cond_value_7 = CALL_FUNCTION_WITH_ARGS1( tmp_called_15, tmp_call_arg_element_19 ); Py_DECREF( tmp_call_arg_element_19 ); if ( tmp_cond_value_7 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1355; goto try_finally_handler_13; } tmp_cond_truth_7 = CHECK_IF_TRUE( tmp_cond_value_7 ); if ( tmp_cond_truth_7 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_cond_value_7 ); frame_function->f_lineno = 1355; goto try_finally_handler_13; } Py_DECREF( tmp_cond_value_7 ); if (tmp_cond_truth_7 == 1) { goto branch_no_5; } else { goto branch_yes_5; } branch_yes_5:; tmp_called_16 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_called_16 == NULL )) { tmp_called_16 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_called_16 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125235 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1356; goto try_finally_handler_13; } tmp_subscr_target_10 = var_var.object; if ( tmp_subscr_target_10 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 88437 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1356; goto try_finally_handler_13; } tmp_subscr_subscript_10 = var_a.object; tmp_call_arg_element_20 = LOOKUP_SUBSCRIPT( tmp_subscr_target_10, tmp_subscr_subscript_10 ); if ( tmp_call_arg_element_20 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1356; goto try_finally_handler_13; } frame_function->f_lineno = 1356; tmp_cond_value_8 = CALL_FUNCTION_WITH_ARGS1( tmp_called_16, tmp_call_arg_element_20 ); Py_DECREF( tmp_call_arg_element_20 ); if ( tmp_cond_value_8 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1356; goto try_finally_handler_13; } tmp_cond_truth_8 = CHECK_IF_TRUE( tmp_cond_value_8 ); if ( tmp_cond_truth_8 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_cond_value_8 ); frame_function->f_lineno = 1356; goto try_finally_handler_13; } Py_DECREF( tmp_cond_value_8 ); if (tmp_cond_truth_8 == 1) { goto branch_no_6; } else { goto branch_yes_6; } branch_yes_6:; tmp_binop_left_3 = var_nth.object; if ( tmp_binop_left_3 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152411 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1357; goto try_finally_handler_13; } tmp_binop_right_3 = const_int_pos_1; tmp_assign_source_38 = BINARY_OPERATION_ADD( tmp_binop_left_3, tmp_binop_right_3 ); if ( tmp_assign_source_38 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1357; goto try_finally_handler_13; } if (var_nth.object == NULL) { var_nth.object = tmp_assign_source_38; } else { PyObject *old = var_nth.object; var_nth.object = tmp_assign_source_38; Py_DECREF( old ); } tmp_unary_arg_1 = var_nth.object; tmp_binop_left_5 = UNARY_OPERATION( PyObject_Repr, tmp_unary_arg_1 ); if ( tmp_binop_left_5 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1358; goto try_finally_handler_13; } tmp_subscr_target_11 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_stnd ); if (unlikely( tmp_subscr_target_11 == NULL )) { tmp_subscr_target_11 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_stnd ); } if ( tmp_subscr_target_11 == NULL ) { Py_DECREF( tmp_binop_left_5 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152460 ], 33, 0 ); exception_tb = NULL; frame_function->f_lineno = 1358; goto try_finally_handler_13; } tmp_binop_left_6 = var_nth.object; tmp_binop_right_6 = const_int_pos_10; tmp_subscr_subscript_11 = BINARY_OPERATION_REMAINDER( tmp_binop_left_6, tmp_binop_right_6 ); if ( tmp_subscr_subscript_11 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_binop_left_5 ); frame_function->f_lineno = 1358; goto try_finally_handler_13; } tmp_binop_right_5 = LOOKUP_SUBSCRIPT( tmp_subscr_target_11, tmp_subscr_subscript_11 ); Py_DECREF( tmp_subscr_subscript_11 ); if ( tmp_binop_right_5 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_binop_left_5 ); frame_function->f_lineno = 1358; goto try_finally_handler_13; } tmp_binop_left_4 = BINARY_OPERATION_ADD( tmp_binop_left_5, tmp_binop_right_5 ); Py_DECREF( tmp_binop_left_5 ); Py_DECREF( tmp_binop_right_5 ); if ( tmp_binop_left_4 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1358; goto try_finally_handler_13; } tmp_binop_right_4 = const_str_digest_a8f7031741e338c5a3662bc8bde493c2; tmp_ass_subvalue_1 = BINARY_OPERATION_ADD( tmp_binop_left_4, tmp_binop_right_4 ); Py_DECREF( tmp_binop_left_4 ); if ( tmp_ass_subvalue_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1358; goto try_finally_handler_13; } tmp_ass_subscribed_1 = var_vrd.object; tmp_ass_subscript_1 = const_str_plain_nth; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 ); Py_DECREF( tmp_ass_subvalue_1 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1358; goto try_finally_handler_13; } goto branch_end_6; branch_no_6:; tmp_binop_left_7 = var_nthk.object; if ( tmp_binop_left_7 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152493 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1360; goto try_finally_handler_13; } tmp_binop_right_7 = const_int_pos_1; tmp_assign_source_39 = BINARY_OPERATION_ADD( tmp_binop_left_7, tmp_binop_right_7 ); if ( tmp_assign_source_39 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1360; goto try_finally_handler_13; } if (var_nthk.object == NULL) { var_nthk.object = tmp_assign_source_39; } else { PyObject *old = var_nthk.object; var_nthk.object = tmp_assign_source_39; Py_DECREF( old ); } tmp_unary_arg_2 = var_nthk.object; tmp_binop_left_9 = UNARY_OPERATION( PyObject_Repr, tmp_unary_arg_2 ); if ( tmp_binop_left_9 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1361; goto try_finally_handler_13; } tmp_subscr_target_12 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_stnd ); if (unlikely( tmp_subscr_target_12 == NULL )) { tmp_subscr_target_12 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_stnd ); } if ( tmp_subscr_target_12 == NULL ) { Py_DECREF( tmp_binop_left_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152460 ], 33, 0 ); exception_tb = NULL; frame_function->f_lineno = 1361; goto try_finally_handler_13; } tmp_binop_left_10 = var_nthk.object; tmp_binop_right_10 = const_int_pos_10; tmp_subscr_subscript_12 = BINARY_OPERATION_REMAINDER( tmp_binop_left_10, tmp_binop_right_10 ); if ( tmp_subscr_subscript_12 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_binop_left_9 ); frame_function->f_lineno = 1361; goto try_finally_handler_13; } tmp_binop_right_9 = LOOKUP_SUBSCRIPT( tmp_subscr_target_12, tmp_subscr_subscript_12 ); Py_DECREF( tmp_subscr_subscript_12 ); if ( tmp_binop_right_9 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_binop_left_9 ); frame_function->f_lineno = 1361; goto try_finally_handler_13; } tmp_binop_left_8 = BINARY_OPERATION_ADD( tmp_binop_left_9, tmp_binop_right_9 ); Py_DECREF( tmp_binop_left_9 ); Py_DECREF( tmp_binop_right_9 ); if ( tmp_binop_left_8 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1361; goto try_finally_handler_13; } tmp_binop_right_8 = const_str_digest_de18e03ff93a362044876849cf37696f; tmp_ass_subvalue_2 = BINARY_OPERATION_ADD( tmp_binop_left_8, tmp_binop_right_8 ); Py_DECREF( tmp_binop_left_8 ); if ( tmp_ass_subvalue_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1361; goto try_finally_handler_13; } tmp_ass_subscribed_2 = var_vrd.object; tmp_ass_subscript_2 = const_str_plain_nth; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_2, tmp_ass_subscript_2, tmp_ass_subvalue_2 ); Py_DECREF( tmp_ass_subvalue_2 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1361; goto try_finally_handler_13; } branch_end_6:; goto branch_end_5; branch_no_5:; tmp_ass_subvalue_3 = const_str_plain_hidden; tmp_ass_subscribed_3 = var_vrd.object; tmp_ass_subscript_3 = const_str_plain_nth; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_3, tmp_ass_subscript_3, tmp_ass_subvalue_3 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1362; goto try_finally_handler_13; } branch_end_5:; branch_end_4:; tmp_ass_subvalue_4 = var_vrd.object; tmp_ass_subscribed_4 = var_savevrd.object; if ( tmp_ass_subscribed_4 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129862 ], 53, 0 ); exception_tb = NULL; frame_function->f_lineno = 1363; goto try_finally_handler_13; } tmp_ass_subscript_4 = var_a.object; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_4, tmp_ass_subscript_4, tmp_ass_subvalue_4 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1363; goto try_finally_handler_13; } tmp_iter_arg_7 = var__rules.object; tmp_assign_source_40 = MAKE_ITERATOR( tmp_iter_arg_7 ); if ( tmp_assign_source_40 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1364; goto try_finally_handler_13; } if (tmp_for_loop_3__for_iterator.object == NULL) { tmp_for_loop_3__for_iterator.object = tmp_assign_source_40; } else { PyObject *old = tmp_for_loop_3__for_iterator.object; tmp_for_loop_3__for_iterator.object = tmp_assign_source_40; Py_DECREF( old ); } // Tried code loop_start_4:; tmp_next_source_4 = tmp_for_loop_3__for_iterator.object; tmp_assign_source_41 = ITERATOR_NEXT( tmp_next_source_4 ); if (tmp_assign_source_41 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_4; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1364; goto try_finally_handler_14; } } if (tmp_for_loop_3__iter_value.object == NULL) { tmp_for_loop_3__iter_value.object = tmp_assign_source_41; } else { PyObject *old = tmp_for_loop_3__iter_value.object; tmp_for_loop_3__iter_value.object = tmp_assign_source_41; Py_DECREF( old ); } tmp_assign_source_42 = tmp_for_loop_3__iter_value.object; if (var_r.object == NULL) { var_r.object = INCREASE_REFCOUNT( tmp_assign_source_42 ); } else { PyObject *old = var_r.object; var_r.object = INCREASE_REFCOUNT( tmp_assign_source_42 ); Py_DECREF( old ); } tmp_compare_left_1 = const_str_plain__depend; tmp_compare_right_1 = var_r.object; tmp_cmp_In_1 = PySequence_Contains( tmp_compare_right_1, tmp_compare_left_1 ); if ( tmp_cmp_In_1 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1365; goto try_finally_handler_14; } if (tmp_cmp_In_1 == 1) { goto branch_yes_7; } else { goto branch_no_7; } branch_yes_7:; goto loop_start_4; branch_no_7:; tmp_break_1 = false; // Tried code tmp_cond_value_9 = NULL; // Tried code // Tried code tmp_assign_source_43 = NULL; // Tried code tmp_compexpr_left_3 = const_str_plain__check; tmp_compexpr_right_3 = var_r.object; tmp_assign_source_44 = SEQUENCE_CONTAINS( tmp_compexpr_left_3, tmp_compexpr_right_3 ); if ( tmp_assign_source_44 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1367; goto try_finally_handler_18; } if (tmp_and_2__value_1.object == NULL) { tmp_and_2__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_44 ); } else { PyObject *old = tmp_and_2__value_1.object; tmp_and_2__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_44 ); Py_DECREF( old ); } tmp_cond_value_10 = tmp_and_2__value_1.object; tmp_cond_truth_10 = CHECK_IF_TRUE( tmp_cond_value_10 ); if ( tmp_cond_truth_10 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1367; goto try_finally_handler_18; } if (tmp_cond_truth_10 == 1) { goto condexpr_true_3; } else { goto condexpr_false_3; } condexpr_true_3:; tmp_assign_source_43 = NULL; // Tried code tmp_result = tmp_and_2__value_1.object != NULL; if ( tmp_result == true ) { Py_DECREF( tmp_and_2__value_1.object ); tmp_and_2__value_1.object = NULL; } assert( tmp_result != false ); tmp_subscr_target_13 = var_r.object; tmp_subscr_subscript_13 = const_str_plain__check; tmp_called_17 = LOOKUP_SUBSCRIPT( tmp_subscr_target_13, tmp_subscr_subscript_13 ); if ( tmp_called_17 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1367; goto try_finally_handler_19; } tmp_subscr_target_14 = var_var.object; if ( tmp_subscr_target_14 == NULL ) { Py_DECREF( tmp_called_17 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 88437 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1367; goto try_finally_handler_19; } tmp_subscr_subscript_14 = var_a.object; if ( tmp_subscr_subscript_14 == NULL ) { Py_DECREF( tmp_called_17 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 5854 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1367; goto try_finally_handler_19; } tmp_call_arg_element_21 = LOOKUP_SUBSCRIPT( tmp_subscr_target_14, tmp_subscr_subscript_14 ); if ( tmp_call_arg_element_21 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_17 ); frame_function->f_lineno = 1367; goto try_finally_handler_19; } frame_function->f_lineno = 1367; tmp_assign_source_43 = CALL_FUNCTION_WITH_ARGS1( tmp_called_17, tmp_call_arg_element_21 ); Py_DECREF( tmp_called_17 ); Py_DECREF( tmp_call_arg_element_21 ); if ( tmp_assign_source_43 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1367; goto try_finally_handler_19; } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_19:; exception_keeper_type_13 = exception_type; exception_keeper_value_13 = exception_value; exception_keeper_tb_13 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_13 != NULL ) { exception_type = exception_keeper_type_13; exception_value = exception_keeper_value_13; exception_tb = exception_keeper_tb_13; goto try_finally_handler_18; } goto finally_end_13; finally_end_13:; goto condexpr_end_3; condexpr_false_3:; tmp_assign_source_43 = tmp_and_2__value_1.object; Py_INCREF( tmp_assign_source_43 ); condexpr_end_3:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_18:; exception_keeper_type_14 = exception_type; exception_keeper_value_14 = exception_value; exception_keeper_tb_14 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_14 != NULL ) { exception_type = exception_keeper_type_14; exception_value = exception_keeper_value_14; exception_tb = exception_keeper_tb_14; goto try_finally_handler_17; } goto finally_end_14; finally_end_14:; if (tmp_or_2__value_1.object == NULL) { tmp_or_2__value_1.object = tmp_assign_source_43; } else { PyObject *old = tmp_or_2__value_1.object; tmp_or_2__value_1.object = tmp_assign_source_43; Py_DECREF( old ); } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_17:; exception_keeper_type_15 = exception_type; exception_keeper_value_15 = exception_value; exception_keeper_tb_15 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_9 = frame_function->f_lineno; Py_XDECREF( tmp_and_2__value_1.object ); tmp_and_2__value_1.object = NULL; frame_function->f_lineno = tmp_tried_lineno_9; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_15 != NULL ) { exception_type = exception_keeper_type_15; exception_value = exception_keeper_value_15; exception_tb = exception_keeper_tb_15; goto try_finally_handler_16; } goto finally_end_15; finally_end_15:; tmp_cond_value_11 = tmp_or_2__value_1.object; tmp_cond_truth_11 = CHECK_IF_TRUE( tmp_cond_value_11 ); if ( tmp_cond_truth_11 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1367; goto try_finally_handler_16; } if (tmp_cond_truth_11 == 1) { goto condexpr_true_4; } else { goto condexpr_false_4; } condexpr_true_4:; tmp_cond_value_9 = tmp_or_2__value_1.object; goto condexpr_end_4; condexpr_false_4:; tmp_cond_value_9 = NULL; // Tried code tmp_result = tmp_or_2__value_1.object != NULL; if ( tmp_result == true ) { Py_DECREF( tmp_or_2__value_1.object ); tmp_or_2__value_1.object = NULL; } assert( tmp_result != false ); tmp_compexpr_left_4 = const_str_plain__check; tmp_compexpr_right_4 = var_r.object; if ( tmp_compexpr_right_4 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 11969 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1367; goto try_finally_handler_20; } tmp_cond_value_9 = SEQUENCE_CONTAINS_NOT( tmp_compexpr_left_4, tmp_compexpr_right_4 ); if ( tmp_cond_value_9 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1367; goto try_finally_handler_20; } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_20:; exception_keeper_type_16 = exception_type; exception_keeper_value_16 = exception_value; exception_keeper_tb_16 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_16 != NULL ) { exception_type = exception_keeper_type_16; exception_value = exception_keeper_value_16; exception_tb = exception_keeper_tb_16; goto try_finally_handler_16; } goto finally_end_16; finally_end_16:; condexpr_end_4:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_16:; exception_keeper_type_17 = exception_type; exception_keeper_value_17 = exception_value; exception_keeper_tb_17 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_17 != NULL ) { exception_type = exception_keeper_type_17; exception_value = exception_keeper_value_17; exception_tb = exception_keeper_tb_17; goto try_finally_handler_15; } goto finally_end_17; finally_end_17:; tmp_cond_truth_9 = CHECK_IF_TRUE( tmp_cond_value_9 ); if ( tmp_cond_truth_9 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1367; goto try_finally_handler_15; } if (tmp_cond_truth_9 == 1) { goto branch_yes_8; } else { goto branch_no_8; } branch_yes_8:; tmp_called_18 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_applyrules ); if (unlikely( tmp_called_18 == NULL )) { tmp_called_18 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_applyrules ); } if ( tmp_called_18 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127020 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1368; goto try_finally_handler_15; } tmp_call_arg_element_22 = var_r.object; if ( tmp_call_arg_element_22 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 11969 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1368; goto try_finally_handler_15; } tmp_call_arg_element_23 = var_vrd.object; if ( tmp_call_arg_element_23 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129813 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1368; goto try_finally_handler_15; } tmp_subscr_target_15 = var_var.object; if ( tmp_subscr_target_15 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 88437 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1368; goto try_finally_handler_15; } tmp_subscr_subscript_15 = var_a.object; if ( tmp_subscr_subscript_15 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 5854 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1368; goto try_finally_handler_15; } tmp_call_arg_element_24 = LOOKUP_SUBSCRIPT( tmp_subscr_target_15, tmp_subscr_subscript_15 ); if ( tmp_call_arg_element_24 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1368; goto try_finally_handler_15; } frame_function->f_lineno = 1368; tmp_assign_source_45 = CALL_FUNCTION_WITH_ARGS3( tmp_called_18, tmp_call_arg_element_22, tmp_call_arg_element_23, tmp_call_arg_element_24 ); Py_DECREF( tmp_call_arg_element_24 ); if ( tmp_assign_source_45 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1368; goto try_finally_handler_15; } if (var_ar.object == NULL) { var_ar.object = tmp_assign_source_45; } else { PyObject *old = var_ar.object; var_ar.object = tmp_assign_source_45; Py_DECREF( old ); } tmp_called_19 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_dictappend ); if (unlikely( tmp_called_19 == NULL )) { tmp_called_19 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dictappend ); } if ( tmp_called_19 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126933 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1369; goto try_finally_handler_15; } tmp_call_arg_element_25 = var_rd.object; if ( tmp_call_arg_element_25 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1369; goto try_finally_handler_15; } tmp_call_arg_element_26 = var_ar.object; frame_function->f_lineno = 1369; tmp_assign_source_46 = CALL_FUNCTION_WITH_ARGS2( tmp_called_19, tmp_call_arg_element_25, tmp_call_arg_element_26 ); if ( tmp_assign_source_46 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1369; goto try_finally_handler_15; } if (var_rd.object == NULL) { var_rd.object = tmp_assign_source_46; } else { PyObject *old = var_rd.object; var_rd.object = tmp_assign_source_46; Py_DECREF( old ); } tmp_compare_left_2 = const_str_plain__break; tmp_compare_right_2 = var_r.object; if ( tmp_compare_right_2 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 11969 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1370; goto try_finally_handler_15; } tmp_cmp_In_2 = PySequence_Contains( tmp_compare_right_2, tmp_compare_left_2 ); if ( tmp_cmp_In_2 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1370; goto try_finally_handler_15; } if (tmp_cmp_In_2 == 1) { goto branch_yes_9; } else { goto branch_no_9; } branch_yes_9:; tmp_break_1 = true; goto try_finally_handler_start_1; branch_no_9:; branch_no_8:; try_finally_handler_start_1:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_15:; exception_keeper_type_18 = exception_type; exception_keeper_value_18 = exception_value; exception_keeper_tb_18 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_10 = frame_function->f_lineno; Py_XDECREF( tmp_or_2__value_1.object ); tmp_or_2__value_1.object = NULL; frame_function->f_lineno = tmp_tried_lineno_10; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_18 != NULL ) { exception_type = exception_keeper_type_18; exception_value = exception_keeper_value_18; exception_tb = exception_keeper_tb_18; goto try_finally_handler_14; } // Break if entered via break. if ( tmp_break_1 ) { goto loop_end_4; } goto finally_end_18; finally_end_18:; if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1364; goto try_finally_handler_14; } goto loop_start_4; loop_end_4:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_14:; exception_keeper_type_19 = exception_type; exception_keeper_value_19 = exception_value; exception_keeper_tb_19 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_11 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_3__iter_value.object ); tmp_for_loop_3__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_3__for_iterator.object ); tmp_for_loop_3__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_11; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_19 != NULL ) { exception_type = exception_keeper_type_19; exception_value = exception_keeper_value_19; exception_tb = exception_keeper_tb_19; goto try_finally_handler_13; } goto finally_end_19; finally_end_19:; if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1349; goto try_finally_handler_13; } goto loop_start_3; loop_end_3:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_13:; exception_keeper_type_20 = exception_type; exception_keeper_value_20 = exception_value; exception_keeper_tb_20 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_12 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_2__iter_value.object ); tmp_for_loop_2__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_2__for_iterator.object ); tmp_for_loop_2__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_12; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_20 != NULL ) { exception_type = exception_keeper_type_20; exception_value = exception_keeper_value_20; exception_tb = exception_keeper_tb_20; goto frame_exception_exit_1; } goto finally_end_20; finally_end_20:; tmp_iter_arg_8 = var_depargs.object; if ( tmp_iter_arg_8 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129663 ], 53, 0 ); exception_tb = NULL; frame_function->f_lineno = 1372; goto frame_exception_exit_1; } tmp_assign_source_47 = MAKE_ITERATOR( tmp_iter_arg_8 ); if ( tmp_assign_source_47 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1372; goto frame_exception_exit_1; } assert( tmp_for_loop_4__for_iterator.object == NULL ); tmp_for_loop_4__for_iterator.object = tmp_assign_source_47; // Tried code loop_start_5:; tmp_next_source_5 = tmp_for_loop_4__for_iterator.object; tmp_assign_source_48 = ITERATOR_NEXT( tmp_next_source_5 ); if (tmp_assign_source_48 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_5; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1372; goto try_finally_handler_21; } } if (tmp_for_loop_4__iter_value.object == NULL) { tmp_for_loop_4__iter_value.object = tmp_assign_source_48; } else { PyObject *old = tmp_for_loop_4__iter_value.object; tmp_for_loop_4__iter_value.object = tmp_assign_source_48; Py_DECREF( old ); } tmp_assign_source_49 = tmp_for_loop_4__iter_value.object; if (var_a.object == NULL) { var_a.object = INCREASE_REFCOUNT( tmp_assign_source_49 ); } else { PyObject *old = var_a.object; var_a.object = INCREASE_REFCOUNT( tmp_assign_source_49 ); Py_DECREF( old ); } tmp_called_20 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_aux ); if (unlikely( tmp_called_20 == NULL )) { tmp_called_20 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_aux ); } if ( tmp_called_20 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126649 ], 41, 0 ); exception_tb = NULL; frame_function->f_lineno = 1373; goto try_finally_handler_21; } tmp_subscr_target_16 = var_var.object; if ( tmp_subscr_target_16 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 88437 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1373; goto try_finally_handler_21; } tmp_subscr_subscript_16 = var_a.object; tmp_call_arg_element_27 = LOOKUP_SUBSCRIPT( tmp_subscr_target_16, tmp_subscr_subscript_16 ); if ( tmp_call_arg_element_27 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1373; goto try_finally_handler_21; } frame_function->f_lineno = 1373; tmp_cond_value_12 = CALL_FUNCTION_WITH_ARGS1( tmp_called_20, tmp_call_arg_element_27 ); Py_DECREF( tmp_call_arg_element_27 ); if ( tmp_cond_value_12 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1373; goto try_finally_handler_21; } tmp_cond_truth_12 = CHECK_IF_TRUE( tmp_cond_value_12 ); if ( tmp_cond_truth_12 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_cond_value_12 ); frame_function->f_lineno = 1373; goto try_finally_handler_21; } Py_DECREF( tmp_cond_value_12 ); if (tmp_cond_truth_12 == 1) { goto branch_yes_10; } else { goto branch_no_10; } branch_yes_10:; tmp_assign_source_50 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_aux_rules ); if (unlikely( tmp_assign_source_50 == NULL )) { tmp_assign_source_50 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_aux_rules ); } if ( tmp_assign_source_50 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152335 ], 38, 0 ); exception_tb = NULL; frame_function->f_lineno = 1374; goto try_finally_handler_21; } if (var__rules.object == NULL) { var__rules.object = INCREASE_REFCOUNT( tmp_assign_source_50 ); } else { PyObject *old = var__rules.object; var__rules.object = INCREASE_REFCOUNT( tmp_assign_source_50 ); Py_DECREF( old ); } goto branch_end_10; branch_no_10:; tmp_assign_source_51 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_arg_rules ); if (unlikely( tmp_assign_source_51 == NULL )) { tmp_assign_source_51 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_arg_rules ); } if ( tmp_assign_source_51 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152373 ], 38, 0 ); exception_tb = NULL; frame_function->f_lineno = 1376; goto try_finally_handler_21; } if (var__rules.object == NULL) { var__rules.object = INCREASE_REFCOUNT( tmp_assign_source_51 ); } else { PyObject *old = var__rules.object; var__rules.object = INCREASE_REFCOUNT( tmp_assign_source_51 ); Py_DECREF( old ); } branch_end_10:; tmp_subscr_target_17 = var_savevrd.object; if ( tmp_subscr_target_17 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129862 ], 53, 0 ); exception_tb = NULL; frame_function->f_lineno = 1377; goto try_finally_handler_21; } tmp_subscr_subscript_17 = var_a.object; tmp_assign_source_52 = LOOKUP_SUBSCRIPT( tmp_subscr_target_17, tmp_subscr_subscript_17 ); if ( tmp_assign_source_52 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1377; goto try_finally_handler_21; } if (var_vrd.object == NULL) { var_vrd.object = tmp_assign_source_52; } else { PyObject *old = var_vrd.object; var_vrd.object = tmp_assign_source_52; Py_DECREF( old ); } tmp_iter_arg_9 = var__rules.object; tmp_assign_source_53 = MAKE_ITERATOR( tmp_iter_arg_9 ); if ( tmp_assign_source_53 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1378; goto try_finally_handler_21; } if (tmp_for_loop_5__for_iterator.object == NULL) { tmp_for_loop_5__for_iterator.object = tmp_assign_source_53; } else { PyObject *old = tmp_for_loop_5__for_iterator.object; tmp_for_loop_5__for_iterator.object = tmp_assign_source_53; Py_DECREF( old ); } // Tried code loop_start_6:; tmp_next_source_6 = tmp_for_loop_5__for_iterator.object; tmp_assign_source_54 = ITERATOR_NEXT( tmp_next_source_6 ); if (tmp_assign_source_54 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_6; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1378; goto try_finally_handler_22; } } if (tmp_for_loop_5__iter_value.object == NULL) { tmp_for_loop_5__iter_value.object = tmp_assign_source_54; } else { PyObject *old = tmp_for_loop_5__iter_value.object; tmp_for_loop_5__iter_value.object = tmp_assign_source_54; Py_DECREF( old ); } tmp_assign_source_55 = tmp_for_loop_5__iter_value.object; if (var_r.object == NULL) { var_r.object = INCREASE_REFCOUNT( tmp_assign_source_55 ); } else { PyObject *old = var_r.object; var_r.object = INCREASE_REFCOUNT( tmp_assign_source_55 ); Py_DECREF( old ); } tmp_compare_left_3 = const_str_plain__depend; tmp_compare_right_3 = var_r.object; tmp_cmp_NotIn_1 = PySequence_Contains( tmp_compare_right_3, tmp_compare_left_3 ); if ( tmp_cmp_NotIn_1 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1379; goto try_finally_handler_22; } if (tmp_cmp_NotIn_1 == 0) { goto branch_yes_11; } else { goto branch_no_11; } branch_yes_11:; goto loop_start_6; branch_no_11:; tmp_break_2 = false; // Tried code tmp_cond_value_13 = NULL; // Tried code // Tried code tmp_assign_source_56 = NULL; // Tried code tmp_compexpr_left_5 = const_str_plain__check; tmp_compexpr_right_5 = var_r.object; tmp_assign_source_57 = SEQUENCE_CONTAINS( tmp_compexpr_left_5, tmp_compexpr_right_5 ); if ( tmp_assign_source_57 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1381; goto try_finally_handler_26; } if (tmp_and_3__value_1.object == NULL) { tmp_and_3__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_57 ); } else { PyObject *old = tmp_and_3__value_1.object; tmp_and_3__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_57 ); Py_DECREF( old ); } tmp_cond_value_14 = tmp_and_3__value_1.object; tmp_cond_truth_14 = CHECK_IF_TRUE( tmp_cond_value_14 ); if ( tmp_cond_truth_14 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1381; goto try_finally_handler_26; } if (tmp_cond_truth_14 == 1) { goto condexpr_true_5; } else { goto condexpr_false_5; } condexpr_true_5:; tmp_assign_source_56 = NULL; // Tried code tmp_result = tmp_and_3__value_1.object != NULL; if ( tmp_result == true ) { Py_DECREF( tmp_and_3__value_1.object ); tmp_and_3__value_1.object = NULL; } assert( tmp_result != false ); tmp_subscr_target_18 = var_r.object; tmp_subscr_subscript_18 = const_str_plain__check; tmp_called_21 = LOOKUP_SUBSCRIPT( tmp_subscr_target_18, tmp_subscr_subscript_18 ); if ( tmp_called_21 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1381; goto try_finally_handler_27; } tmp_subscr_target_19 = var_var.object; if ( tmp_subscr_target_19 == NULL ) { Py_DECREF( tmp_called_21 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 88437 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1381; goto try_finally_handler_27; } tmp_subscr_subscript_19 = var_a.object; if ( tmp_subscr_subscript_19 == NULL ) { Py_DECREF( tmp_called_21 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 5854 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1381; goto try_finally_handler_27; } tmp_call_arg_element_28 = LOOKUP_SUBSCRIPT( tmp_subscr_target_19, tmp_subscr_subscript_19 ); if ( tmp_call_arg_element_28 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_called_21 ); frame_function->f_lineno = 1381; goto try_finally_handler_27; } frame_function->f_lineno = 1381; tmp_assign_source_56 = CALL_FUNCTION_WITH_ARGS1( tmp_called_21, tmp_call_arg_element_28 ); Py_DECREF( tmp_called_21 ); Py_DECREF( tmp_call_arg_element_28 ); if ( tmp_assign_source_56 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1381; goto try_finally_handler_27; } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_27:; exception_keeper_type_21 = exception_type; exception_keeper_value_21 = exception_value; exception_keeper_tb_21 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_21 != NULL ) { exception_type = exception_keeper_type_21; exception_value = exception_keeper_value_21; exception_tb = exception_keeper_tb_21; goto try_finally_handler_26; } goto finally_end_21; finally_end_21:; goto condexpr_end_5; condexpr_false_5:; tmp_assign_source_56 = tmp_and_3__value_1.object; Py_INCREF( tmp_assign_source_56 ); condexpr_end_5:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_26:; exception_keeper_type_22 = exception_type; exception_keeper_value_22 = exception_value; exception_keeper_tb_22 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_22 != NULL ) { exception_type = exception_keeper_type_22; exception_value = exception_keeper_value_22; exception_tb = exception_keeper_tb_22; goto try_finally_handler_25; } goto finally_end_22; finally_end_22:; if (tmp_or_3__value_1.object == NULL) { tmp_or_3__value_1.object = tmp_assign_source_56; } else { PyObject *old = tmp_or_3__value_1.object; tmp_or_3__value_1.object = tmp_assign_source_56; Py_DECREF( old ); } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_25:; exception_keeper_type_23 = exception_type; exception_keeper_value_23 = exception_value; exception_keeper_tb_23 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_13 = frame_function->f_lineno; Py_XDECREF( tmp_and_3__value_1.object ); tmp_and_3__value_1.object = NULL; frame_function->f_lineno = tmp_tried_lineno_13; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_23 != NULL ) { exception_type = exception_keeper_type_23; exception_value = exception_keeper_value_23; exception_tb = exception_keeper_tb_23; goto try_finally_handler_24; } goto finally_end_23; finally_end_23:; tmp_cond_value_15 = tmp_or_3__value_1.object; tmp_cond_truth_15 = CHECK_IF_TRUE( tmp_cond_value_15 ); if ( tmp_cond_truth_15 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1381; goto try_finally_handler_24; } if (tmp_cond_truth_15 == 1) { goto condexpr_true_6; } else { goto condexpr_false_6; } condexpr_true_6:; tmp_cond_value_13 = tmp_or_3__value_1.object; goto condexpr_end_6; condexpr_false_6:; tmp_cond_value_13 = NULL; // Tried code tmp_result = tmp_or_3__value_1.object != NULL; if ( tmp_result == true ) { Py_DECREF( tmp_or_3__value_1.object ); tmp_or_3__value_1.object = NULL; } assert( tmp_result != false ); tmp_compexpr_left_6 = const_str_plain__check; tmp_compexpr_right_6 = var_r.object; if ( tmp_compexpr_right_6 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 11969 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1381; goto try_finally_handler_28; } tmp_cond_value_13 = SEQUENCE_CONTAINS_NOT( tmp_compexpr_left_6, tmp_compexpr_right_6 ); if ( tmp_cond_value_13 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1381; goto try_finally_handler_28; } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_28:; exception_keeper_type_24 = exception_type; exception_keeper_value_24 = exception_value; exception_keeper_tb_24 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_24 != NULL ) { exception_type = exception_keeper_type_24; exception_value = exception_keeper_value_24; exception_tb = exception_keeper_tb_24; goto try_finally_handler_24; } goto finally_end_24; finally_end_24:; condexpr_end_6:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_24:; exception_keeper_type_25 = exception_type; exception_keeper_value_25 = exception_value; exception_keeper_tb_25 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_25 != NULL ) { exception_type = exception_keeper_type_25; exception_value = exception_keeper_value_25; exception_tb = exception_keeper_tb_25; goto try_finally_handler_23; } goto finally_end_25; finally_end_25:; tmp_cond_truth_13 = CHECK_IF_TRUE( tmp_cond_value_13 ); if ( tmp_cond_truth_13 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1381; goto try_finally_handler_23; } if (tmp_cond_truth_13 == 1) { goto branch_yes_12; } else { goto branch_no_12; } branch_yes_12:; tmp_called_22 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_applyrules ); if (unlikely( tmp_called_22 == NULL )) { tmp_called_22 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_applyrules ); } if ( tmp_called_22 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127020 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1382; goto try_finally_handler_23; } tmp_call_arg_element_29 = var_r.object; if ( tmp_call_arg_element_29 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 11969 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1382; goto try_finally_handler_23; } tmp_call_arg_element_30 = var_vrd.object; if ( tmp_call_arg_element_30 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129813 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1382; goto try_finally_handler_23; } tmp_subscr_target_20 = var_var.object; if ( tmp_subscr_target_20 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 88437 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1382; goto try_finally_handler_23; } tmp_subscr_subscript_20 = var_a.object; if ( tmp_subscr_subscript_20 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 5854 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1382; goto try_finally_handler_23; } tmp_call_arg_element_31 = LOOKUP_SUBSCRIPT( tmp_subscr_target_20, tmp_subscr_subscript_20 ); if ( tmp_call_arg_element_31 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1382; goto try_finally_handler_23; } frame_function->f_lineno = 1382; tmp_assign_source_58 = CALL_FUNCTION_WITH_ARGS3( tmp_called_22, tmp_call_arg_element_29, tmp_call_arg_element_30, tmp_call_arg_element_31 ); Py_DECREF( tmp_call_arg_element_31 ); if ( tmp_assign_source_58 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1382; goto try_finally_handler_23; } if (var_ar.object == NULL) { var_ar.object = tmp_assign_source_58; } else { PyObject *old = var_ar.object; var_ar.object = tmp_assign_source_58; Py_DECREF( old ); } tmp_called_23 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_dictappend ); if (unlikely( tmp_called_23 == NULL )) { tmp_called_23 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dictappend ); } if ( tmp_called_23 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126933 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1383; goto try_finally_handler_23; } tmp_call_arg_element_32 = var_rd.object; if ( tmp_call_arg_element_32 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1383; goto try_finally_handler_23; } tmp_call_arg_element_33 = var_ar.object; frame_function->f_lineno = 1383; tmp_assign_source_59 = CALL_FUNCTION_WITH_ARGS2( tmp_called_23, tmp_call_arg_element_32, tmp_call_arg_element_33 ); if ( tmp_assign_source_59 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1383; goto try_finally_handler_23; } if (var_rd.object == NULL) { var_rd.object = tmp_assign_source_59; } else { PyObject *old = var_rd.object; var_rd.object = tmp_assign_source_59; Py_DECREF( old ); } tmp_compare_left_4 = const_str_plain__break; tmp_compare_right_4 = var_r.object; if ( tmp_compare_right_4 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 11969 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1384; goto try_finally_handler_23; } tmp_cmp_In_3 = PySequence_Contains( tmp_compare_right_4, tmp_compare_left_4 ); if ( tmp_cmp_In_3 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1384; goto try_finally_handler_23; } if (tmp_cmp_In_3 == 1) { goto branch_yes_13; } else { goto branch_no_13; } branch_yes_13:; tmp_break_2 = true; goto try_finally_handler_start_2; branch_no_13:; branch_no_12:; try_finally_handler_start_2:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_23:; exception_keeper_type_26 = exception_type; exception_keeper_value_26 = exception_value; exception_keeper_tb_26 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_14 = frame_function->f_lineno; Py_XDECREF( tmp_or_3__value_1.object ); tmp_or_3__value_1.object = NULL; frame_function->f_lineno = tmp_tried_lineno_14; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_26 != NULL ) { exception_type = exception_keeper_type_26; exception_value = exception_keeper_value_26; exception_tb = exception_keeper_tb_26; goto try_finally_handler_22; } // Break if entered via break. if ( tmp_break_2 ) { goto loop_end_6; } goto finally_end_26; finally_end_26:; if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1378; goto try_finally_handler_22; } goto loop_start_6; loop_end_6:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_22:; exception_keeper_type_27 = exception_type; exception_keeper_value_27 = exception_value; exception_keeper_tb_27 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_15 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_5__iter_value.object ); tmp_for_loop_5__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_5__for_iterator.object ); tmp_for_loop_5__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_15; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_27 != NULL ) { exception_type = exception_keeper_type_27; exception_value = exception_keeper_value_27; exception_tb = exception_keeper_tb_27; goto try_finally_handler_21; } goto finally_end_27; finally_end_27:; tmp_compare_left_5 = const_str_plain_check; tmp_subscr_target_21 = var_var.object; if ( tmp_subscr_target_21 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 88437 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1386; goto try_finally_handler_21; } tmp_subscr_subscript_21 = var_a.object; if ( tmp_subscr_subscript_21 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 5854 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1386; goto try_finally_handler_21; } tmp_compare_right_5 = LOOKUP_SUBSCRIPT( tmp_subscr_target_21, tmp_subscr_subscript_21 ); if ( tmp_compare_right_5 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1386; goto try_finally_handler_21; } tmp_cmp_In_4 = PySequence_Contains( tmp_compare_right_5, tmp_compare_left_5 ); if ( tmp_cmp_In_4 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_compare_right_5 ); frame_function->f_lineno = 1386; goto try_finally_handler_21; } Py_DECREF( tmp_compare_right_5 ); if (tmp_cmp_In_4 == 1) { goto branch_yes_14; } else { goto branch_no_14; } branch_yes_14:; tmp_subscr_target_23 = var_var.object; if ( tmp_subscr_target_23 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 88437 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1387; goto try_finally_handler_21; } tmp_subscr_subscript_23 = var_a.object; if ( tmp_subscr_subscript_23 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 5854 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1387; goto try_finally_handler_21; } tmp_subscr_target_22 = LOOKUP_SUBSCRIPT( tmp_subscr_target_23, tmp_subscr_subscript_23 ); if ( tmp_subscr_target_22 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1387; goto try_finally_handler_21; } tmp_subscr_subscript_22 = const_str_plain_check; tmp_iter_arg_10 = LOOKUP_SUBSCRIPT( tmp_subscr_target_22, tmp_subscr_subscript_22 ); Py_DECREF( tmp_subscr_target_22 ); if ( tmp_iter_arg_10 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1387; goto try_finally_handler_21; } tmp_assign_source_60 = MAKE_ITERATOR( tmp_iter_arg_10 ); Py_DECREF( tmp_iter_arg_10 ); if ( tmp_assign_source_60 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1387; goto try_finally_handler_21; } if (tmp_for_loop_6__for_iterator.object == NULL) { tmp_for_loop_6__for_iterator.object = tmp_assign_source_60; } else { PyObject *old = tmp_for_loop_6__for_iterator.object; tmp_for_loop_6__for_iterator.object = tmp_assign_source_60; Py_DECREF( old ); } // Tried code loop_start_7:; tmp_next_source_7 = tmp_for_loop_6__for_iterator.object; tmp_assign_source_61 = ITERATOR_NEXT( tmp_next_source_7 ); if (tmp_assign_source_61 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_7; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1387; goto try_finally_handler_29; } } if (tmp_for_loop_6__iter_value.object == NULL) { tmp_for_loop_6__iter_value.object = tmp_assign_source_61; } else { PyObject *old = tmp_for_loop_6__iter_value.object; tmp_for_loop_6__iter_value.object = tmp_assign_source_61; Py_DECREF( old ); } tmp_assign_source_62 = tmp_for_loop_6__iter_value.object; if (var_c.object == NULL) { var_c.object = INCREASE_REFCOUNT( tmp_assign_source_62 ); } else { PyObject *old = var_c.object; var_c.object = INCREASE_REFCOUNT( tmp_assign_source_62 ); Py_DECREF( old ); } tmp_ass_subvalue_5 = var_c.object; tmp_ass_subscribed_5 = var_vrd.object; if ( tmp_ass_subscribed_5 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129813 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1388; goto try_finally_handler_29; } tmp_ass_subscript_5 = const_str_plain_check; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_5, tmp_ass_subscript_5, tmp_ass_subvalue_5 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1388; goto try_finally_handler_29; } tmp_called_24 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_applyrules ); if (unlikely( tmp_called_24 == NULL )) { tmp_called_24 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_applyrules ); } if ( tmp_called_24 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127020 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1389; goto try_finally_handler_29; } tmp_call_arg_element_34 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_check_rules ); if (unlikely( tmp_call_arg_element_34 == NULL )) { tmp_call_arg_element_34 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_check_rules ); } if ( tmp_call_arg_element_34 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152543 ], 40, 0 ); exception_tb = NULL; frame_function->f_lineno = 1389; goto try_finally_handler_29; } tmp_call_arg_element_35 = var_vrd.object; if ( tmp_call_arg_element_35 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129813 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1389; goto try_finally_handler_29; } tmp_subscr_target_24 = var_var.object; if ( tmp_subscr_target_24 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 88437 ], 49, 0 ); exception_tb = NULL; frame_function->f_lineno = 1389; goto try_finally_handler_29; } tmp_subscr_subscript_24 = var_a.object; if ( tmp_subscr_subscript_24 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 5854 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1389; goto try_finally_handler_29; } tmp_call_arg_element_36 = LOOKUP_SUBSCRIPT( tmp_subscr_target_24, tmp_subscr_subscript_24 ); if ( tmp_call_arg_element_36 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1389; goto try_finally_handler_29; } frame_function->f_lineno = 1389; tmp_assign_source_63 = CALL_FUNCTION_WITH_ARGS3( tmp_called_24, tmp_call_arg_element_34, tmp_call_arg_element_35, tmp_call_arg_element_36 ); Py_DECREF( tmp_call_arg_element_36 ); if ( tmp_assign_source_63 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1389; goto try_finally_handler_29; } if (var_ar.object == NULL) { var_ar.object = tmp_assign_source_63; } else { PyObject *old = var_ar.object; var_ar.object = tmp_assign_source_63; Py_DECREF( old ); } tmp_called_25 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_dictappend ); if (unlikely( tmp_called_25 == NULL )) { tmp_called_25 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dictappend ); } if ( tmp_called_25 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126933 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1390; goto try_finally_handler_29; } tmp_call_arg_element_37 = var_rd.object; if ( tmp_call_arg_element_37 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1390; goto try_finally_handler_29; } tmp_call_arg_element_38 = var_ar.object; frame_function->f_lineno = 1390; tmp_assign_source_64 = CALL_FUNCTION_WITH_ARGS2( tmp_called_25, tmp_call_arg_element_37, tmp_call_arg_element_38 ); if ( tmp_assign_source_64 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1390; goto try_finally_handler_29; } if (var_rd.object == NULL) { var_rd.object = tmp_assign_source_64; } else { PyObject *old = var_rd.object; var_rd.object = tmp_assign_source_64; Py_DECREF( old ); } if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1387; goto try_finally_handler_29; } goto loop_start_7; loop_end_7:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_29:; exception_keeper_type_28 = exception_type; exception_keeper_value_28 = exception_value; exception_keeper_tb_28 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_16 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_6__iter_value.object ); tmp_for_loop_6__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_6__for_iterator.object ); tmp_for_loop_6__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_16; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_28 != NULL ) { exception_type = exception_keeper_type_28; exception_value = exception_keeper_value_28; exception_tb = exception_keeper_tb_28; goto try_finally_handler_21; } goto finally_end_28; finally_end_28:; branch_no_14:; if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1372; goto try_finally_handler_21; } goto loop_start_5; loop_end_5:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_21:; exception_keeper_type_29 = exception_type; exception_keeper_value_29 = exception_value; exception_keeper_tb_29 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_17 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_4__iter_value.object ); tmp_for_loop_4__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_4__for_iterator.object ); tmp_for_loop_4__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_17; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_29 != NULL ) { exception_type = exception_keeper_type_29; exception_value = exception_keeper_value_29; exception_tb = exception_keeper_tb_29; goto frame_exception_exit_1; } goto finally_end_29; finally_end_29:; tmp_subscr_target_25 = var_rd.object; if ( tmp_subscr_target_25 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1391; goto frame_exception_exit_1; } tmp_subscr_subscript_25 = const_str_plain_cleanupfrompyobj; tmp_isinstance_inst_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_25, tmp_subscr_subscript_25 ); if ( tmp_isinstance_inst_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1391; goto frame_exception_exit_1; } tmp_isinstance_cls_1 = LOOKUP_BUILTIN( const_str_plain_list ); if ( tmp_isinstance_cls_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_isinstance_inst_1 ); frame_function->f_lineno = 1391; goto frame_exception_exit_1; } tmp_res = Nuitka_IsInstance( tmp_isinstance_inst_1, tmp_isinstance_cls_1 ); Py_DECREF( tmp_isinstance_inst_1 ); if ( tmp_res == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1391; goto frame_exception_exit_1; } if (tmp_res == 1) { goto branch_yes_15; } else { goto branch_no_15; } branch_yes_15:; tmp_subscr_target_26 = var_rd.object; if ( tmp_subscr_target_26 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1392; goto frame_exception_exit_1; } tmp_subscr_subscript_26 = const_str_plain_cleanupfrompyobj; tmp_source_name_3 = LOOKUP_SUBSCRIPT( tmp_subscr_target_26, tmp_subscr_subscript_26 ); if ( tmp_source_name_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1392; goto frame_exception_exit_1; } tmp_called_26 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_reverse ); Py_DECREF( tmp_source_name_3 ); if ( tmp_called_26 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1392; goto frame_exception_exit_1; } frame_function->f_lineno = 1392; tmp_unused = CALL_FUNCTION_NO_ARGS( tmp_called_26 ); Py_DECREF( tmp_called_26 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1392; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); branch_no_15:; tmp_subscr_target_27 = var_rd.object; if ( tmp_subscr_target_27 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1393; goto frame_exception_exit_1; } tmp_subscr_subscript_27 = const_str_plain_closepyobjfrom; tmp_isinstance_inst_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_27, tmp_subscr_subscript_27 ); if ( tmp_isinstance_inst_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1393; goto frame_exception_exit_1; } tmp_isinstance_cls_2 = LOOKUP_BUILTIN( const_str_plain_list ); if ( tmp_isinstance_cls_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_isinstance_inst_2 ); frame_function->f_lineno = 1393; goto frame_exception_exit_1; } tmp_res = Nuitka_IsInstance( tmp_isinstance_inst_2, tmp_isinstance_cls_2 ); Py_DECREF( tmp_isinstance_inst_2 ); if ( tmp_res == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1393; goto frame_exception_exit_1; } if (tmp_res == 1) { goto branch_yes_16; } else { goto branch_no_16; } branch_yes_16:; tmp_subscr_target_28 = var_rd.object; if ( tmp_subscr_target_28 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1394; goto frame_exception_exit_1; } tmp_subscr_subscript_28 = const_str_plain_closepyobjfrom; tmp_source_name_4 = LOOKUP_SUBSCRIPT( tmp_subscr_target_28, tmp_subscr_subscript_28 ); if ( tmp_source_name_4 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1394; goto frame_exception_exit_1; } tmp_called_27 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain_reverse ); Py_DECREF( tmp_source_name_4 ); if ( tmp_called_27 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1394; goto frame_exception_exit_1; } frame_function->f_lineno = 1394; tmp_unused = CALL_FUNCTION_NO_ARGS( tmp_called_27 ); Py_DECREF( tmp_called_27 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1394; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); branch_no_16:; tmp_called_28 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_stripcomma ); if (unlikely( tmp_called_28 == NULL )) { tmp_called_28 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_stripcomma ); } if ( tmp_called_28 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129956 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1395; goto frame_exception_exit_1; } tmp_called_29 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_replace ); if (unlikely( tmp_called_29 == NULL )) { tmp_called_29 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_replace ); } if ( tmp_called_29 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 62213 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1395; goto frame_exception_exit_1; } tmp_call_arg_element_40 = const_str_digest_9912dfb1857add237abf1afe8d04d515; tmp_call_arg_element_41 = _PyDict_NewPresized( 3 ); tmp_subscr_target_29 = var_rd.object; if ( tmp_subscr_target_29 == NULL ) { Py_DECREF( tmp_call_arg_element_41 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1396; goto frame_exception_exit_1; } tmp_subscr_subscript_29 = const_str_plain_docsign; tmp_dict_value_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_29, tmp_subscr_subscript_29 ); if ( tmp_dict_value_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_call_arg_element_41 ); frame_function->f_lineno = 1396; goto frame_exception_exit_1; } tmp_dict_key_1 = const_str_plain_docsign; PyDict_SetItem( tmp_call_arg_element_41, tmp_dict_key_1, tmp_dict_value_1 ); Py_DECREF( tmp_dict_value_1 ); tmp_subscr_target_30 = var_rd.object; if ( tmp_subscr_target_30 == NULL ) { Py_DECREF( tmp_call_arg_element_41 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1397; goto frame_exception_exit_1; } tmp_subscr_subscript_30 = const_str_plain_docsignopt; tmp_dict_value_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_30, tmp_subscr_subscript_30 ); if ( tmp_dict_value_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_call_arg_element_41 ); frame_function->f_lineno = 1397; goto frame_exception_exit_1; } tmp_dict_key_2 = const_str_plain_docsignopt; PyDict_SetItem( tmp_call_arg_element_41, tmp_dict_key_2, tmp_dict_value_2 ); Py_DECREF( tmp_dict_value_2 ); tmp_subscr_target_31 = var_rd.object; if ( tmp_subscr_target_31 == NULL ) { Py_DECREF( tmp_call_arg_element_41 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1398; goto frame_exception_exit_1; } tmp_subscr_subscript_31 = const_str_plain_docsignxa; tmp_dict_value_3 = LOOKUP_SUBSCRIPT( tmp_subscr_target_31, tmp_subscr_subscript_31 ); if ( tmp_dict_value_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_call_arg_element_41 ); frame_function->f_lineno = 1398; goto frame_exception_exit_1; } tmp_dict_key_3 = const_str_plain_docsignxa; PyDict_SetItem( tmp_call_arg_element_41, tmp_dict_key_3, tmp_dict_value_3 ); Py_DECREF( tmp_dict_value_3 ); frame_function->f_lineno = 1398; tmp_call_arg_element_39 = CALL_FUNCTION_WITH_ARGS2( tmp_called_29, tmp_call_arg_element_40, tmp_call_arg_element_41 ); Py_DECREF( tmp_call_arg_element_41 ); if ( tmp_call_arg_element_39 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1398; goto frame_exception_exit_1; } frame_function->f_lineno = 1395; tmp_ass_subvalue_6 = CALL_FUNCTION_WITH_ARGS1( tmp_called_28, tmp_call_arg_element_39 ); Py_DECREF( tmp_call_arg_element_39 ); if ( tmp_ass_subvalue_6 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1395; goto frame_exception_exit_1; } tmp_ass_subscribed_6 = var_rd.object; if ( tmp_ass_subscribed_6 == NULL ) { Py_DECREF( tmp_ass_subvalue_6 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1395; goto frame_exception_exit_1; } tmp_ass_subscript_6 = const_str_plain_docsignature; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_6, tmp_ass_subscript_6, tmp_ass_subvalue_6 ); Py_DECREF( tmp_ass_subvalue_6 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1395; goto frame_exception_exit_1; } tmp_called_30 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_stripcomma ); if (unlikely( tmp_called_30 == NULL )) { tmp_called_30 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_stripcomma ); } if ( tmp_called_30 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129956 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1399; goto frame_exception_exit_1; } tmp_called_31 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_replace ); if (unlikely( tmp_called_31 == NULL )) { tmp_called_31 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_replace ); } if ( tmp_called_31 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 62213 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1399; goto frame_exception_exit_1; } tmp_call_arg_element_43 = const_str_digest_56c4578d7e79e9d1b9921f69f505bc38; tmp_call_arg_element_44 = _PyDict_NewPresized( 2 ); tmp_subscr_target_32 = var_rd.object; if ( tmp_subscr_target_32 == NULL ) { Py_DECREF( tmp_call_arg_element_44 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1400; goto frame_exception_exit_1; } tmp_subscr_subscript_32 = const_str_plain_docsignxashort; tmp_dict_value_4 = LOOKUP_SUBSCRIPT( tmp_subscr_target_32, tmp_subscr_subscript_32 ); if ( tmp_dict_value_4 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_call_arg_element_44 ); frame_function->f_lineno = 1400; goto frame_exception_exit_1; } tmp_dict_key_4 = const_str_plain_docsignxa; PyDict_SetItem( tmp_call_arg_element_44, tmp_dict_key_4, tmp_dict_value_4 ); Py_DECREF( tmp_dict_value_4 ); tmp_subscr_target_33 = var_rd.object; if ( tmp_subscr_target_33 == NULL ) { Py_DECREF( tmp_call_arg_element_44 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1401; goto frame_exception_exit_1; } tmp_subscr_subscript_33 = const_str_plain_docsignoptshort; tmp_dict_value_5 = LOOKUP_SUBSCRIPT( tmp_subscr_target_33, tmp_subscr_subscript_33 ); if ( tmp_dict_value_5 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_call_arg_element_44 ); frame_function->f_lineno = 1401; goto frame_exception_exit_1; } tmp_dict_key_5 = const_str_plain_docsignopt; PyDict_SetItem( tmp_call_arg_element_44, tmp_dict_key_5, tmp_dict_value_5 ); Py_DECREF( tmp_dict_value_5 ); frame_function->f_lineno = 1401; tmp_call_arg_element_42 = CALL_FUNCTION_WITH_ARGS2( tmp_called_31, tmp_call_arg_element_43, tmp_call_arg_element_44 ); Py_DECREF( tmp_call_arg_element_44 ); if ( tmp_call_arg_element_42 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1401; goto frame_exception_exit_1; } frame_function->f_lineno = 1399; tmp_assign_source_65 = CALL_FUNCTION_WITH_ARGS1( tmp_called_30, tmp_call_arg_element_42 ); Py_DECREF( tmp_call_arg_element_42 ); if ( tmp_assign_source_65 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1399; goto frame_exception_exit_1; } assert( var_optargs.object == NULL ); var_optargs.object = tmp_assign_source_65; tmp_compare_left_6 = var_optargs.object; tmp_compare_right_6 = const_str_empty; tmp_cmp_Eq_1 = RICH_COMPARE_BOOL_EQ( tmp_compare_left_6, tmp_compare_right_6 ); if ( tmp_cmp_Eq_1 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1403; goto frame_exception_exit_1; } if (tmp_cmp_Eq_1 == 1) { goto branch_yes_17; } else { goto branch_no_17; } branch_yes_17:; tmp_called_32 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_stripcomma ); if (unlikely( tmp_called_32 == NULL )) { tmp_called_32 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_stripcomma ); } if ( tmp_called_32 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129956 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1404; goto frame_exception_exit_1; } tmp_called_33 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_replace ); if (unlikely( tmp_called_33 == NULL )) { tmp_called_33 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_replace ); } if ( tmp_called_33 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 62213 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1404; goto frame_exception_exit_1; } tmp_call_arg_element_46 = const_str_digest_b8dc8513ea6a44621ecfd35fbdc9110c; tmp_call_arg_element_47 = _PyDict_NewPresized( 1 ); tmp_subscr_target_34 = var_rd.object; if ( tmp_subscr_target_34 == NULL ) { Py_DECREF( tmp_call_arg_element_47 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1404; goto frame_exception_exit_1; } tmp_subscr_subscript_34 = const_str_plain_docsign; tmp_dict_value_6 = LOOKUP_SUBSCRIPT( tmp_subscr_target_34, tmp_subscr_subscript_34 ); if ( tmp_dict_value_6 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_call_arg_element_47 ); frame_function->f_lineno = 1404; goto frame_exception_exit_1; } tmp_dict_key_6 = const_str_plain_docsign; PyDict_SetItem( tmp_call_arg_element_47, tmp_dict_key_6, tmp_dict_value_6 ); Py_DECREF( tmp_dict_value_6 ); frame_function->f_lineno = 1404; tmp_call_arg_element_45 = CALL_FUNCTION_WITH_ARGS2( tmp_called_33, tmp_call_arg_element_46, tmp_call_arg_element_47 ); Py_DECREF( tmp_call_arg_element_47 ); if ( tmp_call_arg_element_45 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1404; goto frame_exception_exit_1; } frame_function->f_lineno = 1404; tmp_ass_subvalue_7 = CALL_FUNCTION_WITH_ARGS1( tmp_called_32, tmp_call_arg_element_45 ); Py_DECREF( tmp_call_arg_element_45 ); if ( tmp_ass_subvalue_7 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1404; goto frame_exception_exit_1; } tmp_ass_subscribed_7 = var_rd.object; if ( tmp_ass_subscribed_7 == NULL ) { Py_DECREF( tmp_ass_subvalue_7 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1404; goto frame_exception_exit_1; } tmp_ass_subscript_7 = const_str_plain_docsignatureshort; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_7, tmp_ass_subscript_7, tmp_ass_subvalue_7 ); Py_DECREF( tmp_ass_subvalue_7 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1404; goto frame_exception_exit_1; } goto branch_end_17; branch_no_17:; tmp_called_34 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_replace ); if (unlikely( tmp_called_34 == NULL )) { tmp_called_34 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_replace ); } if ( tmp_called_34 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 62213 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1406; goto frame_exception_exit_1; } tmp_call_arg_element_48 = const_str_digest_c6ed2021e7dfb461dbb032362c3c5cc1; tmp_call_arg_element_49 = _PyDict_NewPresized( 2 ); tmp_subscr_target_35 = var_rd.object; if ( tmp_subscr_target_35 == NULL ) { Py_DECREF( tmp_call_arg_element_49 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1407; goto frame_exception_exit_1; } tmp_subscr_subscript_35 = const_str_plain_docsign; tmp_dict_value_7 = LOOKUP_SUBSCRIPT( tmp_subscr_target_35, tmp_subscr_subscript_35 ); if ( tmp_dict_value_7 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_call_arg_element_49 ); frame_function->f_lineno = 1407; goto frame_exception_exit_1; } tmp_dict_key_7 = const_str_plain_docsign; PyDict_SetItem( tmp_call_arg_element_49, tmp_dict_key_7, tmp_dict_value_7 ); Py_DECREF( tmp_dict_value_7 ); tmp_dict_value_8 = var_optargs.object; tmp_dict_key_8 = const_str_plain_docsignopt; PyDict_SetItem( tmp_call_arg_element_49, tmp_dict_key_8, tmp_dict_value_8 ); frame_function->f_lineno = 1408; tmp_ass_subvalue_8 = CALL_FUNCTION_WITH_ARGS2( tmp_called_34, tmp_call_arg_element_48, tmp_call_arg_element_49 ); Py_DECREF( tmp_call_arg_element_49 ); if ( tmp_ass_subvalue_8 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1408; goto frame_exception_exit_1; } tmp_ass_subscribed_8 = var_rd.object; if ( tmp_ass_subscribed_8 == NULL ) { Py_DECREF( tmp_ass_subvalue_8 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1406; goto frame_exception_exit_1; } tmp_ass_subscript_8 = const_str_plain_docsignatureshort; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_8, tmp_ass_subscript_8, tmp_ass_subvalue_8 ); Py_DECREF( tmp_ass_subvalue_8 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1406; goto frame_exception_exit_1; } branch_end_17:; tmp_subscr_target_36 = var_rd.object; if ( tmp_subscr_target_36 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1410; goto frame_exception_exit_1; } tmp_subscr_subscript_36 = const_str_plain_docsignatureshort; tmp_source_name_5 = LOOKUP_SUBSCRIPT( tmp_subscr_target_36, tmp_subscr_subscript_36 ); if ( tmp_source_name_5 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1410; goto frame_exception_exit_1; } tmp_called_35 = LOOKUP_ATTRIBUTE( tmp_source_name_5, const_str_plain_replace ); Py_DECREF( tmp_source_name_5 ); if ( tmp_called_35 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1410; goto frame_exception_exit_1; } tmp_call_arg_element_50 = const_str_plain__; tmp_call_arg_element_51 = const_str_digest_a0e09455d4337213cd42ebadc4d27d3b; frame_function->f_lineno = 1410; tmp_ass_subvalue_9 = CALL_FUNCTION_WITH_ARGS2( tmp_called_35, tmp_call_arg_element_50, tmp_call_arg_element_51 ); Py_DECREF( tmp_called_35 ); if ( tmp_ass_subvalue_9 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1410; goto frame_exception_exit_1; } tmp_ass_subscribed_9 = var_rd.object; if ( tmp_ass_subscribed_9 == NULL ) { Py_DECREF( tmp_ass_subvalue_9 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1410; goto frame_exception_exit_1; } tmp_ass_subscript_9 = const_str_plain_latexdocsignatureshort; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_9, tmp_ass_subscript_9, tmp_ass_subvalue_9 ); Py_DECREF( tmp_ass_subvalue_9 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1410; goto frame_exception_exit_1; } tmp_subscr_target_37 = var_rd.object; if ( tmp_subscr_target_37 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1411; goto frame_exception_exit_1; } tmp_subscr_subscript_37 = const_str_plain_latexdocsignatureshort; tmp_source_name_6 = LOOKUP_SUBSCRIPT( tmp_subscr_target_37, tmp_subscr_subscript_37 ); if ( tmp_source_name_6 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1411; goto frame_exception_exit_1; } tmp_called_36 = LOOKUP_ATTRIBUTE( tmp_source_name_6, const_str_plain_replace ); Py_DECREF( tmp_source_name_6 ); if ( tmp_called_36 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1411; goto frame_exception_exit_1; } tmp_call_arg_element_52 = const_str_chr_44; tmp_call_arg_element_53 = const_str_digest_fc763cb31e9938f37737394681228f83; frame_function->f_lineno = 1411; tmp_ass_subvalue_10 = CALL_FUNCTION_WITH_ARGS2( tmp_called_36, tmp_call_arg_element_52, tmp_call_arg_element_53 ); Py_DECREF( tmp_called_36 ); if ( tmp_ass_subvalue_10 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1411; goto frame_exception_exit_1; } tmp_ass_subscribed_10 = var_rd.object; if ( tmp_ass_subscribed_10 == NULL ) { Py_DECREF( tmp_ass_subvalue_10 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1411; goto frame_exception_exit_1; } tmp_ass_subscript_10 = const_str_plain_latexdocsignatureshort; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_10, tmp_ass_subscript_10, tmp_ass_subvalue_10 ); Py_DECREF( tmp_ass_subvalue_10 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1411; goto frame_exception_exit_1; } tmp_called_37 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_stripcomma ); if (unlikely( tmp_called_37 == NULL )) { tmp_called_37 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_stripcomma ); } if ( tmp_called_37 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129956 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1412; goto frame_exception_exit_1; } tmp_called_38 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_replace ); if (unlikely( tmp_called_38 == NULL )) { tmp_called_38 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_replace ); } if ( tmp_called_38 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 62213 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1412; goto frame_exception_exit_1; } tmp_call_arg_element_55 = const_str_digest_9eb6c06dfbe3b1d972d9cd5b3cd07ad3; tmp_call_arg_element_56 = _PyDict_NewPresized( 2 ); tmp_subscr_target_38 = var_rd.object; if ( tmp_subscr_target_38 == NULL ) { Py_DECREF( tmp_call_arg_element_56 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1412; goto frame_exception_exit_1; } tmp_subscr_subscript_38 = const_str_plain_callfortran; tmp_dict_value_9 = LOOKUP_SUBSCRIPT( tmp_subscr_target_38, tmp_subscr_subscript_38 ); if ( tmp_dict_value_9 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_call_arg_element_56 ); frame_function->f_lineno = 1412; goto frame_exception_exit_1; } tmp_dict_key_9 = const_str_plain_callfortran; PyDict_SetItem( tmp_call_arg_element_56, tmp_dict_key_9, tmp_dict_value_9 ); Py_DECREF( tmp_dict_value_9 ); tmp_subscr_target_39 = var_rd.object; if ( tmp_subscr_target_39 == NULL ) { Py_DECREF( tmp_call_arg_element_56 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1412; goto frame_exception_exit_1; } tmp_subscr_subscript_39 = const_str_plain_callfortranappend; tmp_dict_value_10 = LOOKUP_SUBSCRIPT( tmp_subscr_target_39, tmp_subscr_subscript_39 ); if ( tmp_dict_value_10 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_call_arg_element_56 ); frame_function->f_lineno = 1412; goto frame_exception_exit_1; } tmp_dict_key_10 = const_str_plain_callfortranappend; PyDict_SetItem( tmp_call_arg_element_56, tmp_dict_key_10, tmp_dict_value_10 ); Py_DECREF( tmp_dict_value_10 ); frame_function->f_lineno = 1412; tmp_call_arg_element_54 = CALL_FUNCTION_WITH_ARGS2( tmp_called_38, tmp_call_arg_element_55, tmp_call_arg_element_56 ); Py_DECREF( tmp_call_arg_element_56 ); if ( tmp_call_arg_element_54 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1412; goto frame_exception_exit_1; } frame_function->f_lineno = 1412; tmp_assign_source_66 = CALL_FUNCTION_WITH_ARGS1( tmp_called_37, tmp_call_arg_element_54 ); Py_DECREF( tmp_call_arg_element_54 ); if ( tmp_assign_source_66 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1412; goto frame_exception_exit_1; } assert( var_cfs.object == NULL ); var_cfs.object = tmp_assign_source_66; tmp_subscr_target_40 = var_rd.object; if ( tmp_subscr_target_40 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1413; goto frame_exception_exit_1; } tmp_subscr_subscript_40 = const_str_plain_callfortranappend; tmp_len_arg_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_40, tmp_subscr_subscript_40 ); if ( tmp_len_arg_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1413; goto frame_exception_exit_1; } tmp_compare_left_7 = BUILTIN_LEN( tmp_len_arg_1 ); Py_DECREF( tmp_len_arg_1 ); if ( tmp_compare_left_7 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1413; goto frame_exception_exit_1; } tmp_compare_right_7 = const_int_pos_1; tmp_cmp_Gt_1 = RICH_COMPARE_BOOL_GT( tmp_compare_left_7, tmp_compare_right_7 ); if ( tmp_cmp_Gt_1 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_compare_left_7 ); frame_function->f_lineno = 1413; goto frame_exception_exit_1; } Py_DECREF( tmp_compare_left_7 ); if (tmp_cmp_Gt_1 == 1) { goto branch_yes_18; } else { goto branch_no_18; } branch_yes_18:; tmp_called_39 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_stripcomma ); if (unlikely( tmp_called_39 == NULL )) { tmp_called_39 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_stripcomma ); } if ( tmp_called_39 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129956 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1414; goto frame_exception_exit_1; } tmp_called_40 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_replace ); if (unlikely( tmp_called_40 == NULL )) { tmp_called_40 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_replace ); } if ( tmp_called_40 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 62213 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1414; goto frame_exception_exit_1; } tmp_call_arg_element_58 = const_str_digest_36c45669e1ecb4a38cd16d553a9afbb9; tmp_call_arg_element_59 = _PyDict_NewPresized( 2 ); tmp_subscr_target_41 = var_rd.object; if ( tmp_subscr_target_41 == NULL ) { Py_DECREF( tmp_call_arg_element_59 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1414; goto frame_exception_exit_1; } tmp_subscr_subscript_41 = const_str_plain_callfortran; tmp_dict_value_11 = LOOKUP_SUBSCRIPT( tmp_subscr_target_41, tmp_subscr_subscript_41 ); if ( tmp_dict_value_11 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_call_arg_element_59 ); frame_function->f_lineno = 1414; goto frame_exception_exit_1; } tmp_dict_key_11 = const_str_plain_callfortran; PyDict_SetItem( tmp_call_arg_element_59, tmp_dict_key_11, tmp_dict_value_11 ); Py_DECREF( tmp_dict_value_11 ); tmp_subscr_target_42 = var_rd.object; if ( tmp_subscr_target_42 == NULL ) { Py_DECREF( tmp_call_arg_element_59 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1414; goto frame_exception_exit_1; } tmp_subscr_subscript_42 = const_str_plain_callfortranappend; tmp_dict_value_12 = LOOKUP_SUBSCRIPT( tmp_subscr_target_42, tmp_subscr_subscript_42 ); if ( tmp_dict_value_12 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_call_arg_element_59 ); frame_function->f_lineno = 1414; goto frame_exception_exit_1; } tmp_dict_key_12 = const_str_plain_callfortranappend; PyDict_SetItem( tmp_call_arg_element_59, tmp_dict_key_12, tmp_dict_value_12 ); Py_DECREF( tmp_dict_value_12 ); frame_function->f_lineno = 1414; tmp_call_arg_element_57 = CALL_FUNCTION_WITH_ARGS2( tmp_called_40, tmp_call_arg_element_58, tmp_call_arg_element_59 ); Py_DECREF( tmp_call_arg_element_59 ); if ( tmp_call_arg_element_57 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1414; goto frame_exception_exit_1; } frame_function->f_lineno = 1414; tmp_ass_subvalue_11 = CALL_FUNCTION_WITH_ARGS1( tmp_called_39, tmp_call_arg_element_57 ); Py_DECREF( tmp_call_arg_element_57 ); if ( tmp_ass_subvalue_11 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1414; goto frame_exception_exit_1; } tmp_ass_subscribed_11 = var_rd.object; if ( tmp_ass_subscribed_11 == NULL ) { Py_DECREF( tmp_ass_subvalue_11 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1414; goto frame_exception_exit_1; } tmp_ass_subscript_11 = const_str_plain_callcompaqfortran; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_11, tmp_ass_subscript_11, tmp_ass_subvalue_11 ); Py_DECREF( tmp_ass_subvalue_11 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1414; goto frame_exception_exit_1; } goto branch_end_18; branch_no_18:; tmp_ass_subvalue_12 = var_cfs.object; tmp_ass_subscribed_12 = var_rd.object; if ( tmp_ass_subscribed_12 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1416; goto frame_exception_exit_1; } tmp_ass_subscript_12 = const_str_plain_callcompaqfortran; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_12, tmp_ass_subscript_12, tmp_ass_subvalue_12 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1416; goto frame_exception_exit_1; } branch_end_18:; tmp_ass_subvalue_13 = var_cfs.object; tmp_ass_subscribed_13 = var_rd.object; if ( tmp_ass_subscribed_13 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1417; goto frame_exception_exit_1; } tmp_ass_subscript_13 = const_str_plain_callfortran; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_13, tmp_ass_subscript_13, tmp_ass_subvalue_13 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1417; goto frame_exception_exit_1; } tmp_subscr_target_43 = var_rd.object; if ( tmp_subscr_target_43 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1418; goto frame_exception_exit_1; } tmp_subscr_subscript_43 = const_str_plain_docreturn; tmp_isinstance_inst_3 = LOOKUP_SUBSCRIPT( tmp_subscr_target_43, tmp_subscr_subscript_43 ); if ( tmp_isinstance_inst_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1418; goto frame_exception_exit_1; } tmp_isinstance_cls_3 = LOOKUP_BUILTIN( const_str_plain_list ); if ( tmp_isinstance_cls_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_isinstance_inst_3 ); frame_function->f_lineno = 1418; goto frame_exception_exit_1; } tmp_res = Nuitka_IsInstance( tmp_isinstance_inst_3, tmp_isinstance_cls_3 ); Py_DECREF( tmp_isinstance_inst_3 ); if ( tmp_res == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1418; goto frame_exception_exit_1; } if (tmp_res == 1) { goto branch_yes_19; } else { goto branch_no_19; } branch_yes_19:; tmp_called_41 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_stripcomma ); if (unlikely( tmp_called_41 == NULL )) { tmp_called_41 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_stripcomma ); } if ( tmp_called_41 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129956 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1419; goto frame_exception_exit_1; } tmp_called_42 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_replace ); if (unlikely( tmp_called_42 == NULL )) { tmp_called_42 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_replace ); } if ( tmp_called_42 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 62213 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1419; goto frame_exception_exit_1; } tmp_call_arg_element_61 = const_str_digest_2440d16610baa62c4946b481a40982f8; tmp_call_arg_element_62 = _PyDict_NewPresized( 1 ); tmp_subscr_target_44 = var_rd.object; if ( tmp_subscr_target_44 == NULL ) { Py_DECREF( tmp_call_arg_element_62 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1419; goto frame_exception_exit_1; } tmp_subscr_subscript_44 = const_str_plain_docreturn; tmp_dict_value_13 = LOOKUP_SUBSCRIPT( tmp_subscr_target_44, tmp_subscr_subscript_44 ); if ( tmp_dict_value_13 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_call_arg_element_62 ); frame_function->f_lineno = 1419; goto frame_exception_exit_1; } tmp_dict_key_13 = const_str_plain_docreturn; PyDict_SetItem( tmp_call_arg_element_62, tmp_dict_key_13, tmp_dict_value_13 ); Py_DECREF( tmp_dict_value_13 ); frame_function->f_lineno = 1419; tmp_call_arg_element_60 = CALL_FUNCTION_WITH_ARGS2( tmp_called_42, tmp_call_arg_element_61, tmp_call_arg_element_62 ); Py_DECREF( tmp_call_arg_element_62 ); if ( tmp_call_arg_element_60 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1419; goto frame_exception_exit_1; } frame_function->f_lineno = 1419; tmp_binop_left_11 = CALL_FUNCTION_WITH_ARGS1( tmp_called_41, tmp_call_arg_element_60 ); Py_DECREF( tmp_call_arg_element_60 ); if ( tmp_binop_left_11 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1419; goto frame_exception_exit_1; } tmp_binop_right_11 = const_str_digest_fcacca1424f339192c748b8e531c8ec3; tmp_ass_subvalue_14 = BINARY_OPERATION_ADD( tmp_binop_left_11, tmp_binop_right_11 ); Py_DECREF( tmp_binop_left_11 ); if ( tmp_ass_subvalue_14 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1419; goto frame_exception_exit_1; } tmp_ass_subscribed_14 = var_rd.object; if ( tmp_ass_subscribed_14 == NULL ) { Py_DECREF( tmp_ass_subvalue_14 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1419; goto frame_exception_exit_1; } tmp_ass_subscript_14 = const_str_plain_docreturn; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_14, tmp_ass_subscript_14, tmp_ass_subvalue_14 ); Py_DECREF( tmp_ass_subvalue_14 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1419; goto frame_exception_exit_1; } branch_no_19:; tmp_ass_subvalue_15 = PyList_New( 0 ); tmp_ass_subscribed_15 = var_rd.object; if ( tmp_ass_subscribed_15 == NULL ) { Py_DECREF( tmp_ass_subvalue_15 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1420; goto frame_exception_exit_1; } tmp_ass_subscript_15 = const_str_plain_docstrsigns; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_15, tmp_ass_subscript_15, tmp_ass_subvalue_15 ); Py_DECREF( tmp_ass_subvalue_15 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1420; goto frame_exception_exit_1; } tmp_ass_subvalue_16 = PyList_New( 0 ); tmp_ass_subscribed_16 = var_rd.object; if ( tmp_ass_subscribed_16 == NULL ) { Py_DECREF( tmp_ass_subvalue_16 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1421; goto frame_exception_exit_1; } tmp_ass_subscript_16 = const_str_plain_latexdocstrsigns; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_16, tmp_ass_subscript_16, tmp_ass_subvalue_16 ); Py_DECREF( tmp_ass_subvalue_16 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1421; goto frame_exception_exit_1; } tmp_iter_arg_11 = const_tuple_a66751b7c76123c024f448eec46707b1_tuple; tmp_assign_source_67 = MAKE_ITERATOR( tmp_iter_arg_11 ); if ( tmp_assign_source_67 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1422; goto frame_exception_exit_1; } assert( tmp_for_loop_7__for_iterator.object == NULL ); tmp_for_loop_7__for_iterator.object = tmp_assign_source_67; // Tried code loop_start_8:; tmp_next_source_8 = tmp_for_loop_7__for_iterator.object; tmp_assign_source_68 = ITERATOR_NEXT( tmp_next_source_8 ); if (tmp_assign_source_68 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_8; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1422; goto try_finally_handler_30; } } if (tmp_for_loop_7__iter_value.object == NULL) { tmp_for_loop_7__iter_value.object = tmp_assign_source_68; } else { PyObject *old = tmp_for_loop_7__iter_value.object; tmp_for_loop_7__iter_value.object = tmp_assign_source_68; Py_DECREF( old ); } tmp_assign_source_69 = tmp_for_loop_7__iter_value.object; if (var_k.object == NULL) { var_k.object = INCREASE_REFCOUNT( tmp_assign_source_69 ); } else { PyObject *old = var_k.object; var_k.object = INCREASE_REFCOUNT( tmp_assign_source_69 ); Py_DECREF( old ); } // Tried code tmp_cond_value_16 = NULL; // Tried code tmp_compexpr_left_7 = var_k.object; tmp_compexpr_right_7 = var_rd.object; if ( tmp_compexpr_right_7 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1423; goto try_finally_handler_32; } tmp_assign_source_70 = SEQUENCE_CONTAINS( tmp_compexpr_left_7, tmp_compexpr_right_7 ); if ( tmp_assign_source_70 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1423; goto try_finally_handler_32; } if (tmp_and_4__value_1.object == NULL) { tmp_and_4__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_70 ); } else { PyObject *old = tmp_and_4__value_1.object; tmp_and_4__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_70 ); Py_DECREF( old ); } tmp_cond_value_17 = tmp_and_4__value_1.object; tmp_cond_truth_17 = CHECK_IF_TRUE( tmp_cond_value_17 ); if ( tmp_cond_truth_17 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1423; goto try_finally_handler_32; } if (tmp_cond_truth_17 == 1) { goto condexpr_true_7; } else { goto condexpr_false_7; } condexpr_true_7:; tmp_cond_value_16 = NULL; // Tried code tmp_result = tmp_and_4__value_1.object != NULL; if ( tmp_result == true ) { Py_DECREF( tmp_and_4__value_1.object ); tmp_and_4__value_1.object = NULL; } assert( tmp_result != false ); tmp_subscr_target_45 = var_rd.object; if ( tmp_subscr_target_45 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1423; goto try_finally_handler_33; } tmp_subscr_subscript_45 = var_k.object; tmp_isinstance_inst_4 = LOOKUP_SUBSCRIPT( tmp_subscr_target_45, tmp_subscr_subscript_45 ); if ( tmp_isinstance_inst_4 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1423; goto try_finally_handler_33; } tmp_isinstance_cls_4 = LOOKUP_BUILTIN( const_str_plain_list ); if ( tmp_isinstance_cls_4 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_isinstance_inst_4 ); frame_function->f_lineno = 1423; goto try_finally_handler_33; } tmp_cond_value_16 = BUILTIN_ISINSTANCE( tmp_isinstance_inst_4, tmp_isinstance_cls_4 ); Py_DECREF( tmp_isinstance_inst_4 ); if ( tmp_cond_value_16 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1423; goto try_finally_handler_33; } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_33:; exception_keeper_type_30 = exception_type; exception_keeper_value_30 = exception_value; exception_keeper_tb_30 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_30 != NULL ) { exception_type = exception_keeper_type_30; exception_value = exception_keeper_value_30; exception_tb = exception_keeper_tb_30; goto try_finally_handler_32; } goto finally_end_30; finally_end_30:; goto condexpr_end_7; condexpr_false_7:; tmp_cond_value_16 = tmp_and_4__value_1.object; condexpr_end_7:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_32:; exception_keeper_type_31 = exception_type; exception_keeper_value_31 = exception_value; exception_keeper_tb_31 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_31 != NULL ) { exception_type = exception_keeper_type_31; exception_value = exception_keeper_value_31; exception_tb = exception_keeper_tb_31; goto try_finally_handler_31; } goto finally_end_31; finally_end_31:; tmp_cond_truth_16 = CHECK_IF_TRUE( tmp_cond_value_16 ); if ( tmp_cond_truth_16 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1423; goto try_finally_handler_31; } if (tmp_cond_truth_16 == 1) { goto branch_yes_20; } else { goto branch_no_20; } branch_yes_20:; tmp_subscr_target_46 = var_rd.object; if ( tmp_subscr_target_46 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1424; goto try_finally_handler_31; } tmp_subscr_subscript_46 = const_str_plain_docstrsigns; tmp_binop_left_12 = LOOKUP_SUBSCRIPT( tmp_subscr_target_46, tmp_subscr_subscript_46 ); if ( tmp_binop_left_12 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1424; goto try_finally_handler_31; } tmp_subscr_target_47 = var_rd.object; if ( tmp_subscr_target_47 == NULL ) { Py_DECREF( tmp_binop_left_12 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1424; goto try_finally_handler_31; } tmp_subscr_subscript_47 = var_k.object; if ( tmp_subscr_subscript_47 == NULL ) { Py_DECREF( tmp_binop_left_12 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 6318 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1424; goto try_finally_handler_31; } tmp_binop_right_12 = LOOKUP_SUBSCRIPT( tmp_subscr_target_47, tmp_subscr_subscript_47 ); if ( tmp_binop_right_12 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_binop_left_12 ); frame_function->f_lineno = 1424; goto try_finally_handler_31; } tmp_ass_subvalue_17 = BINARY_OPERATION_ADD( tmp_binop_left_12, tmp_binop_right_12 ); Py_DECREF( tmp_binop_left_12 ); Py_DECREF( tmp_binop_right_12 ); if ( tmp_ass_subvalue_17 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1424; goto try_finally_handler_31; } tmp_ass_subscribed_17 = var_rd.object; if ( tmp_ass_subscribed_17 == NULL ) { Py_DECREF( tmp_ass_subvalue_17 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1424; goto try_finally_handler_31; } tmp_ass_subscript_17 = const_str_plain_docstrsigns; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_17, tmp_ass_subscript_17, tmp_ass_subvalue_17 ); Py_DECREF( tmp_ass_subvalue_17 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1424; goto try_finally_handler_31; } branch_no_20:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_31:; exception_keeper_type_32 = exception_type; exception_keeper_value_32 = exception_value; exception_keeper_tb_32 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_18 = frame_function->f_lineno; Py_XDECREF( tmp_and_4__value_1.object ); tmp_and_4__value_1.object = NULL; frame_function->f_lineno = tmp_tried_lineno_18; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_32 != NULL ) { exception_type = exception_keeper_type_32; exception_value = exception_keeper_value_32; exception_tb = exception_keeper_tb_32; goto try_finally_handler_30; } goto finally_end_32; finally_end_32:; tmp_binop_left_13 = const_str_plain_latex; tmp_binop_right_13 = var_k.object; if ( tmp_binop_right_13 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 6318 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1425; goto try_finally_handler_30; } tmp_assign_source_71 = BINARY_OPERATION_ADD( tmp_binop_left_13, tmp_binop_right_13 ); if ( tmp_assign_source_71 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1425; goto try_finally_handler_30; } if (var_k.object == NULL) { var_k.object = tmp_assign_source_71; } else { PyObject *old = var_k.object; var_k.object = tmp_assign_source_71; Py_DECREF( old ); } // Tried code tmp_cond_value_18 = NULL; // Tried code tmp_compexpr_left_8 = var_k.object; tmp_compexpr_right_8 = var_rd.object; if ( tmp_compexpr_right_8 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1426; goto try_finally_handler_35; } tmp_assign_source_72 = SEQUENCE_CONTAINS( tmp_compexpr_left_8, tmp_compexpr_right_8 ); if ( tmp_assign_source_72 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1426; goto try_finally_handler_35; } if (tmp_and_5__value_1.object == NULL) { tmp_and_5__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_72 ); } else { PyObject *old = tmp_and_5__value_1.object; tmp_and_5__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_72 ); Py_DECREF( old ); } tmp_cond_value_19 = tmp_and_5__value_1.object; tmp_cond_truth_19 = CHECK_IF_TRUE( tmp_cond_value_19 ); if ( tmp_cond_truth_19 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1426; goto try_finally_handler_35; } if (tmp_cond_truth_19 == 1) { goto condexpr_true_8; } else { goto condexpr_false_8; } condexpr_true_8:; tmp_cond_value_18 = NULL; // Tried code tmp_result = tmp_and_5__value_1.object != NULL; if ( tmp_result == true ) { Py_DECREF( tmp_and_5__value_1.object ); tmp_and_5__value_1.object = NULL; } assert( tmp_result != false ); tmp_subscr_target_48 = var_rd.object; if ( tmp_subscr_target_48 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1426; goto try_finally_handler_36; } tmp_subscr_subscript_48 = var_k.object; tmp_isinstance_inst_5 = LOOKUP_SUBSCRIPT( tmp_subscr_target_48, tmp_subscr_subscript_48 ); if ( tmp_isinstance_inst_5 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1426; goto try_finally_handler_36; } tmp_isinstance_cls_5 = LOOKUP_BUILTIN( const_str_plain_list ); if ( tmp_isinstance_cls_5 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_isinstance_inst_5 ); frame_function->f_lineno = 1426; goto try_finally_handler_36; } tmp_cond_value_18 = BUILTIN_ISINSTANCE( tmp_isinstance_inst_5, tmp_isinstance_cls_5 ); Py_DECREF( tmp_isinstance_inst_5 ); if ( tmp_cond_value_18 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1426; goto try_finally_handler_36; } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_36:; exception_keeper_type_33 = exception_type; exception_keeper_value_33 = exception_value; exception_keeper_tb_33 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_33 != NULL ) { exception_type = exception_keeper_type_33; exception_value = exception_keeper_value_33; exception_tb = exception_keeper_tb_33; goto try_finally_handler_35; } goto finally_end_33; finally_end_33:; goto condexpr_end_8; condexpr_false_8:; tmp_cond_value_18 = tmp_and_5__value_1.object; condexpr_end_8:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_35:; exception_keeper_type_34 = exception_type; exception_keeper_value_34 = exception_value; exception_keeper_tb_34 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_34 != NULL ) { exception_type = exception_keeper_type_34; exception_value = exception_keeper_value_34; exception_tb = exception_keeper_tb_34; goto try_finally_handler_34; } goto finally_end_34; finally_end_34:; tmp_cond_truth_18 = CHECK_IF_TRUE( tmp_cond_value_18 ); if ( tmp_cond_truth_18 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1426; goto try_finally_handler_34; } if (tmp_cond_truth_18 == 1) { goto branch_yes_21; } else { goto branch_no_21; } branch_yes_21:; tmp_subscr_target_49 = var_rd.object; if ( tmp_subscr_target_49 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1427; goto try_finally_handler_34; } tmp_subscr_subscript_49 = const_str_plain_latexdocstrsigns; tmp_binop_left_17 = LOOKUP_SUBSCRIPT( tmp_subscr_target_49, tmp_subscr_subscript_49 ); if ( tmp_binop_left_17 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1427; goto try_finally_handler_34; } tmp_sliceslicedel_index_lower_1 = 0; tmp_slice_index_upper_1 = 1; tmp_subscr_target_50 = var_rd.object; if ( tmp_subscr_target_50 == NULL ) { Py_DECREF( tmp_binop_left_17 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1427; goto try_finally_handler_34; } tmp_subscr_subscript_50 = var_k.object; if ( tmp_subscr_subscript_50 == NULL ) { Py_DECREF( tmp_binop_left_17 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 6318 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1427; goto try_finally_handler_34; } tmp_slice_source_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_50, tmp_subscr_subscript_50 ); if ( tmp_slice_source_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_binop_left_17 ); frame_function->f_lineno = 1427; goto try_finally_handler_34; } tmp_binop_right_17 = LOOKUP_INDEX_SLICE( tmp_slice_source_1, tmp_sliceslicedel_index_lower_1, tmp_slice_index_upper_1 ); Py_DECREF( tmp_slice_source_1 ); if ( tmp_binop_right_17 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_binop_left_17 ); frame_function->f_lineno = 1427; goto try_finally_handler_34; } tmp_binop_left_16 = BINARY_OPERATION_ADD( tmp_binop_left_17, tmp_binop_right_17 ); Py_DECREF( tmp_binop_left_17 ); Py_DECREF( tmp_binop_right_17 ); if ( tmp_binop_left_16 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1427; goto try_finally_handler_34; } tmp_binop_right_16 = LIST_COPY( const_list_str_digest_352c2c361762a5fb011e95a778b8a254_list ); tmp_binop_left_15 = BINARY_OPERATION_ADD( tmp_binop_left_16, tmp_binop_right_16 ); Py_DECREF( tmp_binop_left_16 ); Py_DECREF( tmp_binop_right_16 ); if ( tmp_binop_left_15 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1427; goto try_finally_handler_34; } tmp_sliceslicedel_index_lower_2 = 1; tmp_slice_index_upper_2 = PY_SSIZE_T_MAX; tmp_subscr_target_51 = var_rd.object; if ( tmp_subscr_target_51 == NULL ) { Py_DECREF( tmp_binop_left_15 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1428; goto try_finally_handler_34; } tmp_subscr_subscript_51 = var_k.object; if ( tmp_subscr_subscript_51 == NULL ) { Py_DECREF( tmp_binop_left_15 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 6318 ], 47, 0 ); exception_tb = NULL; frame_function->f_lineno = 1428; goto try_finally_handler_34; } tmp_slice_source_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_51, tmp_subscr_subscript_51 ); if ( tmp_slice_source_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_binop_left_15 ); frame_function->f_lineno = 1428; goto try_finally_handler_34; } tmp_binop_right_15 = LOOKUP_INDEX_SLICE( tmp_slice_source_2, tmp_sliceslicedel_index_lower_2, tmp_slice_index_upper_2 ); Py_DECREF( tmp_slice_source_2 ); if ( tmp_binop_right_15 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_binop_left_15 ); frame_function->f_lineno = 1428; goto try_finally_handler_34; } tmp_binop_left_14 = BINARY_OPERATION_ADD( tmp_binop_left_15, tmp_binop_right_15 ); Py_DECREF( tmp_binop_left_15 ); Py_DECREF( tmp_binop_right_15 ); if ( tmp_binop_left_14 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1428; goto try_finally_handler_34; } tmp_binop_right_14 = LIST_COPY( const_list_str_digest_f8286407d5c451802306b2d15cf2167e_list ); tmp_ass_subvalue_18 = BINARY_OPERATION_ADD( tmp_binop_left_14, tmp_binop_right_14 ); Py_DECREF( tmp_binop_left_14 ); Py_DECREF( tmp_binop_right_14 ); if ( tmp_ass_subvalue_18 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1428; goto try_finally_handler_34; } tmp_ass_subscribed_18 = var_rd.object; if ( tmp_ass_subscribed_18 == NULL ) { Py_DECREF( tmp_ass_subvalue_18 ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1427; goto try_finally_handler_34; } tmp_ass_subscript_18 = const_str_plain_latexdocstrsigns; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_18, tmp_ass_subscript_18, tmp_ass_subvalue_18 ); Py_DECREF( tmp_ass_subvalue_18 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1428; goto try_finally_handler_34; } branch_no_21:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_34:; exception_keeper_type_35 = exception_type; exception_keeper_value_35 = exception_value; exception_keeper_tb_35 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_19 = frame_function->f_lineno; Py_XDECREF( tmp_and_5__value_1.object ); tmp_and_5__value_1.object = NULL; frame_function->f_lineno = tmp_tried_lineno_19; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_35 != NULL ) { exception_type = exception_keeper_type_35; exception_value = exception_keeper_value_35; exception_tb = exception_keeper_tb_35; goto try_finally_handler_30; } goto finally_end_35; finally_end_35:; if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1422; goto try_finally_handler_30; } goto loop_start_8; loop_end_8:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_30:; exception_keeper_type_36 = exception_type; exception_keeper_value_36 = exception_value; exception_keeper_tb_36 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_20 = frame_function->f_lineno; Py_XDECREF( tmp_for_loop_7__iter_value.object ); tmp_for_loop_7__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_7__for_iterator.object ); tmp_for_loop_7__for_iterator.object = NULL; frame_function->f_lineno = tmp_tried_lineno_20; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_36 != NULL ) { exception_type = exception_keeper_type_36; exception_value = exception_keeper_value_36; exception_tb = exception_keeper_tb_36; goto frame_exception_exit_1; } goto finally_end_36; finally_end_36:; // Tried code tmp_cond_value_20 = NULL; // Tried code tmp_subscr_target_52 = var_rd.object; if ( tmp_subscr_target_52 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1432; goto try_finally_handler_38; } tmp_subscr_subscript_52 = const_str_plain_keyformat; tmp_assign_source_73 = LOOKUP_SUBSCRIPT( tmp_subscr_target_52, tmp_subscr_subscript_52 ); if ( tmp_assign_source_73 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1432; goto try_finally_handler_38; } assert( tmp_or_4__value_1.object == NULL ); tmp_or_4__value_1.object = tmp_assign_source_73; tmp_cond_value_21 = tmp_or_4__value_1.object; tmp_cond_truth_21 = CHECK_IF_TRUE( tmp_cond_value_21 ); if ( tmp_cond_truth_21 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1432; goto try_finally_handler_38; } if (tmp_cond_truth_21 == 1) { goto condexpr_true_9; } else { goto condexpr_false_9; } condexpr_true_9:; tmp_cond_value_20 = tmp_or_4__value_1.object; Py_INCREF( tmp_cond_value_20 ); goto condexpr_end_9; condexpr_false_9:; tmp_cond_value_20 = NULL; // Tried code tmp_result = tmp_or_4__value_1.object != NULL; if ( tmp_result == true ) { Py_DECREF( tmp_or_4__value_1.object ); tmp_or_4__value_1.object = NULL; } assert( tmp_result != false ); tmp_subscr_target_53 = var_rd.object; if ( tmp_subscr_target_53 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1432; goto try_finally_handler_39; } tmp_subscr_subscript_53 = const_str_plain_xaformat; tmp_cond_value_20 = LOOKUP_SUBSCRIPT( tmp_subscr_target_53, tmp_subscr_subscript_53 ); if ( tmp_cond_value_20 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1432; goto try_finally_handler_39; } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_39:; exception_keeper_type_37 = exception_type; exception_keeper_value_37 = exception_value; exception_keeper_tb_37 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_37 != NULL ) { exception_type = exception_keeper_type_37; exception_value = exception_keeper_value_37; exception_tb = exception_keeper_tb_37; goto try_finally_handler_38; } goto finally_end_37; finally_end_37:; condexpr_end_9:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_38:; exception_keeper_type_38 = exception_type; exception_keeper_value_38 = exception_value; exception_keeper_tb_38 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_38 != NULL ) { exception_type = exception_keeper_type_38; exception_value = exception_keeper_value_38; exception_tb = exception_keeper_tb_38; goto try_finally_handler_37; } goto finally_end_38; finally_end_38:; tmp_cond_truth_20 = CHECK_IF_TRUE( tmp_cond_value_20 ); if ( tmp_cond_truth_20 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_cond_value_20 ); frame_function->f_lineno = 1432; goto try_finally_handler_37; } Py_DECREF( tmp_cond_value_20 ); if (tmp_cond_truth_20 == 1) { goto branch_yes_22; } else { goto branch_no_22; } branch_yes_22:; tmp_subscr_target_54 = var_rd.object; if ( tmp_subscr_target_54 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1433; goto try_finally_handler_37; } tmp_subscr_subscript_54 = const_str_plain_argformat; tmp_assign_source_74 = LOOKUP_SUBSCRIPT( tmp_subscr_target_54, tmp_subscr_subscript_54 ); if ( tmp_assign_source_74 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1433; goto try_finally_handler_37; } assert( var_argformat.object == NULL ); var_argformat.object = tmp_assign_source_74; tmp_isinstance_inst_6 = var_argformat.object; tmp_isinstance_cls_6 = LOOKUP_BUILTIN( const_str_plain_list ); if ( tmp_isinstance_cls_6 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1434; goto try_finally_handler_37; } tmp_res = Nuitka_IsInstance( tmp_isinstance_inst_6, tmp_isinstance_cls_6 ); if ( tmp_res == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1434; goto try_finally_handler_37; } if (tmp_res == 1) { goto branch_yes_23; } else { goto branch_no_23; } branch_yes_23:; tmp_source_name_7 = var_argformat.object; tmp_called_43 = LOOKUP_ATTRIBUTE( tmp_source_name_7, const_str_plain_append ); if ( tmp_called_43 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1435; goto try_finally_handler_37; } tmp_call_arg_element_63 = const_str_chr_124; frame_function->f_lineno = 1435; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_43, tmp_call_arg_element_63 ); Py_DECREF( tmp_called_43 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1435; goto try_finally_handler_37; } Py_DECREF( tmp_unused ); goto branch_end_23; branch_no_23:; tmp_isinstance_inst_7 = var_argformat.object; tmp_isinstance_cls_7 = LOOKUP_BUILTIN( const_str_plain_str ); if ( tmp_isinstance_cls_7 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1437; goto try_finally_handler_37; } tmp_res = Nuitka_IsInstance( tmp_isinstance_inst_7, tmp_isinstance_cls_7 ); if ( tmp_res == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1437; goto try_finally_handler_37; } if (tmp_res == 1) { goto branch_no_24; } else { goto branch_yes_24; } branch_yes_24:; tmp_raise_type_1 = PyExc_AssertionError; tmp_raise_value_1 = PyTuple_New( 1 ); tmp_unary_arg_3 = PyTuple_New( 2 ); tmp_tuple_element_3 = var_argformat.object; Py_INCREF( tmp_tuple_element_3 ); PyTuple_SET_ITEM( tmp_unary_arg_3, 0, tmp_tuple_element_3 ); tmp_type_arg_1 = var_argformat.object; tmp_tuple_element_3 = BUILTIN_TYPE1( tmp_type_arg_1 ); if ( tmp_tuple_element_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_raise_value_1 ); Py_DECREF( tmp_unary_arg_3 ); frame_function->f_lineno = 1437; goto try_finally_handler_37; } PyTuple_SET_ITEM( tmp_unary_arg_3, 1, tmp_tuple_element_3 ); tmp_tuple_element_2 = UNARY_OPERATION( PyObject_Repr, tmp_unary_arg_3 ); Py_DECREF( tmp_unary_arg_3 ); if ( tmp_tuple_element_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_raise_value_1 ); frame_function->f_lineno = 1437; goto try_finally_handler_37; } PyTuple_SET_ITEM( tmp_raise_value_1, 0, tmp_tuple_element_2 ); exception_type = INCREASE_REFCOUNT( tmp_raise_type_1 ); exception_value = tmp_raise_value_1; frame_function->f_lineno = 1437; RAISE_EXCEPTION_WITH_VALUE( &exception_type, &exception_value, &exception_tb ); goto try_finally_handler_37; branch_no_24:; tmp_assign_source_75 = var_rd.object; if ( tmp_assign_source_75 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1438; goto try_finally_handler_37; } assert( tmp_inplace_assign_1__inplace_target.object == NULL ); tmp_inplace_assign_1__inplace_target.object = INCREASE_REFCOUNT( tmp_assign_source_75 ); // Tried code tmp_assign_source_76 = const_str_plain_argformat; assert( tmp_inplace_assign_1__inplace_subscript.object == NULL ); tmp_inplace_assign_1__inplace_subscript.object = INCREASE_REFCOUNT( tmp_assign_source_76 ); tmp_subscr_target_55 = tmp_inplace_assign_1__inplace_target.object; tmp_subscr_subscript_55 = tmp_inplace_assign_1__inplace_subscript.object; tmp_binop_left_18 = LOOKUP_SUBSCRIPT( tmp_subscr_target_55, tmp_subscr_subscript_55 ); if ( tmp_binop_left_18 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1438; goto try_finally_handler_40; } tmp_binop_right_18 = const_str_chr_124; tmp_ass_subvalue_19 = BINARY_OPERATION( PyNumber_InPlaceAdd, tmp_binop_left_18, tmp_binop_right_18 ); Py_DECREF( tmp_binop_left_18 ); if ( tmp_ass_subvalue_19 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1438; goto try_finally_handler_40; } tmp_ass_subscribed_19 = tmp_inplace_assign_1__inplace_target.object; tmp_ass_subscript_19 = tmp_inplace_assign_1__inplace_subscript.object; tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_19, tmp_ass_subscript_19, tmp_ass_subvalue_19 ); Py_DECREF( tmp_ass_subvalue_19 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1438; goto try_finally_handler_40; } // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_40:; exception_keeper_type_39 = exception_type; exception_keeper_value_39 = exception_value; exception_keeper_tb_39 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_21 = frame_function->f_lineno; tmp_result = tmp_inplace_assign_1__inplace_target.object != NULL; if ( tmp_result == true ) { Py_DECREF( tmp_inplace_assign_1__inplace_target.object ); tmp_inplace_assign_1__inplace_target.object = NULL; } assert( tmp_result != false ); Py_XDECREF( tmp_inplace_assign_1__inplace_subscript.object ); tmp_inplace_assign_1__inplace_subscript.object = NULL; frame_function->f_lineno = tmp_tried_lineno_21; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_39 != NULL ) { exception_type = exception_keeper_type_39; exception_value = exception_keeper_value_39; exception_tb = exception_keeper_tb_39; goto try_finally_handler_37; } goto finally_end_39; finally_end_39:; branch_end_23:; branch_no_22:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_37:; exception_keeper_type_40 = exception_type; exception_keeper_value_40 = exception_value; exception_keeper_tb_40 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_22 = frame_function->f_lineno; Py_XDECREF( tmp_or_4__value_1.object ); tmp_or_4__value_1.object = NULL; frame_function->f_lineno = tmp_tried_lineno_22; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_40 != NULL ) { exception_type = exception_keeper_type_40; exception_value = exception_keeper_value_40; exception_tb = exception_keeper_tb_40; goto frame_exception_exit_1; } goto finally_end_40; finally_end_40:; tmp_called_44 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_applyrules ); if (unlikely( tmp_called_44 == NULL )) { tmp_called_44 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_applyrules ); } if ( tmp_called_44 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 127020 ], 39, 0 ); exception_tb = NULL; frame_function->f_lineno = 1440; goto frame_exception_exit_1; } tmp_call_arg_element_64 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_routine_rules ); if (unlikely( tmp_call_arg_element_64 == NULL )) { tmp_call_arg_element_64 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_routine_rules ); } if ( tmp_call_arg_element_64 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 152583 ], 42, 0 ); exception_tb = NULL; frame_function->f_lineno = 1440; goto frame_exception_exit_1; } tmp_call_arg_element_65 = var_rd.object; if ( tmp_call_arg_element_65 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126972 ], 48, 0 ); exception_tb = NULL; frame_function->f_lineno = 1440; goto frame_exception_exit_1; } frame_function->f_lineno = 1440; tmp_assign_source_77 = CALL_FUNCTION_WITH_ARGS2( tmp_called_44, tmp_call_arg_element_64, tmp_call_arg_element_65 ); if ( tmp_assign_source_77 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1440; goto frame_exception_exit_1; } if (var_ar.object == NULL) { var_ar.object = tmp_assign_source_77; } else { PyObject *old = var_ar.object; var_ar.object = tmp_assign_source_77; Py_DECREF( old ); } tmp_called_45 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_called_45 == NULL )) { tmp_called_45 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_called_45 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150156 ], 44, 0 ); exception_tb = NULL; frame_function->f_lineno = 1441; goto frame_exception_exit_1; } tmp_call_arg_element_66 = par_rout.object; if ( tmp_call_arg_element_66 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124776 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1441; goto frame_exception_exit_1; } frame_function->f_lineno = 1441; tmp_cond_value_22 = CALL_FUNCTION_WITH_ARGS1( tmp_called_45, tmp_call_arg_element_66 ); if ( tmp_cond_value_22 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1441; goto frame_exception_exit_1; } tmp_cond_truth_22 = CHECK_IF_TRUE( tmp_cond_value_22 ); if ( tmp_cond_truth_22 == -1 ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_cond_value_22 ); frame_function->f_lineno = 1441; goto frame_exception_exit_1; } Py_DECREF( tmp_cond_value_22 ); if (tmp_cond_truth_22 == 1) { goto branch_yes_25; } else { goto branch_no_25; } branch_yes_25:; tmp_called_46 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_outmess ); if (unlikely( tmp_called_46 == NULL )) { tmp_called_46 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_outmess ); } if ( tmp_called_46 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125154 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1442; goto frame_exception_exit_1; } tmp_binop_left_19 = const_str_digest_48cabf7d0b3bbfc91057f28eb23a1560; tmp_subscr_target_56 = var_ar.object; tmp_subscr_subscript_56 = const_str_plain_docshort; tmp_binop_right_19 = LOOKUP_SUBSCRIPT( tmp_subscr_target_56, tmp_subscr_subscript_56 ); if ( tmp_binop_right_19 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1442; goto frame_exception_exit_1; } tmp_call_arg_element_67 = BINARY_OPERATION_REMAINDER( tmp_binop_left_19, tmp_binop_right_19 ); Py_DECREF( tmp_binop_right_19 ); if ( tmp_call_arg_element_67 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1442; goto frame_exception_exit_1; } frame_function->f_lineno = 1442; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_46, tmp_call_arg_element_67 ); Py_DECREF( tmp_call_arg_element_67 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1442; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); goto branch_end_25; branch_no_25:; tmp_called_47 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_outmess ); if (unlikely( tmp_called_47 == NULL )) { tmp_called_47 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_outmess ); } if ( tmp_called_47 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125154 ], 36, 0 ); exception_tb = NULL; frame_function->f_lineno = 1444; goto frame_exception_exit_1; } tmp_binop_left_20 = const_str_digest_a8afce941e7743fb1211294527053568; tmp_subscr_target_57 = var_ar.object; tmp_subscr_subscript_57 = const_str_plain_docshort; tmp_binop_right_20 = LOOKUP_SUBSCRIPT( tmp_subscr_target_57, tmp_subscr_subscript_57 ); if ( tmp_binop_right_20 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1444; goto frame_exception_exit_1; } tmp_call_arg_element_68 = BINARY_OPERATION_REMAINDER( tmp_binop_left_20, tmp_binop_right_20 ); Py_DECREF( tmp_binop_right_20 ); if ( tmp_call_arg_element_68 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1444; goto frame_exception_exit_1; } frame_function->f_lineno = 1444; tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_47, tmp_call_arg_element_68 ); Py_DECREF( tmp_call_arg_element_68 ); if ( tmp_unused == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_function->f_lineno = 1444; goto frame_exception_exit_1; } Py_DECREF( tmp_unused ); branch_end_25:; tmp_return_value = PyTuple_New( 2 ); tmp_tuple_element_4 = var_ar.object; Py_INCREF( tmp_tuple_element_4 ); PyTuple_SET_ITEM( tmp_return_value, 0, tmp_tuple_element_4 ); tmp_tuple_element_4 = var_wrap.object; if ( tmp_tuple_element_4 == NULL ) { Py_DECREF( tmp_return_value ); exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError ); exception_value = UNSTREAM_STRING( &constant_bin[ 63093 ], 50, 0 ); exception_tb = NULL; frame_function->f_lineno = 1445; goto frame_exception_exit_1; } Py_INCREF( tmp_tuple_element_4 ); PyTuple_SET_ITEM( tmp_return_value, 1, tmp_tuple_element_4 ); goto frame_return_exit_1; #if 0 RESTORE_FRAME_EXCEPTION( frame_function ); #endif // Put the previous frame back on top. popFrameStack(); #if PYTHON_VERSION >= 340 frame_function->f_executing -= 1; #endif Py_DECREF( frame_function ); goto frame_no_exception_1; frame_return_exit_1:; #if 0 RESTORE_FRAME_EXCEPTION( frame_function ); #endif popFrameStack(); #if PYTHON_VERSION >= 340 frame_function->f_executing -= 1; #endif Py_DECREF( frame_function ); goto function_return_exit; frame_exception_exit_1:; #if 0 RESTORE_FRAME_EXCEPTION( frame_function ); #endif if ( exception_tb == NULL ) { exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) ); } else if ( exception_tb->tb_frame != frame_function ) { PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) ); traceback_new->tb_next = exception_tb; exception_tb = traceback_new; } tmp_frame_locals = PyDict_New(); if ((var_wrap.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_wrap, var_wrap.object ); } if ((var_args.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_args, var_args.object ); } if ((var_depargs.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_depargs, var_depargs.object ); } if ((var_var.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_var, var_var.object ); } if ((var_a.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_a, var_a.object ); } if ((var_auxvars.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_auxvars, var_auxvars.object ); } if ((var_vrd.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_vrd, var_vrd.object ); } if ((var_rd.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_rd, var_rd.object ); } if ((var_r.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_r, var_r.object ); } if ((var_ar.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_ar, var_ar.object ); } if ((var_nth.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_nth, var_nth.object ); } if ((var_nthk.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_nthk, var_nthk.object ); } if ((var_savevrd.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_savevrd, var_savevrd.object ); } if ((var__rules.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain__rules, var__rules.object ); } if ((var_c.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_c, var_c.object ); } if ((var_optargs.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_optargs, var_optargs.object ); } if ((var_cfs.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_cfs, var_cfs.object ); } if ((var_k.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_k, var_k.object ); } if ((var_argformat.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_argformat, var_argformat.object ); } if ((par_rout.object != NULL)) { PyDict_SetItem( tmp_frame_locals, const_str_plain_rout, par_rout.object ); } detachFrame( exception_tb, tmp_frame_locals ); popFrameStack(); #if PYTHON_VERSION >= 340 frame_function->f_executing -= 1; #endif Py_DECREF( frame_function ); // Return the error. goto function_exception_exit; frame_no_exception_1:; // Return statement must be present. assert(false); function_exception_exit: assert( exception_type ); PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb ); return NULL; function_return_exit: return tmp_return_value; } static PyObject *fparse_function_2_buildapi_of_module_numpy$f2py$rules( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw ) { assert( kw == NULL || PyDict_Check( kw ) ); NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0; NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0; NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0; Py_ssize_t args_given = args_size; PyObject *_python_par_rout = NULL; // Copy given dictionary values to the the respective variables: if ( kw_size > 0 ) { Py_ssize_t ppos = 0; PyObject *key, *value; while( PyDict_Next( kw, &ppos, &key, &value ) ) { #if PYTHON_VERSION < 300 if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) )) #else if (unlikely( !PyUnicode_Check( key ) )) #endif { PyErr_Format( PyExc_TypeError, "buildapi() keywords must be strings" ); goto error_exit; } NUITKA_MAY_BE_UNUSED bool found = false; Py_INCREF( key ); Py_INCREF( value ); // Quick path, could be our value. if ( found == false && const_str_plain_rout == key ) { assert( _python_par_rout == NULL ); _python_par_rout = value; found = true; kw_found += 1; } // Slow path, compare against all parameter names. if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_rout, key ) == 1 ) { assert( _python_par_rout == NULL ); _python_par_rout = value; found = true; kw_found += 1; } Py_DECREF( key ); if ( found == false ) { Py_DECREF( value ); PyErr_Format( PyExc_TypeError, "buildapi() got an unexpected keyword argument '%s'", Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>" ); goto error_exit; } } #if PYTHON_VERSION < 300 assert( kw_found == kw_size ); assert( kw_only_found == 0 ); #endif } // Check if too many arguments were given in case of non star args if (unlikely( args_given > 1 )) { #if PYTHON_VERSION < 270 ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size ); #elif PYTHON_VERSION < 330 ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found ); #else ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found ); #endif goto error_exit; } // Copy normal parameter values given as part of the args list to the respective variables: if (likely( 0 < args_given )) { if (unlikely( _python_par_rout != NULL )) { ERROR_MULTIPLE_VALUES( self, 0 ); goto error_exit; } _python_par_rout = INCREASE_REFCOUNT( args[ 0 ] ); } else if ( _python_par_rout == NULL ) { if ( 0 + self->m_defaults_given >= 1 ) { _python_par_rout = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 1 ) ); } #if PYTHON_VERSION < 330 else { #if PYTHON_VERSION < 270 ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found ); #elif PYTHON_VERSION < 300 ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found ); #else ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found ); #endif goto error_exit; } #endif } #if PYTHON_VERSION >= 330 if (unlikely( _python_par_rout == NULL )) { PyObject *values[] = { _python_par_rout }; ERROR_TOO_FEW_ARGUMENTS( self, values ); goto error_exit; } #endif return impl_function_2_buildapi_of_module_numpy$f2py$rules( self, _python_par_rout ); error_exit:; Py_XDECREF( _python_par_rout ); return NULL; } static PyObject *dparse_function_2_buildapi_of_module_numpy$f2py$rules( Nuitka_FunctionObject *self, PyObject **args, int size ) { if ( size == 1 ) { return impl_function_2_buildapi_of_module_numpy$f2py$rules( self, INCREASE_REFCOUNT( args[ 0 ] ) ); } else { PyObject *result = fparse_function_2_buildapi_of_module_numpy$f2py$rules( self, args, size, NULL ); return result; } } static PyObject *MAKE_FUNCTION_function_1_buildmodule_of_module_numpy$f2py$rules( ) { PyObject *result = Nuitka_Function_New( fparse_function_1_buildmodule_of_module_numpy$f2py$rules, dparse_function_1_buildmodule_of_module_numpy$f2py$rules, const_str_plain_buildmodule, #if PYTHON_VERSION >= 330 NULL, #endif codeobj_3d391909584bb301ebdd977cdb6f6f76, NULL, #if PYTHON_VERSION >= 300 NULL, const_dict_empty, #endif module_numpy$f2py$rules, const_str_digest_d86091769b46541c28720c4a54cd7147 ); return result; } static PyObject *MAKE_FUNCTION_function_2_buildapi_of_module_numpy$f2py$rules( ) { PyObject *result = Nuitka_Function_New( fparse_function_2_buildapi_of_module_numpy$f2py$rules, dparse_function_2_buildapi_of_module_numpy$f2py$rules, const_str_plain_buildapi, #if PYTHON_VERSION >= 330 NULL, #endif codeobj_55f4764ba2936614f48431287cbfb287, NULL, #if PYTHON_VERSION >= 300 NULL, const_dict_empty, #endif module_numpy$f2py$rules, Py_None ); return result; } #if PYTHON_VERSION >= 300 static struct PyModuleDef mdef_numpy$f2py$rules = { PyModuleDef_HEAD_INIT, "numpy.f2py.rules", /* m_name */ NULL, /* m_doc */ -1, /* m_size */ NULL, /* m_methods */ NULL, /* m_reload */ NULL, /* m_traverse */ NULL, /* m_clear */ NULL, /* m_free */ }; #endif #define _MODULE_UNFREEZER 0 #if _MODULE_UNFREEZER #include "nuitka/unfreezing.hpp" // Table for lookup to find "frozen" modules or DLLs, i.e. the ones included in // or along this binary. static struct Nuitka_MetaPathBasedLoaderEntry meta_path_loader_entries[] = { { NULL, NULL, 0 } }; #endif // The exported interface to CPython. On import of the module, this function // gets called. It has to have an exact function name, in cases it's a shared // library export. This is hidden behind the MOD_INIT_DECL. MOD_INIT_DECL( numpy$f2py$rules ) { #if defined(_NUITKA_EXE) || PYTHON_VERSION >= 300 static bool _init_done = false; // Packages can be imported recursively in deep executables. if ( _init_done ) { return MOD_RETURN_VALUE( module_numpy$f2py$rules ); } else { _init_done = true; } #endif #ifdef _NUITKA_MODULE // In case of a stand alone extension module, need to call initialization // the init here because that's the first and only time we are going to get // called here. // Initialize the constant values used. _initBuiltinModule(); _initConstants(); // Initialize the compiled types of Nuitka. PyType_Ready( &Nuitka_Generator_Type ); PyType_Ready( &Nuitka_Function_Type ); PyType_Ready( &Nuitka_Method_Type ); PyType_Ready( &Nuitka_Frame_Type ); #if PYTHON_VERSION < 300 initSlotCompare(); #endif patchBuiltinModule(); patchTypeComparison(); #endif #if _MODULE_UNFREEZER registerMetaPathBasedUnfreezer( meta_path_loader_entries ); #endif _initModuleConstants(); _initModuleCodeObjects(); // puts( "in initnumpy$f2py$rules" ); // Create the module object first. There are no methods initially, all are // added dynamically in actual code only. Also no "__doc__" is initially // set at this time, as it could not contain NUL characters this way, they // are instead set in early module code. No "self" for modules, we have no // use for it. #if PYTHON_VERSION < 300 module_numpy$f2py$rules = Py_InitModule4( "numpy.f2py.rules", // Module Name NULL, // No methods initially, all are added // dynamically in actual module code only. NULL, // No __doc__ is initially set, as it could // not contain NUL this way, added early in // actual code. NULL, // No self for modules, we don't use it. PYTHON_API_VERSION ); #else module_numpy$f2py$rules = PyModule_Create( &mdef_numpy$f2py$rules ); #endif moduledict_numpy$f2py$rules = (PyDictObject *)((PyModuleObject *)module_numpy$f2py$rules)->md_dict; assertObject( module_numpy$f2py$rules ); // Seems to work for Python2.7 out of the box, but for Python3, the module // doesn't automatically enter "sys.modules", so do it manually. #if PYTHON_VERSION >= 300 { int r = PyObject_SetItem( PySys_GetObject( (char *)"modules" ), const_str_digest_80eb8b2a20911481e3962616e7e0d2fc, module_numpy$f2py$rules ); assert( r != -1 ); } #endif // For deep importing of a module we need to have "__builtins__", so we set // it ourselves in the same way than CPython does. Note: This must be done // before the frame object is allocated, or else it may fail. PyObject *module_dict = PyModule_GetDict( module_numpy$f2py$rules ); if ( PyDict_GetItem( module_dict, const_str_plain___builtins__ ) == NULL ) { PyObject *value = (PyObject *)builtin_module; // Check if main module, not a dict then. #if !defined(_NUITKA_EXE) || !0 value = PyModule_GetDict( value ); #endif #ifndef __NUITKA_NO_ASSERT__ int res = #endif PyDict_SetItem( module_dict, const_str_plain___builtins__, value ); assert( res == 0 ); } #if PYTHON_VERSION >= 330 #if _MODULE_UNFREEZER PyDict_SetItem( module_dict, const_str_plain___loader__, metapath_based_loader ); #else PyDict_SetItem( module_dict, const_str_plain___loader__, Py_None ); #endif #endif // Temp variables if any PyObjectTempVariable tmp_for_loop_1__for_iterator; PyObjectTempVariable tmp_for_loop_1__iter_value; PyObject *exception_type, *exception_value; PyTracebackObject *exception_tb; PyObject *exception_keeper_type_1; PyObject *exception_keeper_value_1; PyTracebackObject *exception_keeper_tb_1; PyObject *tmp_ass_subscribed_1; PyObject *tmp_ass_subscript_1; PyObject *tmp_ass_subvalue_1; PyObject *tmp_assign_source_1; PyObject *tmp_assign_source_2; PyObject *tmp_assign_source_3; PyObject *tmp_assign_source_4; PyObject *tmp_assign_source_5; PyObject *tmp_assign_source_6; PyObject *tmp_assign_source_7; PyObject *tmp_assign_source_8; PyObject *tmp_assign_source_9; PyObject *tmp_assign_source_10; PyObject *tmp_assign_source_11; PyObject *tmp_assign_source_12; PyObject *tmp_assign_source_13; PyObject *tmp_assign_source_14; PyObject *tmp_assign_source_15; PyObject *tmp_assign_source_16; PyObject *tmp_assign_source_17; PyObject *tmp_assign_source_18; PyObject *tmp_assign_source_19; PyObject *tmp_assign_source_20; PyObject *tmp_assign_source_21; PyObject *tmp_assign_source_22; PyObject *tmp_assign_source_23; PyObject *tmp_assign_source_24; PyObject *tmp_assign_source_25; PyObject *tmp_assign_source_26; PyObject *tmp_assign_source_27; PyObject *tmp_assign_source_28; PyObject *tmp_assign_source_29; PyObject *tmp_assign_source_30; PyObject *tmp_assign_source_31; PyObject *tmp_assign_source_32; PyObject *tmp_assign_source_33; PyObject *tmp_assign_source_34; PyObject *tmp_assign_source_35; PyObject *tmp_assign_source_36; PyObject *tmp_assign_source_37; PyObject *tmp_binop_left_1; PyObject *tmp_binop_left_2; PyObject *tmp_binop_left_3; PyObject *tmp_binop_left_4; PyObject *tmp_binop_left_5; PyObject *tmp_binop_left_6; PyObject *tmp_binop_left_7; PyObject *tmp_binop_left_8; PyObject *tmp_binop_left_9; PyObject *tmp_binop_left_10; PyObject *tmp_binop_left_11; PyObject *tmp_binop_left_12; PyObject *tmp_binop_left_13; PyObject *tmp_binop_left_14; PyObject *tmp_binop_left_15; PyObject *tmp_binop_left_16; PyObject *tmp_binop_left_17; PyObject *tmp_binop_left_18; PyObject *tmp_binop_left_19; PyObject *tmp_binop_left_20; PyObject *tmp_binop_left_21; PyObject *tmp_binop_left_22; PyObject *tmp_binop_left_23; PyObject *tmp_binop_left_24; PyObject *tmp_binop_left_25; PyObject *tmp_binop_left_26; PyObject *tmp_binop_left_27; PyObject *tmp_binop_left_28; PyObject *tmp_binop_left_29; PyObject *tmp_binop_left_30; PyObject *tmp_binop_left_31; PyObject *tmp_binop_left_32; PyObject *tmp_binop_left_33; PyObject *tmp_binop_left_34; PyObject *tmp_binop_left_35; PyObject *tmp_binop_right_1; PyObject *tmp_binop_right_2; PyObject *tmp_binop_right_3; PyObject *tmp_binop_right_4; PyObject *tmp_binop_right_5; PyObject *tmp_binop_right_6; PyObject *tmp_binop_right_7; PyObject *tmp_binop_right_8; PyObject *tmp_binop_right_9; PyObject *tmp_binop_right_10; PyObject *tmp_binop_right_11; PyObject *tmp_binop_right_12; PyObject *tmp_binop_right_13; PyObject *tmp_binop_right_14; PyObject *tmp_binop_right_15; PyObject *tmp_binop_right_16; PyObject *tmp_binop_right_17; PyObject *tmp_binop_right_18; PyObject *tmp_binop_right_19; PyObject *tmp_binop_right_20; PyObject *tmp_binop_right_21; PyObject *tmp_binop_right_22; PyObject *tmp_binop_right_23; PyObject *tmp_binop_right_24; PyObject *tmp_binop_right_25; PyObject *tmp_binop_right_26; PyObject *tmp_binop_right_27; PyObject *tmp_binop_right_28; PyObject *tmp_binop_right_29; PyObject *tmp_binop_right_30; PyObject *tmp_binop_right_31; PyObject *tmp_binop_right_32; PyObject *tmp_binop_right_33; PyObject *tmp_binop_right_34; PyObject *tmp_binop_right_35; PyObject *tmp_call_arg_element_1; PyObject *tmp_call_arg_element_2; PyObject *tmp_call_arg_element_3; PyObject *tmp_call_arg_element_4; PyObject *tmp_call_arg_element_5; PyObject *tmp_call_arg_element_6; PyObject *tmp_call_arg_element_7; PyObject *tmp_call_arg_element_8; PyObject *tmp_call_arg_element_9; PyObject *tmp_call_arg_element_10; PyObject *tmp_call_arg_element_11; PyObject *tmp_call_arg_element_12; PyObject *tmp_call_arg_element_13; PyObject *tmp_call_arg_element_14; PyObject *tmp_call_arg_element_15; PyObject *tmp_call_arg_element_16; PyObject *tmp_call_arg_element_17; PyObject *tmp_call_arg_element_18; PyObject *tmp_call_arg_element_19; PyObject *tmp_call_arg_element_20; PyObject *tmp_call_arg_element_21; PyObject *tmp_call_arg_element_22; PyObject *tmp_call_arg_element_23; PyObject *tmp_call_arg_element_24; PyObject *tmp_call_arg_element_25; PyObject *tmp_call_arg_element_26; PyObject *tmp_call_arg_element_27; PyObject *tmp_call_arg_element_28; PyObject *tmp_call_arg_element_29; PyObject *tmp_call_arg_element_30; PyObject *tmp_call_arg_element_31; PyObject *tmp_call_arg_element_32; PyObject *tmp_call_arg_element_33; PyObject *tmp_call_arg_element_34; PyObject *tmp_call_arg_element_35; PyObject *tmp_call_arg_element_36; PyObject *tmp_call_arg_element_37; PyObject *tmp_call_arg_element_38; PyObject *tmp_call_arg_element_39; PyObject *tmp_call_arg_element_40; PyObject *tmp_call_arg_element_41; PyObject *tmp_call_arg_element_42; PyObject *tmp_call_arg_element_43; PyObject *tmp_call_arg_element_44; PyObject *tmp_call_arg_element_45; PyObject *tmp_call_arg_element_46; PyObject *tmp_call_arg_element_47; PyObject *tmp_call_arg_element_48; PyObject *tmp_call_arg_element_49; PyObject *tmp_call_arg_element_50; PyObject *tmp_call_arg_element_51; PyObject *tmp_call_arg_element_52; PyObject *tmp_call_arg_element_53; PyObject *tmp_call_arg_element_54; PyObject *tmp_call_arg_element_55; PyObject *tmp_call_arg_element_56; PyObject *tmp_call_arg_element_57; PyObject *tmp_call_arg_element_58; PyObject *tmp_call_arg_element_59; PyObject *tmp_call_arg_element_60; PyObject *tmp_call_arg_element_61; PyObject *tmp_call_arg_element_62; PyObject *tmp_call_arg_element_63; PyObject *tmp_call_arg_element_64; PyObject *tmp_call_arg_element_65; PyObject *tmp_call_arg_element_66; PyObject *tmp_call_arg_element_67; PyObject *tmp_call_arg_element_68; PyObject *tmp_call_arg_element_69; PyObject *tmp_call_arg_element_70; PyObject *tmp_call_arg_element_71; PyObject *tmp_call_arg_element_72; PyObject *tmp_call_arg_element_73; PyObject *tmp_call_arg_element_74; PyObject *tmp_call_arg_element_75; PyObject *tmp_call_arg_element_76; PyObject *tmp_call_arg_element_77; PyObject *tmp_call_arg_element_78; PyObject *tmp_call_arg_element_79; PyObject *tmp_call_arg_element_80; PyObject *tmp_call_arg_element_81; PyObject *tmp_call_arg_element_82; PyObject *tmp_call_arg_element_83; PyObject *tmp_call_arg_element_84; PyObject *tmp_call_arg_element_85; PyObject *tmp_call_arg_element_86; PyObject *tmp_call_arg_element_87; PyObject *tmp_call_arg_element_88; PyObject *tmp_call_arg_element_89; PyObject *tmp_call_arg_element_90; PyObject *tmp_call_arg_element_91; PyObject *tmp_call_arg_element_92; PyObject *tmp_call_arg_element_93; PyObject *tmp_call_arg_element_94; PyObject *tmp_call_arg_element_95; PyObject *tmp_call_arg_element_96; PyObject *tmp_call_arg_element_97; PyObject *tmp_call_arg_element_98; PyObject *tmp_call_arg_element_99; PyObject *tmp_call_arg_element_100; PyObject *tmp_call_arg_element_101; PyObject *tmp_call_arg_element_102; PyObject *tmp_call_arg_element_103; PyObject *tmp_call_arg_element_104; PyObject *tmp_call_arg_element_105; PyObject *tmp_call_arg_element_106; PyObject *tmp_call_arg_element_107; PyObject *tmp_call_arg_element_108; PyObject *tmp_call_arg_element_109; PyObject *tmp_call_arg_element_110; PyObject *tmp_call_arg_element_111; PyObject *tmp_call_arg_element_112; PyObject *tmp_call_arg_element_113; PyObject *tmp_call_arg_element_114; PyObject *tmp_call_arg_element_115; PyObject *tmp_call_arg_element_116; PyObject *tmp_call_arg_element_117; PyObject *tmp_call_arg_element_118; PyObject *tmp_call_arg_element_119; PyObject *tmp_call_arg_element_120; PyObject *tmp_call_arg_element_121; PyObject *tmp_call_arg_element_122; PyObject *tmp_call_arg_element_123; PyObject *tmp_call_arg_element_124; PyObject *tmp_call_arg_element_125; PyObject *tmp_call_arg_element_126; PyObject *tmp_call_arg_element_127; PyObject *tmp_call_arg_element_128; PyObject *tmp_call_arg_element_129; PyObject *tmp_call_arg_element_130; PyObject *tmp_call_arg_element_131; PyObject *tmp_call_arg_element_132; PyObject *tmp_call_arg_element_133; PyObject *tmp_call_arg_element_134; PyObject *tmp_call_arg_element_135; PyObject *tmp_call_arg_element_136; PyObject *tmp_call_arg_element_137; PyObject *tmp_call_arg_element_138; PyObject *tmp_call_arg_element_139; PyObject *tmp_call_arg_element_140; PyObject *tmp_call_arg_element_141; PyObject *tmp_call_arg_element_142; PyObject *tmp_call_arg_element_143; PyObject *tmp_call_arg_element_144; PyObject *tmp_call_arg_element_145; PyObject *tmp_call_arg_element_146; PyObject *tmp_call_arg_element_147; PyObject *tmp_call_arg_element_148; PyObject *tmp_call_arg_element_149; PyObject *tmp_call_arg_element_150; PyObject *tmp_call_arg_element_151; PyObject *tmp_call_arg_element_152; PyObject *tmp_call_arg_element_153; PyObject *tmp_call_arg_element_154; PyObject *tmp_call_arg_element_155; PyObject *tmp_call_arg_element_156; PyObject *tmp_call_arg_element_157; PyObject *tmp_call_arg_element_158; PyObject *tmp_call_arg_element_159; PyObject *tmp_call_arg_element_160; PyObject *tmp_call_arg_element_161; PyObject *tmp_call_arg_element_162; PyObject *tmp_call_arg_element_163; PyObject *tmp_call_arg_element_164; PyObject *tmp_call_arg_element_165; PyObject *tmp_call_arg_element_166; PyObject *tmp_call_arg_element_167; PyObject *tmp_call_arg_element_168; PyObject *tmp_call_arg_element_169; PyObject *tmp_call_arg_element_170; PyObject *tmp_call_arg_element_171; PyObject *tmp_call_arg_element_172; PyObject *tmp_call_arg_element_173; PyObject *tmp_call_arg_element_174; PyObject *tmp_call_arg_element_175; PyObject *tmp_call_arg_element_176; PyObject *tmp_call_arg_element_177; PyObject *tmp_call_arg_element_178; PyObject *tmp_call_arg_element_179; PyObject *tmp_call_arg_element_180; PyObject *tmp_call_arg_element_181; PyObject *tmp_call_arg_element_182; PyObject *tmp_call_arg_element_183; PyObject *tmp_call_arg_element_184; PyObject *tmp_call_arg_element_185; PyObject *tmp_call_arg_element_186; PyObject *tmp_call_arg_element_187; PyObject *tmp_call_arg_element_188; PyObject *tmp_call_arg_element_189; PyObject *tmp_call_arg_element_190; PyObject *tmp_call_arg_element_191; PyObject *tmp_call_arg_element_192; PyObject *tmp_call_arg_element_193; PyObject *tmp_call_arg_element_194; PyObject *tmp_call_arg_element_195; PyObject *tmp_call_arg_element_196; PyObject *tmp_call_arg_element_197; PyObject *tmp_call_arg_element_198; PyObject *tmp_call_arg_element_199; PyObject *tmp_call_arg_element_200; PyObject *tmp_call_arg_element_201; PyObject *tmp_call_arg_element_202; PyObject *tmp_call_arg_element_203; PyObject *tmp_call_arg_element_204; PyObject *tmp_call_arg_element_205; PyObject *tmp_call_arg_element_206; PyObject *tmp_call_arg_element_207; PyObject *tmp_call_arg_element_208; PyObject *tmp_call_arg_element_209; PyObject *tmp_call_arg_element_210; PyObject *tmp_call_arg_element_211; PyObject *tmp_call_arg_element_212; PyObject *tmp_call_arg_element_213; PyObject *tmp_call_arg_element_214; PyObject *tmp_call_arg_element_215; PyObject *tmp_call_arg_element_216; PyObject *tmp_call_arg_element_217; PyObject *tmp_call_arg_element_218; PyObject *tmp_call_arg_element_219; PyObject *tmp_call_arg_element_220; PyObject *tmp_call_arg_element_221; PyObject *tmp_call_arg_element_222; PyObject *tmp_call_arg_element_223; PyObject *tmp_call_arg_element_224; PyObject *tmp_call_arg_element_225; PyObject *tmp_call_arg_element_226; PyObject *tmp_call_arg_element_227; PyObject *tmp_call_arg_element_228; PyObject *tmp_call_arg_element_229; PyObject *tmp_call_arg_element_230; PyObject *tmp_call_arg_element_231; PyObject *tmp_call_arg_element_232; PyObject *tmp_call_arg_element_233; PyObject *tmp_call_arg_element_234; PyObject *tmp_call_arg_element_235; PyObject *tmp_call_arg_element_236; PyObject *tmp_call_arg_element_237; PyObject *tmp_call_arg_element_238; PyObject *tmp_call_arg_element_239; PyObject *tmp_call_arg_element_240; PyObject *tmp_call_arg_element_241; PyObject *tmp_call_arg_element_242; PyObject *tmp_call_arg_element_243; PyObject *tmp_call_arg_element_244; PyObject *tmp_call_arg_element_245; PyObject *tmp_call_arg_element_246; PyObject *tmp_call_arg_element_247; PyObject *tmp_call_arg_element_248; PyObject *tmp_called_1; PyObject *tmp_called_2; PyObject *tmp_called_3; PyObject *tmp_called_4; PyObject *tmp_called_5; PyObject *tmp_called_6; PyObject *tmp_called_7; PyObject *tmp_called_8; PyObject *tmp_called_9; PyObject *tmp_called_10; PyObject *tmp_called_11; PyObject *tmp_called_12; PyObject *tmp_called_13; PyObject *tmp_called_14; PyObject *tmp_called_15; PyObject *tmp_called_16; PyObject *tmp_called_17; PyObject *tmp_called_18; PyObject *tmp_called_19; PyObject *tmp_called_20; PyObject *tmp_called_21; PyObject *tmp_called_22; PyObject *tmp_called_23; PyObject *tmp_called_24; PyObject *tmp_called_25; PyObject *tmp_called_26; PyObject *tmp_called_27; PyObject *tmp_called_28; PyObject *tmp_called_29; PyObject *tmp_called_30; PyObject *tmp_called_31; PyObject *tmp_called_32; PyObject *tmp_called_33; PyObject *tmp_called_34; PyObject *tmp_called_35; PyObject *tmp_called_36; PyObject *tmp_called_37; PyObject *tmp_called_38; PyObject *tmp_called_39; PyObject *tmp_called_40; PyObject *tmp_called_41; PyObject *tmp_called_42; PyObject *tmp_called_43; PyObject *tmp_called_44; PyObject *tmp_called_45; PyObject *tmp_called_46; PyObject *tmp_called_47; PyObject *tmp_called_48; PyObject *tmp_called_49; PyObject *tmp_called_50; PyObject *tmp_called_51; PyObject *tmp_called_52; PyObject *tmp_called_53; PyObject *tmp_called_54; PyObject *tmp_called_55; PyObject *tmp_called_56; PyObject *tmp_called_57; PyObject *tmp_called_58; PyObject *tmp_called_59; PyObject *tmp_called_60; PyObject *tmp_called_61; PyObject *tmp_called_62; PyObject *tmp_called_63; PyObject *tmp_called_64; PyObject *tmp_called_65; PyObject *tmp_called_66; PyObject *tmp_called_67; PyObject *tmp_called_68; PyObject *tmp_called_69; PyObject *tmp_called_70; PyObject *tmp_called_71; PyObject *tmp_called_72; PyObject *tmp_called_73; PyObject *tmp_called_74; PyObject *tmp_called_75; PyObject *tmp_called_76; PyObject *tmp_called_77; PyObject *tmp_called_78; PyObject *tmp_called_79; PyObject *tmp_called_80; PyObject *tmp_called_81; PyObject *tmp_called_82; PyObject *tmp_called_83; PyObject *tmp_called_84; PyObject *tmp_called_85; PyObject *tmp_called_86; PyObject *tmp_called_87; PyObject *tmp_called_88; PyObject *tmp_called_89; PyObject *tmp_called_90; PyObject *tmp_called_91; PyObject *tmp_called_92; PyObject *tmp_called_93; PyObject *tmp_called_94; PyObject *tmp_called_95; PyObject *tmp_called_96; PyObject *tmp_called_97; PyObject *tmp_called_98; PyObject *tmp_called_99; PyObject *tmp_called_100; PyObject *tmp_called_101; PyObject *tmp_called_102; PyObject *tmp_called_103; PyObject *tmp_called_104; PyObject *tmp_called_105; PyObject *tmp_called_106; PyObject *tmp_called_107; PyObject *tmp_called_108; PyObject *tmp_called_109; PyObject *tmp_called_110; PyObject *tmp_called_111; PyObject *tmp_called_112; PyObject *tmp_called_113; PyObject *tmp_called_114; PyObject *tmp_called_115; PyObject *tmp_called_116; PyObject *tmp_called_117; PyObject *tmp_called_118; PyObject *tmp_called_119; PyObject *tmp_called_120; PyObject *tmp_called_121; PyObject *tmp_called_122; PyObject *tmp_called_123; PyObject *tmp_called_124; PyObject *tmp_called_125; PyObject *tmp_called_126; PyObject *tmp_called_127; PyObject *tmp_called_128; PyObject *tmp_called_129; PyObject *tmp_called_130; PyObject *tmp_called_131; PyObject *tmp_called_132; PyObject *tmp_called_133; PyObject *tmp_called_134; PyObject *tmp_called_135; PyObject *tmp_called_136; PyObject *tmp_called_137; PyObject *tmp_called_138; PyObject *tmp_called_139; PyObject *tmp_called_140; PyObject *tmp_called_141; PyObject *tmp_called_142; PyObject *tmp_called_143; PyObject *tmp_called_144; PyObject *tmp_called_145; PyObject *tmp_called_146; PyObject *tmp_called_147; PyObject *tmp_called_148; PyObject *tmp_called_149; PyObject *tmp_called_150; PyObject *tmp_called_151; PyObject *tmp_called_152; PyObject *tmp_called_153; PyObject *tmp_called_154; PyObject *tmp_called_155; PyObject *tmp_called_156; PyObject *tmp_called_157; PyObject *tmp_called_158; PyObject *tmp_called_159; PyObject *tmp_called_160; PyObject *tmp_called_161; PyObject *tmp_called_162; PyObject *tmp_called_163; PyObject *tmp_called_164; PyObject *tmp_dict_key_1; PyObject *tmp_dict_key_2; PyObject *tmp_dict_key_3; PyObject *tmp_dict_key_4; PyObject *tmp_dict_key_5; PyObject *tmp_dict_key_6; PyObject *tmp_dict_key_7; PyObject *tmp_dict_key_8; PyObject *tmp_dict_key_9; PyObject *tmp_dict_key_10; PyObject *tmp_dict_key_11; PyObject *tmp_dict_key_12; PyObject *tmp_dict_key_13; PyObject *tmp_dict_key_14; PyObject *tmp_dict_key_15; PyObject *tmp_dict_key_16; PyObject *tmp_dict_key_17; PyObject *tmp_dict_key_18; PyObject *tmp_dict_key_19; PyObject *tmp_dict_key_20; PyObject *tmp_dict_key_21; PyObject *tmp_dict_key_22; PyObject *tmp_dict_key_23; PyObject *tmp_dict_key_24; PyObject *tmp_dict_key_25; PyObject *tmp_dict_key_26; PyObject *tmp_dict_key_27; PyObject *tmp_dict_key_28; PyObject *tmp_dict_key_29; PyObject *tmp_dict_key_30; PyObject *tmp_dict_key_31; PyObject *tmp_dict_key_32; PyObject *tmp_dict_key_33; PyObject *tmp_dict_key_34; PyObject *tmp_dict_key_35; PyObject *tmp_dict_key_36; PyObject *tmp_dict_key_37; PyObject *tmp_dict_key_38; PyObject *tmp_dict_key_39; PyObject *tmp_dict_key_40; PyObject *tmp_dict_key_41; PyObject *tmp_dict_key_42; PyObject *tmp_dict_key_43; PyObject *tmp_dict_key_44; PyObject *tmp_dict_key_45; PyObject *tmp_dict_key_46; PyObject *tmp_dict_key_47; PyObject *tmp_dict_key_48; PyObject *tmp_dict_key_49; PyObject *tmp_dict_key_50; PyObject *tmp_dict_key_51; PyObject *tmp_dict_key_52; PyObject *tmp_dict_key_53; PyObject *tmp_dict_key_54; PyObject *tmp_dict_key_55; PyObject *tmp_dict_key_56; PyObject *tmp_dict_key_57; PyObject *tmp_dict_key_58; PyObject *tmp_dict_key_59; PyObject *tmp_dict_key_60; PyObject *tmp_dict_key_61; PyObject *tmp_dict_key_62; PyObject *tmp_dict_key_63; PyObject *tmp_dict_key_64; PyObject *tmp_dict_key_65; PyObject *tmp_dict_key_66; PyObject *tmp_dict_key_67; PyObject *tmp_dict_key_68; PyObject *tmp_dict_key_69; PyObject *tmp_dict_key_70; PyObject *tmp_dict_key_71; PyObject *tmp_dict_key_72; PyObject *tmp_dict_key_73; PyObject *tmp_dict_key_74; PyObject *tmp_dict_key_75; PyObject *tmp_dict_key_76; PyObject *tmp_dict_key_77; PyObject *tmp_dict_key_78; PyObject *tmp_dict_key_79; PyObject *tmp_dict_key_80; PyObject *tmp_dict_key_81; PyObject *tmp_dict_key_82; PyObject *tmp_dict_key_83; PyObject *tmp_dict_key_84; PyObject *tmp_dict_key_85; PyObject *tmp_dict_key_86; PyObject *tmp_dict_key_87; PyObject *tmp_dict_key_88; PyObject *tmp_dict_key_89; PyObject *tmp_dict_key_90; PyObject *tmp_dict_key_91; PyObject *tmp_dict_key_92; PyObject *tmp_dict_key_93; PyObject *tmp_dict_key_94; PyObject *tmp_dict_key_95; PyObject *tmp_dict_key_96; PyObject *tmp_dict_key_97; PyObject *tmp_dict_key_98; PyObject *tmp_dict_key_99; PyObject *tmp_dict_key_100; PyObject *tmp_dict_key_101; PyObject *tmp_dict_key_102; PyObject *tmp_dict_key_103; PyObject *tmp_dict_key_104; PyObject *tmp_dict_key_105; PyObject *tmp_dict_key_106; PyObject *tmp_dict_key_107; PyObject *tmp_dict_key_108; PyObject *tmp_dict_key_109; PyObject *tmp_dict_key_110; PyObject *tmp_dict_key_111; PyObject *tmp_dict_key_112; PyObject *tmp_dict_key_113; PyObject *tmp_dict_key_114; PyObject *tmp_dict_key_115; PyObject *tmp_dict_key_116; PyObject *tmp_dict_key_117; PyObject *tmp_dict_key_118; PyObject *tmp_dict_key_119; PyObject *tmp_dict_key_120; PyObject *tmp_dict_key_121; PyObject *tmp_dict_key_122; PyObject *tmp_dict_key_123; PyObject *tmp_dict_key_124; PyObject *tmp_dict_key_125; PyObject *tmp_dict_key_126; PyObject *tmp_dict_key_127; PyObject *tmp_dict_key_128; PyObject *tmp_dict_key_129; PyObject *tmp_dict_key_130; PyObject *tmp_dict_key_131; PyObject *tmp_dict_key_132; PyObject *tmp_dict_key_133; PyObject *tmp_dict_key_134; PyObject *tmp_dict_key_135; PyObject *tmp_dict_key_136; PyObject *tmp_dict_key_137; PyObject *tmp_dict_key_138; PyObject *tmp_dict_key_139; PyObject *tmp_dict_key_140; PyObject *tmp_dict_key_141; PyObject *tmp_dict_key_142; PyObject *tmp_dict_key_143; PyObject *tmp_dict_key_144; PyObject *tmp_dict_key_145; PyObject *tmp_dict_key_146; PyObject *tmp_dict_key_147; PyObject *tmp_dict_key_148; PyObject *tmp_dict_key_149; PyObject *tmp_dict_key_150; PyObject *tmp_dict_key_151; PyObject *tmp_dict_key_152; PyObject *tmp_dict_key_153; PyObject *tmp_dict_key_154; PyObject *tmp_dict_key_155; PyObject *tmp_dict_key_156; PyObject *tmp_dict_key_157; PyObject *tmp_dict_key_158; PyObject *tmp_dict_key_159; PyObject *tmp_dict_key_160; PyObject *tmp_dict_key_161; PyObject *tmp_dict_key_162; PyObject *tmp_dict_key_163; PyObject *tmp_dict_key_164; PyObject *tmp_dict_key_165; PyObject *tmp_dict_key_166; PyObject *tmp_dict_key_167; PyObject *tmp_dict_key_168; PyObject *tmp_dict_key_169; PyObject *tmp_dict_key_170; PyObject *tmp_dict_key_171; PyObject *tmp_dict_key_172; PyObject *tmp_dict_key_173; PyObject *tmp_dict_key_174; PyObject *tmp_dict_key_175; PyObject *tmp_dict_key_176; PyObject *tmp_dict_key_177; PyObject *tmp_dict_key_178; PyObject *tmp_dict_key_179; PyObject *tmp_dict_key_180; PyObject *tmp_dict_key_181; PyObject *tmp_dict_key_182; PyObject *tmp_dict_key_183; PyObject *tmp_dict_key_184; PyObject *tmp_dict_key_185; PyObject *tmp_dict_key_186; PyObject *tmp_dict_key_187; PyObject *tmp_dict_key_188; PyObject *tmp_dict_key_189; PyObject *tmp_dict_key_190; PyObject *tmp_dict_key_191; PyObject *tmp_dict_key_192; PyObject *tmp_dict_key_193; PyObject *tmp_dict_key_194; PyObject *tmp_dict_key_195; PyObject *tmp_dict_key_196; PyObject *tmp_dict_key_197; PyObject *tmp_dict_key_198; PyObject *tmp_dict_key_199; PyObject *tmp_dict_key_200; PyObject *tmp_dict_key_201; PyObject *tmp_dict_key_202; PyObject *tmp_dict_key_203; PyObject *tmp_dict_key_204; PyObject *tmp_dict_key_205; PyObject *tmp_dict_key_206; PyObject *tmp_dict_key_207; PyObject *tmp_dict_key_208; PyObject *tmp_dict_key_209; PyObject *tmp_dict_key_210; PyObject *tmp_dict_key_211; PyObject *tmp_dict_key_212; PyObject *tmp_dict_key_213; PyObject *tmp_dict_key_214; PyObject *tmp_dict_key_215; PyObject *tmp_dict_key_216; PyObject *tmp_dict_key_217; PyObject *tmp_dict_key_218; PyObject *tmp_dict_key_219; PyObject *tmp_dict_key_220; PyObject *tmp_dict_key_221; PyObject *tmp_dict_key_222; PyObject *tmp_dict_key_223; PyObject *tmp_dict_key_224; PyObject *tmp_dict_key_225; PyObject *tmp_dict_key_226; PyObject *tmp_dict_key_227; PyObject *tmp_dict_key_228; PyObject *tmp_dict_key_229; PyObject *tmp_dict_key_230; PyObject *tmp_dict_key_231; PyObject *tmp_dict_key_232; PyObject *tmp_dict_key_233; PyObject *tmp_dict_key_234; PyObject *tmp_dict_key_235; PyObject *tmp_dict_key_236; PyObject *tmp_dict_key_237; PyObject *tmp_dict_key_238; PyObject *tmp_dict_key_239; PyObject *tmp_dict_key_240; PyObject *tmp_dict_key_241; PyObject *tmp_dict_key_242; PyObject *tmp_dict_key_243; PyObject *tmp_dict_key_244; PyObject *tmp_dict_key_245; PyObject *tmp_dict_key_246; PyObject *tmp_dict_key_247; PyObject *tmp_dict_key_248; PyObject *tmp_dict_key_249; PyObject *tmp_dict_key_250; PyObject *tmp_dict_key_251; PyObject *tmp_dict_key_252; PyObject *tmp_dict_key_253; PyObject *tmp_dict_key_254; PyObject *tmp_dict_key_255; PyObject *tmp_dict_key_256; PyObject *tmp_dict_key_257; PyObject *tmp_dict_key_258; PyObject *tmp_dict_key_259; PyObject *tmp_dict_key_260; PyObject *tmp_dict_key_261; PyObject *tmp_dict_key_262; PyObject *tmp_dict_key_263; PyObject *tmp_dict_key_264; PyObject *tmp_dict_key_265; PyObject *tmp_dict_key_266; PyObject *tmp_dict_key_267; PyObject *tmp_dict_key_268; PyObject *tmp_dict_key_269; PyObject *tmp_dict_key_270; PyObject *tmp_dict_key_271; PyObject *tmp_dict_key_272; PyObject *tmp_dict_key_273; PyObject *tmp_dict_key_274; PyObject *tmp_dict_key_275; PyObject *tmp_dict_key_276; PyObject *tmp_dict_key_277; PyObject *tmp_dict_key_278; PyObject *tmp_dict_key_279; PyObject *tmp_dict_key_280; PyObject *tmp_dict_key_281; PyObject *tmp_dict_key_282; PyObject *tmp_dict_key_283; PyObject *tmp_dict_key_284; PyObject *tmp_dict_key_285; PyObject *tmp_dict_key_286; PyObject *tmp_dict_key_287; PyObject *tmp_dict_key_288; PyObject *tmp_dict_key_289; PyObject *tmp_dict_key_290; PyObject *tmp_dict_key_291; PyObject *tmp_dict_key_292; PyObject *tmp_dict_key_293; PyObject *tmp_dict_key_294; PyObject *tmp_dict_key_295; PyObject *tmp_dict_key_296; PyObject *tmp_dict_key_297; PyObject *tmp_dict_key_298; PyObject *tmp_dict_key_299; PyObject *tmp_dict_key_300; PyObject *tmp_dict_key_301; PyObject *tmp_dict_key_302; PyObject *tmp_dict_key_303; PyObject *tmp_dict_key_304; PyObject *tmp_dict_key_305; PyObject *tmp_dict_key_306; PyObject *tmp_dict_key_307; PyObject *tmp_dict_key_308; PyObject *tmp_dict_key_309; PyObject *tmp_dict_key_310; PyObject *tmp_dict_key_311; PyObject *tmp_dict_key_312; PyObject *tmp_dict_key_313; PyObject *tmp_dict_key_314; PyObject *tmp_dict_key_315; PyObject *tmp_dict_key_316; PyObject *tmp_dict_key_317; PyObject *tmp_dict_key_318; PyObject *tmp_dict_key_319; PyObject *tmp_dict_key_320; PyObject *tmp_dict_key_321; PyObject *tmp_dict_key_322; PyObject *tmp_dict_key_323; PyObject *tmp_dict_key_324; PyObject *tmp_dict_key_325; PyObject *tmp_dict_key_326; PyObject *tmp_dict_key_327; PyObject *tmp_dict_key_328; PyObject *tmp_dict_key_329; PyObject *tmp_dict_key_330; PyObject *tmp_dict_key_331; PyObject *tmp_dict_key_332; PyObject *tmp_dict_key_333; PyObject *tmp_dict_key_334; PyObject *tmp_dict_key_335; PyObject *tmp_dict_key_336; PyObject *tmp_dict_key_337; PyObject *tmp_dict_key_338; PyObject *tmp_dict_key_339; PyObject *tmp_dict_key_340; PyObject *tmp_dict_key_341; PyObject *tmp_dict_key_342; PyObject *tmp_dict_key_343; PyObject *tmp_dict_key_344; PyObject *tmp_dict_key_345; PyObject *tmp_dict_key_346; PyObject *tmp_dict_key_347; PyObject *tmp_dict_key_348; PyObject *tmp_dict_key_349; PyObject *tmp_dict_key_350; PyObject *tmp_dict_key_351; PyObject *tmp_dict_key_352; PyObject *tmp_dict_key_353; PyObject *tmp_dict_key_354; PyObject *tmp_dict_key_355; PyObject *tmp_dict_key_356; PyObject *tmp_dict_key_357; PyObject *tmp_dict_key_358; PyObject *tmp_dict_key_359; PyObject *tmp_dict_key_360; PyObject *tmp_dict_key_361; PyObject *tmp_dict_key_362; PyObject *tmp_dict_key_363; PyObject *tmp_dict_key_364; PyObject *tmp_dict_key_365; PyObject *tmp_dict_key_366; PyObject *tmp_dict_key_367; PyObject *tmp_dict_key_368; PyObject *tmp_dict_key_369; PyObject *tmp_dict_key_370; PyObject *tmp_dict_key_371; PyObject *tmp_dict_key_372; PyObject *tmp_dict_key_373; PyObject *tmp_dict_key_374; PyObject *tmp_dict_key_375; PyObject *tmp_dict_key_376; PyObject *tmp_dict_key_377; PyObject *tmp_dict_key_378; PyObject *tmp_dict_key_379; PyObject *tmp_dict_key_380; PyObject *tmp_dict_key_381; PyObject *tmp_dict_key_382; PyObject *tmp_dict_key_383; PyObject *tmp_dict_key_384; PyObject *tmp_dict_key_385; PyObject *tmp_dict_key_386; PyObject *tmp_dict_key_387; PyObject *tmp_dict_key_388; PyObject *tmp_dict_key_389; PyObject *tmp_dict_key_390; PyObject *tmp_dict_key_391; PyObject *tmp_dict_key_392; PyObject *tmp_dict_key_393; PyObject *tmp_dict_key_394; PyObject *tmp_dict_key_395; PyObject *tmp_dict_key_396; PyObject *tmp_dict_key_397; PyObject *tmp_dict_key_398; PyObject *tmp_dict_key_399; PyObject *tmp_dict_key_400; PyObject *tmp_dict_key_401; PyObject *tmp_dict_key_402; PyObject *tmp_dict_key_403; PyObject *tmp_dict_key_404; PyObject *tmp_dict_key_405; PyObject *tmp_dict_key_406; PyObject *tmp_dict_key_407; PyObject *tmp_dict_key_408; PyObject *tmp_dict_key_409; PyObject *tmp_dict_key_410; PyObject *tmp_dict_key_411; PyObject *tmp_dict_key_412; PyObject *tmp_dict_key_413; PyObject *tmp_dict_key_414; PyObject *tmp_dict_key_415; PyObject *tmp_dict_key_416; PyObject *tmp_dict_key_417; PyObject *tmp_dict_key_418; PyObject *tmp_dict_key_419; PyObject *tmp_dict_key_420; PyObject *tmp_dict_key_421; PyObject *tmp_dict_key_422; PyObject *tmp_dict_key_423; PyObject *tmp_dict_key_424; PyObject *tmp_dict_key_425; PyObject *tmp_dict_key_426; PyObject *tmp_dict_key_427; PyObject *tmp_dict_key_428; PyObject *tmp_dict_key_429; PyObject *tmp_dict_key_430; PyObject *tmp_dict_key_431; PyObject *tmp_dict_key_432; PyObject *tmp_dict_key_433; PyObject *tmp_dict_key_434; PyObject *tmp_dict_key_435; PyObject *tmp_dict_key_436; PyObject *tmp_dict_key_437; PyObject *tmp_dict_key_438; PyObject *tmp_dict_key_439; PyObject *tmp_dict_key_440; PyObject *tmp_dict_key_441; PyObject *tmp_dict_key_442; PyObject *tmp_dict_key_443; PyObject *tmp_dict_key_444; PyObject *tmp_dict_key_445; PyObject *tmp_dict_key_446; PyObject *tmp_dict_key_447; PyObject *tmp_dict_key_448; PyObject *tmp_dict_key_449; PyObject *tmp_dict_key_450; PyObject *tmp_dict_key_451; PyObject *tmp_dict_key_452; PyObject *tmp_dict_key_453; PyObject *tmp_dict_key_454; PyObject *tmp_dict_key_455; PyObject *tmp_dict_key_456; PyObject *tmp_dict_key_457; PyObject *tmp_dict_key_458; PyObject *tmp_dict_key_459; PyObject *tmp_dict_key_460; PyObject *tmp_dict_key_461; PyObject *tmp_dict_key_462; PyObject *tmp_dict_key_463; PyObject *tmp_dict_key_464; PyObject *tmp_dict_key_465; PyObject *tmp_dict_key_466; PyObject *tmp_dict_key_467; PyObject *tmp_dict_key_468; PyObject *tmp_dict_key_469; PyObject *tmp_dict_key_470; PyObject *tmp_dict_key_471; PyObject *tmp_dict_key_472; PyObject *tmp_dict_key_473; PyObject *tmp_dict_key_474; PyObject *tmp_dict_key_475; PyObject *tmp_dict_key_476; PyObject *tmp_dict_key_477; PyObject *tmp_dict_key_478; PyObject *tmp_dict_key_479; PyObject *tmp_dict_key_480; PyObject *tmp_dict_key_481; PyObject *tmp_dict_key_482; PyObject *tmp_dict_key_483; PyObject *tmp_dict_key_484; PyObject *tmp_dict_key_485; PyObject *tmp_dict_key_486; PyObject *tmp_dict_key_487; PyObject *tmp_dict_key_488; PyObject *tmp_dict_key_489; PyObject *tmp_dict_key_490; PyObject *tmp_dict_key_491; PyObject *tmp_dict_key_492; PyObject *tmp_dict_key_493; PyObject *tmp_dict_key_494; PyObject *tmp_dict_key_495; PyObject *tmp_dict_key_496; PyObject *tmp_dict_key_497; PyObject *tmp_dict_key_498; PyObject *tmp_dict_key_499; PyObject *tmp_dict_key_500; PyObject *tmp_dict_key_501; PyObject *tmp_dict_key_502; PyObject *tmp_dict_key_503; PyObject *tmp_dict_key_504; PyObject *tmp_dict_key_505; PyObject *tmp_dict_key_506; PyObject *tmp_dict_key_507; PyObject *tmp_dict_key_508; PyObject *tmp_dict_key_509; PyObject *tmp_dict_key_510; PyObject *tmp_dict_key_511; PyObject *tmp_dict_key_512; PyObject *tmp_dict_key_513; PyObject *tmp_dict_key_514; PyObject *tmp_dict_key_515; PyObject *tmp_dict_key_516; PyObject *tmp_dict_key_517; PyObject *tmp_dict_key_518; PyObject *tmp_dict_key_519; PyObject *tmp_dict_key_520; PyObject *tmp_dict_key_521; PyObject *tmp_dict_key_522; PyObject *tmp_dict_key_523; PyObject *tmp_dict_key_524; PyObject *tmp_dict_key_525; PyObject *tmp_dict_key_526; PyObject *tmp_dict_key_527; PyObject *tmp_dict_key_528; PyObject *tmp_dict_key_529; PyObject *tmp_dict_key_530; PyObject *tmp_dict_key_531; PyObject *tmp_dict_key_532; PyObject *tmp_dict_key_533; PyObject *tmp_dict_key_534; PyObject *tmp_dict_key_535; PyObject *tmp_dict_key_536; PyObject *tmp_dict_key_537; PyObject *tmp_dict_key_538; PyObject *tmp_dict_key_539; PyObject *tmp_dict_key_540; PyObject *tmp_dict_key_541; PyObject *tmp_dict_key_542; PyObject *tmp_dict_key_543; PyObject *tmp_dict_key_544; PyObject *tmp_dict_key_545; PyObject *tmp_dict_key_546; PyObject *tmp_dict_key_547; PyObject *tmp_dict_key_548; PyObject *tmp_dict_key_549; PyObject *tmp_dict_key_550; PyObject *tmp_dict_key_551; PyObject *tmp_dict_key_552; PyObject *tmp_dict_key_553; PyObject *tmp_dict_key_554; PyObject *tmp_dict_key_555; PyObject *tmp_dict_key_556; PyObject *tmp_dict_key_557; PyObject *tmp_dict_key_558; PyObject *tmp_dict_key_559; PyObject *tmp_dict_key_560; PyObject *tmp_dict_key_561; PyObject *tmp_dict_key_562; PyObject *tmp_dict_key_563; PyObject *tmp_dict_key_564; PyObject *tmp_dict_key_565; PyObject *tmp_dict_key_566; PyObject *tmp_dict_key_567; PyObject *tmp_dict_key_568; PyObject *tmp_dict_key_569; PyObject *tmp_dict_value_1; PyObject *tmp_dict_value_2; PyObject *tmp_dict_value_3; PyObject *tmp_dict_value_4; PyObject *tmp_dict_value_5; PyObject *tmp_dict_value_6; PyObject *tmp_dict_value_7; PyObject *tmp_dict_value_8; PyObject *tmp_dict_value_9; PyObject *tmp_dict_value_10; PyObject *tmp_dict_value_11; PyObject *tmp_dict_value_12; PyObject *tmp_dict_value_13; PyObject *tmp_dict_value_14; PyObject *tmp_dict_value_15; PyObject *tmp_dict_value_16; PyObject *tmp_dict_value_17; PyObject *tmp_dict_value_18; PyObject *tmp_dict_value_19; PyObject *tmp_dict_value_20; PyObject *tmp_dict_value_21; PyObject *tmp_dict_value_22; PyObject *tmp_dict_value_23; PyObject *tmp_dict_value_24; PyObject *tmp_dict_value_25; PyObject *tmp_dict_value_26; PyObject *tmp_dict_value_27; PyObject *tmp_dict_value_28; PyObject *tmp_dict_value_29; PyObject *tmp_dict_value_30; PyObject *tmp_dict_value_31; PyObject *tmp_dict_value_32; PyObject *tmp_dict_value_33; PyObject *tmp_dict_value_34; PyObject *tmp_dict_value_35; PyObject *tmp_dict_value_36; PyObject *tmp_dict_value_37; PyObject *tmp_dict_value_38; PyObject *tmp_dict_value_39; PyObject *tmp_dict_value_40; PyObject *tmp_dict_value_41; PyObject *tmp_dict_value_42; PyObject *tmp_dict_value_43; PyObject *tmp_dict_value_44; PyObject *tmp_dict_value_45; PyObject *tmp_dict_value_46; PyObject *tmp_dict_value_47; PyObject *tmp_dict_value_48; PyObject *tmp_dict_value_49; PyObject *tmp_dict_value_50; PyObject *tmp_dict_value_51; PyObject *tmp_dict_value_52; PyObject *tmp_dict_value_53; PyObject *tmp_dict_value_54; PyObject *tmp_dict_value_55; PyObject *tmp_dict_value_56; PyObject *tmp_dict_value_57; PyObject *tmp_dict_value_58; PyObject *tmp_dict_value_59; PyObject *tmp_dict_value_60; PyObject *tmp_dict_value_61; PyObject *tmp_dict_value_62; PyObject *tmp_dict_value_63; PyObject *tmp_dict_value_64; PyObject *tmp_dict_value_65; PyObject *tmp_dict_value_66; PyObject *tmp_dict_value_67; PyObject *tmp_dict_value_68; PyObject *tmp_dict_value_69; PyObject *tmp_dict_value_70; PyObject *tmp_dict_value_71; PyObject *tmp_dict_value_72; PyObject *tmp_dict_value_73; PyObject *tmp_dict_value_74; PyObject *tmp_dict_value_75; PyObject *tmp_dict_value_76; PyObject *tmp_dict_value_77; PyObject *tmp_dict_value_78; PyObject *tmp_dict_value_79; PyObject *tmp_dict_value_80; PyObject *tmp_dict_value_81; PyObject *tmp_dict_value_82; PyObject *tmp_dict_value_83; PyObject *tmp_dict_value_84; PyObject *tmp_dict_value_85; PyObject *tmp_dict_value_86; PyObject *tmp_dict_value_87; PyObject *tmp_dict_value_88; PyObject *tmp_dict_value_89; PyObject *tmp_dict_value_90; PyObject *tmp_dict_value_91; PyObject *tmp_dict_value_92; PyObject *tmp_dict_value_93; PyObject *tmp_dict_value_94; PyObject *tmp_dict_value_95; PyObject *tmp_dict_value_96; PyObject *tmp_dict_value_97; PyObject *tmp_dict_value_98; PyObject *tmp_dict_value_99; PyObject *tmp_dict_value_100; PyObject *tmp_dict_value_101; PyObject *tmp_dict_value_102; PyObject *tmp_dict_value_103; PyObject *tmp_dict_value_104; PyObject *tmp_dict_value_105; PyObject *tmp_dict_value_106; PyObject *tmp_dict_value_107; PyObject *tmp_dict_value_108; PyObject *tmp_dict_value_109; PyObject *tmp_dict_value_110; PyObject *tmp_dict_value_111; PyObject *tmp_dict_value_112; PyObject *tmp_dict_value_113; PyObject *tmp_dict_value_114; PyObject *tmp_dict_value_115; PyObject *tmp_dict_value_116; PyObject *tmp_dict_value_117; PyObject *tmp_dict_value_118; PyObject *tmp_dict_value_119; PyObject *tmp_dict_value_120; PyObject *tmp_dict_value_121; PyObject *tmp_dict_value_122; PyObject *tmp_dict_value_123; PyObject *tmp_dict_value_124; PyObject *tmp_dict_value_125; PyObject *tmp_dict_value_126; PyObject *tmp_dict_value_127; PyObject *tmp_dict_value_128; PyObject *tmp_dict_value_129; PyObject *tmp_dict_value_130; PyObject *tmp_dict_value_131; PyObject *tmp_dict_value_132; PyObject *tmp_dict_value_133; PyObject *tmp_dict_value_134; PyObject *tmp_dict_value_135; PyObject *tmp_dict_value_136; PyObject *tmp_dict_value_137; PyObject *tmp_dict_value_138; PyObject *tmp_dict_value_139; PyObject *tmp_dict_value_140; PyObject *tmp_dict_value_141; PyObject *tmp_dict_value_142; PyObject *tmp_dict_value_143; PyObject *tmp_dict_value_144; PyObject *tmp_dict_value_145; PyObject *tmp_dict_value_146; PyObject *tmp_dict_value_147; PyObject *tmp_dict_value_148; PyObject *tmp_dict_value_149; PyObject *tmp_dict_value_150; PyObject *tmp_dict_value_151; PyObject *tmp_dict_value_152; PyObject *tmp_dict_value_153; PyObject *tmp_dict_value_154; PyObject *tmp_dict_value_155; PyObject *tmp_dict_value_156; PyObject *tmp_dict_value_157; PyObject *tmp_dict_value_158; PyObject *tmp_dict_value_159; PyObject *tmp_dict_value_160; PyObject *tmp_dict_value_161; PyObject *tmp_dict_value_162; PyObject *tmp_dict_value_163; PyObject *tmp_dict_value_164; PyObject *tmp_dict_value_165; PyObject *tmp_dict_value_166; PyObject *tmp_dict_value_167; PyObject *tmp_dict_value_168; PyObject *tmp_dict_value_169; PyObject *tmp_dict_value_170; PyObject *tmp_dict_value_171; PyObject *tmp_dict_value_172; PyObject *tmp_dict_value_173; PyObject *tmp_dict_value_174; PyObject *tmp_dict_value_175; PyObject *tmp_dict_value_176; PyObject *tmp_dict_value_177; PyObject *tmp_dict_value_178; PyObject *tmp_dict_value_179; PyObject *tmp_dict_value_180; PyObject *tmp_dict_value_181; PyObject *tmp_dict_value_182; PyObject *tmp_dict_value_183; PyObject *tmp_dict_value_184; PyObject *tmp_dict_value_185; PyObject *tmp_dict_value_186; PyObject *tmp_dict_value_187; PyObject *tmp_dict_value_188; PyObject *tmp_dict_value_189; PyObject *tmp_dict_value_190; PyObject *tmp_dict_value_191; PyObject *tmp_dict_value_192; PyObject *tmp_dict_value_193; PyObject *tmp_dict_value_194; PyObject *tmp_dict_value_195; PyObject *tmp_dict_value_196; PyObject *tmp_dict_value_197; PyObject *tmp_dict_value_198; PyObject *tmp_dict_value_199; PyObject *tmp_dict_value_200; PyObject *tmp_dict_value_201; PyObject *tmp_dict_value_202; PyObject *tmp_dict_value_203; PyObject *tmp_dict_value_204; PyObject *tmp_dict_value_205; PyObject *tmp_dict_value_206; PyObject *tmp_dict_value_207; PyObject *tmp_dict_value_208; PyObject *tmp_dict_value_209; PyObject *tmp_dict_value_210; PyObject *tmp_dict_value_211; PyObject *tmp_dict_value_212; PyObject *tmp_dict_value_213; PyObject *tmp_dict_value_214; PyObject *tmp_dict_value_215; PyObject *tmp_dict_value_216; PyObject *tmp_dict_value_217; PyObject *tmp_dict_value_218; PyObject *tmp_dict_value_219; PyObject *tmp_dict_value_220; PyObject *tmp_dict_value_221; PyObject *tmp_dict_value_222; PyObject *tmp_dict_value_223; PyObject *tmp_dict_value_224; PyObject *tmp_dict_value_225; PyObject *tmp_dict_value_226; PyObject *tmp_dict_value_227; PyObject *tmp_dict_value_228; PyObject *tmp_dict_value_229; PyObject *tmp_dict_value_230; PyObject *tmp_dict_value_231; PyObject *tmp_dict_value_232; PyObject *tmp_dict_value_233; PyObject *tmp_dict_value_234; PyObject *tmp_dict_value_235; PyObject *tmp_dict_value_236; PyObject *tmp_dict_value_237; PyObject *tmp_dict_value_238; PyObject *tmp_dict_value_239; PyObject *tmp_dict_value_240; PyObject *tmp_dict_value_241; PyObject *tmp_dict_value_242; PyObject *tmp_dict_value_243; PyObject *tmp_dict_value_244; PyObject *tmp_dict_value_245; PyObject *tmp_dict_value_246; PyObject *tmp_dict_value_247; PyObject *tmp_dict_value_248; PyObject *tmp_dict_value_249; PyObject *tmp_dict_value_250; PyObject *tmp_dict_value_251; PyObject *tmp_dict_value_252; PyObject *tmp_dict_value_253; PyObject *tmp_dict_value_254; PyObject *tmp_dict_value_255; PyObject *tmp_dict_value_256; PyObject *tmp_dict_value_257; PyObject *tmp_dict_value_258; PyObject *tmp_dict_value_259; PyObject *tmp_dict_value_260; PyObject *tmp_dict_value_261; PyObject *tmp_dict_value_262; PyObject *tmp_dict_value_263; PyObject *tmp_dict_value_264; PyObject *tmp_dict_value_265; PyObject *tmp_dict_value_266; PyObject *tmp_dict_value_267; PyObject *tmp_dict_value_268; PyObject *tmp_dict_value_269; PyObject *tmp_dict_value_270; PyObject *tmp_dict_value_271; PyObject *tmp_dict_value_272; PyObject *tmp_dict_value_273; PyObject *tmp_dict_value_274; PyObject *tmp_dict_value_275; PyObject *tmp_dict_value_276; PyObject *tmp_dict_value_277; PyObject *tmp_dict_value_278; PyObject *tmp_dict_value_279; PyObject *tmp_dict_value_280; PyObject *tmp_dict_value_281; PyObject *tmp_dict_value_282; PyObject *tmp_dict_value_283; PyObject *tmp_dict_value_284; PyObject *tmp_dict_value_285; PyObject *tmp_dict_value_286; PyObject *tmp_dict_value_287; PyObject *tmp_dict_value_288; PyObject *tmp_dict_value_289; PyObject *tmp_dict_value_290; PyObject *tmp_dict_value_291; PyObject *tmp_dict_value_292; PyObject *tmp_dict_value_293; PyObject *tmp_dict_value_294; PyObject *tmp_dict_value_295; PyObject *tmp_dict_value_296; PyObject *tmp_dict_value_297; PyObject *tmp_dict_value_298; PyObject *tmp_dict_value_299; PyObject *tmp_dict_value_300; PyObject *tmp_dict_value_301; PyObject *tmp_dict_value_302; PyObject *tmp_dict_value_303; PyObject *tmp_dict_value_304; PyObject *tmp_dict_value_305; PyObject *tmp_dict_value_306; PyObject *tmp_dict_value_307; PyObject *tmp_dict_value_308; PyObject *tmp_dict_value_309; PyObject *tmp_dict_value_310; PyObject *tmp_dict_value_311; PyObject *tmp_dict_value_312; PyObject *tmp_dict_value_313; PyObject *tmp_dict_value_314; PyObject *tmp_dict_value_315; PyObject *tmp_dict_value_316; PyObject *tmp_dict_value_317; PyObject *tmp_dict_value_318; PyObject *tmp_dict_value_319; PyObject *tmp_dict_value_320; PyObject *tmp_dict_value_321; PyObject *tmp_dict_value_322; PyObject *tmp_dict_value_323; PyObject *tmp_dict_value_324; PyObject *tmp_dict_value_325; PyObject *tmp_dict_value_326; PyObject *tmp_dict_value_327; PyObject *tmp_dict_value_328; PyObject *tmp_dict_value_329; PyObject *tmp_dict_value_330; PyObject *tmp_dict_value_331; PyObject *tmp_dict_value_332; PyObject *tmp_dict_value_333; PyObject *tmp_dict_value_334; PyObject *tmp_dict_value_335; PyObject *tmp_dict_value_336; PyObject *tmp_dict_value_337; PyObject *tmp_dict_value_338; PyObject *tmp_dict_value_339; PyObject *tmp_dict_value_340; PyObject *tmp_dict_value_341; PyObject *tmp_dict_value_342; PyObject *tmp_dict_value_343; PyObject *tmp_dict_value_344; PyObject *tmp_dict_value_345; PyObject *tmp_dict_value_346; PyObject *tmp_dict_value_347; PyObject *tmp_dict_value_348; PyObject *tmp_dict_value_349; PyObject *tmp_dict_value_350; PyObject *tmp_dict_value_351; PyObject *tmp_dict_value_352; PyObject *tmp_dict_value_353; PyObject *tmp_dict_value_354; PyObject *tmp_dict_value_355; PyObject *tmp_dict_value_356; PyObject *tmp_dict_value_357; PyObject *tmp_dict_value_358; PyObject *tmp_dict_value_359; PyObject *tmp_dict_value_360; PyObject *tmp_dict_value_361; PyObject *tmp_dict_value_362; PyObject *tmp_dict_value_363; PyObject *tmp_dict_value_364; PyObject *tmp_dict_value_365; PyObject *tmp_dict_value_366; PyObject *tmp_dict_value_367; PyObject *tmp_dict_value_368; PyObject *tmp_dict_value_369; PyObject *tmp_dict_value_370; PyObject *tmp_dict_value_371; PyObject *tmp_dict_value_372; PyObject *tmp_dict_value_373; PyObject *tmp_dict_value_374; PyObject *tmp_dict_value_375; PyObject *tmp_dict_value_376; PyObject *tmp_dict_value_377; PyObject *tmp_dict_value_378; PyObject *tmp_dict_value_379; PyObject *tmp_dict_value_380; PyObject *tmp_dict_value_381; PyObject *tmp_dict_value_382; PyObject *tmp_dict_value_383; PyObject *tmp_dict_value_384; PyObject *tmp_dict_value_385; PyObject *tmp_dict_value_386; PyObject *tmp_dict_value_387; PyObject *tmp_dict_value_388; PyObject *tmp_dict_value_389; PyObject *tmp_dict_value_390; PyObject *tmp_dict_value_391; PyObject *tmp_dict_value_392; PyObject *tmp_dict_value_393; PyObject *tmp_dict_value_394; PyObject *tmp_dict_value_395; PyObject *tmp_dict_value_396; PyObject *tmp_dict_value_397; PyObject *tmp_dict_value_398; PyObject *tmp_dict_value_399; PyObject *tmp_dict_value_400; PyObject *tmp_dict_value_401; PyObject *tmp_dict_value_402; PyObject *tmp_dict_value_403; PyObject *tmp_dict_value_404; PyObject *tmp_dict_value_405; PyObject *tmp_dict_value_406; PyObject *tmp_dict_value_407; PyObject *tmp_dict_value_408; PyObject *tmp_dict_value_409; PyObject *tmp_dict_value_410; PyObject *tmp_dict_value_411; PyObject *tmp_dict_value_412; PyObject *tmp_dict_value_413; PyObject *tmp_dict_value_414; PyObject *tmp_dict_value_415; PyObject *tmp_dict_value_416; PyObject *tmp_dict_value_417; PyObject *tmp_dict_value_418; PyObject *tmp_dict_value_419; PyObject *tmp_dict_value_420; PyObject *tmp_dict_value_421; PyObject *tmp_dict_value_422; PyObject *tmp_dict_value_423; PyObject *tmp_dict_value_424; PyObject *tmp_dict_value_425; PyObject *tmp_dict_value_426; PyObject *tmp_dict_value_427; PyObject *tmp_dict_value_428; PyObject *tmp_dict_value_429; PyObject *tmp_dict_value_430; PyObject *tmp_dict_value_431; PyObject *tmp_dict_value_432; PyObject *tmp_dict_value_433; PyObject *tmp_dict_value_434; PyObject *tmp_dict_value_435; PyObject *tmp_dict_value_436; PyObject *tmp_dict_value_437; PyObject *tmp_dict_value_438; PyObject *tmp_dict_value_439; PyObject *tmp_dict_value_440; PyObject *tmp_dict_value_441; PyObject *tmp_dict_value_442; PyObject *tmp_dict_value_443; PyObject *tmp_dict_value_444; PyObject *tmp_dict_value_445; PyObject *tmp_dict_value_446; PyObject *tmp_dict_value_447; PyObject *tmp_dict_value_448; PyObject *tmp_dict_value_449; PyObject *tmp_dict_value_450; PyObject *tmp_dict_value_451; PyObject *tmp_dict_value_452; PyObject *tmp_dict_value_453; PyObject *tmp_dict_value_454; PyObject *tmp_dict_value_455; PyObject *tmp_dict_value_456; PyObject *tmp_dict_value_457; PyObject *tmp_dict_value_458; PyObject *tmp_dict_value_459; PyObject *tmp_dict_value_460; PyObject *tmp_dict_value_461; PyObject *tmp_dict_value_462; PyObject *tmp_dict_value_463; PyObject *tmp_dict_value_464; PyObject *tmp_dict_value_465; PyObject *tmp_dict_value_466; PyObject *tmp_dict_value_467; PyObject *tmp_dict_value_468; PyObject *tmp_dict_value_469; PyObject *tmp_dict_value_470; PyObject *tmp_dict_value_471; PyObject *tmp_dict_value_472; PyObject *tmp_dict_value_473; PyObject *tmp_dict_value_474; PyObject *tmp_dict_value_475; PyObject *tmp_dict_value_476; PyObject *tmp_dict_value_477; PyObject *tmp_dict_value_478; PyObject *tmp_dict_value_479; PyObject *tmp_dict_value_480; PyObject *tmp_dict_value_481; PyObject *tmp_dict_value_482; PyObject *tmp_dict_value_483; PyObject *tmp_dict_value_484; PyObject *tmp_dict_value_485; PyObject *tmp_dict_value_486; PyObject *tmp_dict_value_487; PyObject *tmp_dict_value_488; PyObject *tmp_dict_value_489; PyObject *tmp_dict_value_490; PyObject *tmp_dict_value_491; PyObject *tmp_dict_value_492; PyObject *tmp_dict_value_493; PyObject *tmp_dict_value_494; PyObject *tmp_dict_value_495; PyObject *tmp_dict_value_496; PyObject *tmp_dict_value_497; PyObject *tmp_dict_value_498; PyObject *tmp_dict_value_499; PyObject *tmp_dict_value_500; PyObject *tmp_dict_value_501; PyObject *tmp_dict_value_502; PyObject *tmp_dict_value_503; PyObject *tmp_dict_value_504; PyObject *tmp_dict_value_505; PyObject *tmp_dict_value_506; PyObject *tmp_dict_value_507; PyObject *tmp_dict_value_508; PyObject *tmp_dict_value_509; PyObject *tmp_dict_value_510; PyObject *tmp_dict_value_511; PyObject *tmp_dict_value_512; PyObject *tmp_dict_value_513; PyObject *tmp_dict_value_514; PyObject *tmp_dict_value_515; PyObject *tmp_dict_value_516; PyObject *tmp_dict_value_517; PyObject *tmp_dict_value_518; PyObject *tmp_dict_value_519; PyObject *tmp_dict_value_520; PyObject *tmp_dict_value_521; PyObject *tmp_dict_value_522; PyObject *tmp_dict_value_523; PyObject *tmp_dict_value_524; PyObject *tmp_dict_value_525; PyObject *tmp_dict_value_526; PyObject *tmp_dict_value_527; PyObject *tmp_dict_value_528; PyObject *tmp_dict_value_529; PyObject *tmp_dict_value_530; PyObject *tmp_dict_value_531; PyObject *tmp_dict_value_532; PyObject *tmp_dict_value_533; PyObject *tmp_dict_value_534; PyObject *tmp_dict_value_535; PyObject *tmp_dict_value_536; PyObject *tmp_dict_value_537; PyObject *tmp_dict_value_538; PyObject *tmp_dict_value_539; PyObject *tmp_dict_value_540; PyObject *tmp_dict_value_541; PyObject *tmp_dict_value_542; PyObject *tmp_dict_value_543; PyObject *tmp_dict_value_544; PyObject *tmp_dict_value_545; PyObject *tmp_dict_value_546; PyObject *tmp_dict_value_547; PyObject *tmp_dict_value_548; PyObject *tmp_dict_value_549; PyObject *tmp_dict_value_550; PyObject *tmp_dict_value_551; PyObject *tmp_dict_value_552; PyObject *tmp_dict_value_553; PyObject *tmp_dict_value_554; PyObject *tmp_dict_value_555; PyObject *tmp_dict_value_556; PyObject *tmp_dict_value_557; PyObject *tmp_dict_value_558; PyObject *tmp_dict_value_559; PyObject *tmp_dict_value_560; PyObject *tmp_dict_value_561; PyObject *tmp_dict_value_562; PyObject *tmp_dict_value_563; PyObject *tmp_dict_value_564; PyObject *tmp_dict_value_565; PyObject *tmp_dict_value_566; PyObject *tmp_dict_value_567; PyObject *tmp_dict_value_568; PyObject *tmp_dict_value_569; PyObject *tmp_import_globals_1; PyObject *tmp_import_globals_2; PyObject *tmp_import_globals_3; PyObject *tmp_import_globals_4; PyObject *tmp_import_globals_5; PyObject *tmp_import_globals_6; PyObject *tmp_import_globals_7; PyObject *tmp_import_globals_8; PyObject *tmp_import_globals_9; PyObject *tmp_import_globals_10; PyObject *tmp_import_globals_11; PyObject *tmp_import_globals_12; PyObject *tmp_import_globals_13; PyObject *tmp_import_globals_14; PyObject *tmp_import_globals_15; PyObject *tmp_import_globals_16; PyObject *tmp_import_name_from_1; PyObject *tmp_import_name_from_2; PyObject *tmp_import_name_from_3; PyObject *tmp_import_name_from_4; PyObject *tmp_import_name_from_5; PyObject *tmp_import_name_from_6; PyObject *tmp_import_name_from_7; PyObject *tmp_import_name_from_8; PyObject *tmp_import_name_from_9; PyObject *tmp_import_name_from_10; PyObject *tmp_iter_arg_1; PyObject *tmp_list_element_1; PyObject *tmp_list_element_2; PyObject *tmp_list_element_3; PyObject *tmp_list_element_4; PyObject *tmp_list_element_5; PyObject *tmp_list_element_6; PyObject *tmp_list_element_7; PyObject *tmp_list_element_8; PyObject *tmp_list_element_9; PyObject *tmp_list_element_10; PyObject *tmp_list_element_11; PyObject *tmp_list_element_12; PyObject *tmp_list_element_13; PyObject *tmp_list_element_14; PyObject *tmp_list_element_15; PyObject *tmp_list_element_16; PyObject *tmp_list_element_17; PyObject *tmp_list_element_18; PyObject *tmp_list_element_19; PyObject *tmp_list_element_20; PyObject *tmp_list_element_21; PyObject *tmp_list_element_22; PyObject *tmp_list_element_23; PyObject *tmp_list_element_24; PyObject *tmp_list_element_25; PyObject *tmp_list_element_26; PyObject *tmp_list_element_27; PyObject *tmp_list_element_28; PyObject *tmp_list_element_29; PyObject *tmp_next_source_1; bool tmp_result; PyObject *tmp_source_name_1; PyObject *tmp_source_name_2; PyObject *tmp_source_name_3; PyObject *tmp_source_name_4; PyObject *tmp_source_name_5; PyObject *tmp_source_name_6; PyObject *tmp_source_name_7; PyObject *tmp_source_name_8; PyObject *tmp_source_name_9; PyObject *tmp_star_imported_1; PyObject *tmp_star_imported_2; int tmp_tried_lineno_1; // Module code. tmp_assign_source_1 = const_str_digest_9077b83e901daee6c4d4e34357a66262; UPDATE_STRING_DICT0( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain___doc__, tmp_assign_source_1 ); tmp_assign_source_2 = const_str_digest_76fe246148a5eb0cccb642576b728a94; UPDATE_STRING_DICT0( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain___file__, tmp_assign_source_2 ); // Frame without reuse. PyFrameObject *frame_module = MAKE_FRAME( codeobj_d3b4964f0444715b98dbee738311a005, module_numpy$f2py$rules ); // Push the new frame as the currently active one, and we should be exlusively // owning it. pushFrameStack( frame_module ); assert( Py_REFCNT( frame_module ) == 1 ); #if PYTHON_VERSION >= 340 frame_module->f_executing += 1; #endif // Framed code: tmp_import_globals_1 = ((PyModuleObject *)module_numpy$f2py$rules)->md_dict; frame_module->f_lineno = 53; tmp_import_name_from_1 = IMPORT_MODULE( const_str_plain___future__, tmp_import_globals_1, tmp_import_globals_1, const_tuple_b3c114ff65e5229953139969fd8f9f4c_tuple, const_int_0 ); if ( tmp_import_name_from_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 53; goto frame_exception_exit_1; } tmp_assign_source_3 = IMPORT_NAME( tmp_import_name_from_1, const_str_plain_division ); Py_DECREF( tmp_import_name_from_1 ); if ( tmp_assign_source_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 53; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_division, tmp_assign_source_3 ); tmp_import_globals_2 = ((PyModuleObject *)module_numpy$f2py$rules)->md_dict; frame_module->f_lineno = 53; tmp_import_name_from_2 = IMPORT_MODULE( const_str_plain___future__, tmp_import_globals_2, tmp_import_globals_2, const_tuple_b3c114ff65e5229953139969fd8f9f4c_tuple, const_int_0 ); if ( tmp_import_name_from_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 53; goto frame_exception_exit_1; } tmp_assign_source_4 = IMPORT_NAME( tmp_import_name_from_2, const_str_plain_absolute_import ); Py_DECREF( tmp_import_name_from_2 ); if ( tmp_assign_source_4 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 53; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_absolute_import, tmp_assign_source_4 ); tmp_import_globals_3 = ((PyModuleObject *)module_numpy$f2py$rules)->md_dict; frame_module->f_lineno = 53; tmp_import_name_from_3 = IMPORT_MODULE( const_str_plain___future__, tmp_import_globals_3, tmp_import_globals_3, const_tuple_b3c114ff65e5229953139969fd8f9f4c_tuple, const_int_0 ); if ( tmp_import_name_from_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 53; goto frame_exception_exit_1; } tmp_assign_source_5 = IMPORT_NAME( tmp_import_name_from_3, const_str_plain_print_function ); Py_DECREF( tmp_import_name_from_3 ); if ( tmp_assign_source_5 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 53; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_print_function, tmp_assign_source_5 ); tmp_assign_source_6 = const_str_digest_a37910e2837bb74a8ac17a725e63197d; UPDATE_STRING_DICT0( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain___version__, tmp_assign_source_6 ); tmp_import_globals_4 = ((PyModuleObject *)module_numpy$f2py$rules)->md_dict; frame_module->f_lineno = 57; tmp_import_name_from_4 = IMPORT_MODULE( const_str_empty, tmp_import_globals_4, tmp_import_globals_4, const_tuple_str_plain___version___tuple, const_int_pos_1 ); if ( tmp_import_name_from_4 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 57; goto frame_exception_exit_1; } tmp_assign_source_7 = IMPORT_NAME( tmp_import_name_from_4, const_str_plain___version__ ); Py_DECREF( tmp_import_name_from_4 ); if ( tmp_assign_source_7 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 57; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain___version__, tmp_assign_source_7 ); tmp_source_name_1 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain___version__ ); if (unlikely( tmp_source_name_1 == NULL )) { tmp_source_name_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain___version__ ); } if ( tmp_source_name_1 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 23186 ], 33, 0 ); exception_tb = NULL; frame_module->f_lineno = 58; goto frame_exception_exit_1; } tmp_assign_source_8 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_version ); if ( tmp_assign_source_8 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 58; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_f2py_version, tmp_assign_source_8 ); tmp_import_globals_5 = ((PyModuleObject *)module_numpy$f2py$rules)->md_dict; frame_module->f_lineno = 60; tmp_assign_source_9 = IMPORT_MODULE( const_str_plain_pprint, tmp_import_globals_5, tmp_import_globals_5, Py_None, const_int_0 ); if ( tmp_assign_source_9 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 60; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_pprint, tmp_assign_source_9 ); tmp_import_globals_6 = ((PyModuleObject *)module_numpy$f2py$rules)->md_dict; frame_module->f_lineno = 61; tmp_assign_source_10 = IMPORT_MODULE( const_str_plain_sys, tmp_import_globals_6, tmp_import_globals_6, Py_None, const_int_0 ); if ( tmp_assign_source_10 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 61; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_sys, tmp_assign_source_10 ); tmp_import_globals_7 = ((PyModuleObject *)module_numpy$f2py$rules)->md_dict; frame_module->f_lineno = 62; tmp_assign_source_11 = IMPORT_MODULE( const_str_plain_time, tmp_import_globals_7, tmp_import_globals_7, Py_None, const_int_0 ); if ( tmp_assign_source_11 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 62; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_time, tmp_assign_source_11 ); tmp_import_globals_8 = ((PyModuleObject *)module_numpy$f2py$rules)->md_dict; frame_module->f_lineno = 63; tmp_assign_source_12 = IMPORT_MODULE( const_str_plain_copy, tmp_import_globals_8, tmp_import_globals_8, Py_None, const_int_0 ); if ( tmp_assign_source_12 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 63; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_copy, tmp_assign_source_12 ); tmp_import_globals_9 = ((PyModuleObject *)module_numpy$f2py$rules)->md_dict; frame_module->f_lineno = 65; tmp_star_imported_1 = IMPORT_MODULE( const_str_plain_auxfuncs, tmp_import_globals_9, tmp_import_globals_9, const_tuple_str_chr_42_tuple, const_int_pos_1 ); if ( tmp_star_imported_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 65; goto frame_exception_exit_1; } tmp_result = IMPORT_MODULE_STAR( module_numpy$f2py$rules, true, tmp_star_imported_1 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_star_imported_1 ); frame_module->f_lineno = 65; goto frame_exception_exit_1; } Py_DECREF( tmp_star_imported_1 ); tmp_import_globals_10 = ((PyModuleObject *)module_numpy$f2py$rules)->md_dict; frame_module->f_lineno = 66; tmp_import_name_from_5 = IMPORT_MODULE( const_str_empty, tmp_import_globals_10, tmp_import_globals_10, const_tuple_str_plain_capi_maps_tuple, const_int_pos_1 ); if ( tmp_import_name_from_5 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 66; goto frame_exception_exit_1; } tmp_assign_source_13 = IMPORT_NAME( tmp_import_name_from_5, const_str_plain_capi_maps ); Py_DECREF( tmp_import_name_from_5 ); if ( tmp_assign_source_13 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 66; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_capi_maps, tmp_assign_source_13 ); tmp_import_globals_11 = ((PyModuleObject *)module_numpy$f2py$rules)->md_dict; frame_module->f_lineno = 67; tmp_star_imported_2 = IMPORT_MODULE( const_str_plain_capi_maps, tmp_import_globals_11, tmp_import_globals_11, const_tuple_str_chr_42_tuple, const_int_pos_1 ); if ( tmp_star_imported_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 67; goto frame_exception_exit_1; } tmp_result = IMPORT_MODULE_STAR( module_numpy$f2py$rules, true, tmp_star_imported_2 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_star_imported_2 ); frame_module->f_lineno = 67; goto frame_exception_exit_1; } Py_DECREF( tmp_star_imported_2 ); tmp_import_globals_12 = ((PyModuleObject *)module_numpy$f2py$rules)->md_dict; frame_module->f_lineno = 68; tmp_import_name_from_6 = IMPORT_MODULE( const_str_empty, tmp_import_globals_12, tmp_import_globals_12, const_tuple_str_plain_cfuncs_tuple, const_int_pos_1 ); if ( tmp_import_name_from_6 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 68; goto frame_exception_exit_1; } tmp_assign_source_14 = IMPORT_NAME( tmp_import_name_from_6, const_str_plain_cfuncs ); Py_DECREF( tmp_import_name_from_6 ); if ( tmp_assign_source_14 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 68; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_cfuncs, tmp_assign_source_14 ); tmp_import_globals_13 = ((PyModuleObject *)module_numpy$f2py$rules)->md_dict; frame_module->f_lineno = 69; tmp_import_name_from_7 = IMPORT_MODULE( const_str_empty, tmp_import_globals_13, tmp_import_globals_13, const_tuple_str_plain_common_rules_tuple, const_int_pos_1 ); if ( tmp_import_name_from_7 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 69; goto frame_exception_exit_1; } tmp_assign_source_15 = IMPORT_NAME( tmp_import_name_from_7, const_str_plain_common_rules ); Py_DECREF( tmp_import_name_from_7 ); if ( tmp_assign_source_15 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 69; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_common_rules, tmp_assign_source_15 ); tmp_import_globals_14 = ((PyModuleObject *)module_numpy$f2py$rules)->md_dict; frame_module->f_lineno = 70; tmp_import_name_from_8 = IMPORT_MODULE( const_str_empty, tmp_import_globals_14, tmp_import_globals_14, const_tuple_str_plain_use_rules_tuple, const_int_pos_1 ); if ( tmp_import_name_from_8 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 70; goto frame_exception_exit_1; } tmp_assign_source_16 = IMPORT_NAME( tmp_import_name_from_8, const_str_plain_use_rules ); Py_DECREF( tmp_import_name_from_8 ); if ( tmp_assign_source_16 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 70; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_use_rules, tmp_assign_source_16 ); tmp_import_globals_15 = ((PyModuleObject *)module_numpy$f2py$rules)->md_dict; frame_module->f_lineno = 71; tmp_import_name_from_9 = IMPORT_MODULE( const_str_empty, tmp_import_globals_15, tmp_import_globals_15, const_tuple_str_plain_f90mod_rules_tuple, const_int_pos_1 ); if ( tmp_import_name_from_9 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 71; goto frame_exception_exit_1; } tmp_assign_source_17 = IMPORT_NAME( tmp_import_name_from_9, const_str_plain_f90mod_rules ); Py_DECREF( tmp_import_name_from_9 ); if ( tmp_assign_source_17 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 71; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_f90mod_rules, tmp_assign_source_17 ); tmp_import_globals_16 = ((PyModuleObject *)module_numpy$f2py$rules)->md_dict; frame_module->f_lineno = 72; tmp_import_name_from_10 = IMPORT_MODULE( const_str_empty, tmp_import_globals_16, tmp_import_globals_16, const_tuple_str_plain_func2subr_tuple, const_int_pos_1 ); if ( tmp_import_name_from_10 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 72; goto frame_exception_exit_1; } tmp_assign_source_18 = IMPORT_NAME( tmp_import_name_from_10, const_str_plain_func2subr ); Py_DECREF( tmp_import_name_from_10 ); if ( tmp_assign_source_18 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 72; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_func2subr, tmp_assign_source_18 ); tmp_source_name_3 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_sys ); if (unlikely( tmp_source_name_3 == NULL )) { tmp_source_name_3 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_sys ); } if ( tmp_source_name_3 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 4756 ], 25, 0 ); exception_tb = NULL; frame_module->f_lineno = 74; goto frame_exception_exit_1; } tmp_source_name_2 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_stderr ); if ( tmp_source_name_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 74; goto frame_exception_exit_1; } tmp_assign_source_19 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_write ); Py_DECREF( tmp_source_name_2 ); if ( tmp_assign_source_19 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 74; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_errmess, tmp_assign_source_19 ); tmp_source_name_5 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_sys ); if (unlikely( tmp_source_name_5 == NULL )) { tmp_source_name_5 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_sys ); } if ( tmp_source_name_5 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 4756 ], 25, 0 ); exception_tb = NULL; frame_module->f_lineno = 75; goto frame_exception_exit_1; } tmp_source_name_4 = LOOKUP_ATTRIBUTE( tmp_source_name_5, const_str_plain_stdout ); if ( tmp_source_name_4 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 75; goto frame_exception_exit_1; } tmp_assign_source_20 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain_write ); Py_DECREF( tmp_source_name_4 ); if ( tmp_assign_source_20 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 75; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_outmess, tmp_assign_source_20 ); tmp_source_name_6 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_pprint ); if (unlikely( tmp_source_name_6 == NULL )) { tmp_source_name_6 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_pprint ); } if ( tmp_source_name_6 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124010 ], 28, 0 ); exception_tb = NULL; frame_module->f_lineno = 76; goto frame_exception_exit_1; } tmp_assign_source_21 = LOOKUP_ATTRIBUTE( tmp_source_name_6, const_str_plain_pprint ); if ( tmp_assign_source_21 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 76; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_show, tmp_assign_source_21 ); tmp_assign_source_22 = PyDict_New(); UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_options, tmp_assign_source_22 ); tmp_assign_source_23 = PyDict_New(); UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_sepdict, tmp_assign_source_23 ); tmp_iter_arg_1 = const_tuple_cde206c752dab3a50d1c0e1f18afb419_tuple; tmp_assign_source_24 = MAKE_ITERATOR( tmp_iter_arg_1 ); if ( tmp_assign_source_24 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 95; goto frame_exception_exit_1; } assert( tmp_for_loop_1__for_iterator.object == NULL ); tmp_for_loop_1__for_iterator.object = tmp_assign_source_24; // Tried code loop_start_1:; tmp_next_source_1 = tmp_for_loop_1__for_iterator.object; tmp_assign_source_25 = ITERATOR_NEXT( tmp_next_source_1 ); if (tmp_assign_source_25 == NULL) { if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() ) { goto loop_end_1; } else { PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 81; goto try_finally_handler_1; } } if (tmp_for_loop_1__iter_value.object == NULL) { tmp_for_loop_1__iter_value.object = tmp_assign_source_25; } else { PyObject *old = tmp_for_loop_1__iter_value.object; tmp_for_loop_1__iter_value.object = tmp_assign_source_25; Py_DECREF( old ); } tmp_assign_source_26 = tmp_for_loop_1__iter_value.object; UPDATE_STRING_DICT0( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_k, tmp_assign_source_26 ); tmp_ass_subvalue_1 = const_str_newline; tmp_ass_subscribed_1 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_sepdict ); if (unlikely( tmp_ass_subscribed_1 == NULL )) { tmp_ass_subscribed_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_sepdict ); } if ( tmp_ass_subscribed_1 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150753 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 96; goto try_finally_handler_1; } tmp_ass_subscript_1 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_k ); if (unlikely( tmp_ass_subscript_1 == NULL )) { tmp_ass_subscript_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_k ); } if ( tmp_ass_subscript_1 == NULL ) { exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 19412 ], 23, 0 ); exception_tb = NULL; frame_module->f_lineno = 96; goto try_finally_handler_1; } tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 ); if ( tmp_result == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 96; goto try_finally_handler_1; } if ( CONSIDER_THREADING() == false ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); frame_module->f_lineno = 81; goto try_finally_handler_1; } goto loop_start_1; loop_end_1:; // Final block of try/finally // Tried block ends with no exception occured, note that. exception_type = NULL; exception_value = NULL; exception_tb = NULL; try_finally_handler_1:; exception_keeper_type_1 = exception_type; exception_keeper_value_1 = exception_value; exception_keeper_tb_1 = exception_tb; exception_type = NULL; exception_value = NULL; exception_tb = NULL; tmp_tried_lineno_1 = frame_module->f_lineno; Py_XDECREF( tmp_for_loop_1__iter_value.object ); tmp_for_loop_1__iter_value.object = NULL; Py_XDECREF( tmp_for_loop_1__for_iterator.object ); tmp_for_loop_1__for_iterator.object = NULL; frame_module->f_lineno = tmp_tried_lineno_1; // Re-reraise as necessary after finally was executed. // Reraise exception if any. if ( exception_keeper_type_1 != NULL ) { exception_type = exception_keeper_type_1; exception_value = exception_keeper_value_1; exception_tb = exception_keeper_tb_1; goto frame_exception_exit_1; } goto finally_end_1; finally_end_1:; tmp_assign_source_27 = _PyDict_NewPresized( 4 ); tmp_binop_left_35 = const_str_digest_ce5b897b8639742629f34ea80efc31ef; tmp_source_name_7 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_time ); if (unlikely( tmp_source_name_7 == NULL )) { tmp_source_name_7 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_time ); } if ( tmp_source_name_7 == NULL ) { Py_DECREF( tmp_assign_source_27 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 45713 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 107; goto frame_exception_exit_1; } tmp_called_1 = LOOKUP_ATTRIBUTE( tmp_source_name_7, const_str_plain_asctime ); if ( tmp_called_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 107; goto frame_exception_exit_1; } tmp_source_name_8 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_time ); if (unlikely( tmp_source_name_8 == NULL )) { tmp_source_name_8 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_time ); } if ( tmp_source_name_8 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_called_1 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 45713 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 107; goto frame_exception_exit_1; } tmp_called_2 = LOOKUP_ATTRIBUTE( tmp_source_name_8, const_str_plain_localtime ); if ( tmp_called_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_called_1 ); frame_module->f_lineno = 107; goto frame_exception_exit_1; } tmp_source_name_9 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_time ); if (unlikely( tmp_source_name_9 == NULL )) { tmp_source_name_9 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_time ); } if ( tmp_source_name_9 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_called_1 ); Py_DECREF( tmp_called_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 45713 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 107; goto frame_exception_exit_1; } tmp_called_3 = LOOKUP_ATTRIBUTE( tmp_source_name_9, const_str_plain_time ); if ( tmp_called_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_called_1 ); Py_DECREF( tmp_called_2 ); frame_module->f_lineno = 107; goto frame_exception_exit_1; } frame_module->f_lineno = 107; tmp_call_arg_element_2 = CALL_FUNCTION_NO_ARGS( tmp_called_3 ); Py_DECREF( tmp_called_3 ); if ( tmp_call_arg_element_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_called_1 ); Py_DECREF( tmp_called_2 ); frame_module->f_lineno = 107; goto frame_exception_exit_1; } frame_module->f_lineno = 107; tmp_call_arg_element_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_2, tmp_call_arg_element_2 ); Py_DECREF( tmp_called_2 ); Py_DECREF( tmp_call_arg_element_2 ); if ( tmp_call_arg_element_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_called_1 ); frame_module->f_lineno = 107; goto frame_exception_exit_1; } frame_module->f_lineno = 107; tmp_binop_right_35 = CALL_FUNCTION_WITH_ARGS1( tmp_called_1, tmp_call_arg_element_1 ); Py_DECREF( tmp_called_1 ); Py_DECREF( tmp_call_arg_element_1 ); if ( tmp_binop_right_35 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 107; goto frame_exception_exit_1; } tmp_binop_left_34 = BINARY_OPERATION_ADD( tmp_binop_left_35, tmp_binop_right_35 ); Py_DECREF( tmp_binop_right_35 ); if ( tmp_binop_left_34 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 107; goto frame_exception_exit_1; } tmp_binop_right_34 = const_str_digest_56eb8b6c3a2e2b46a9b2615c93c4d45e; tmp_binop_left_33 = BINARY_OPERATION_ADD( tmp_binop_left_34, tmp_binop_right_34 ); Py_DECREF( tmp_binop_left_34 ); if ( tmp_binop_left_33 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 107; goto frame_exception_exit_1; } tmp_binop_right_33 = const_str_digest_d7ccb205c498b35eef75e47f3fcf28c0; tmp_binop_left_32 = BINARY_OPERATION_ADD( tmp_binop_left_33, tmp_binop_right_33 ); Py_DECREF( tmp_binop_left_33 ); if ( tmp_binop_left_32 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 108; goto frame_exception_exit_1; } tmp_binop_right_32 = const_str_digest_31a9af9e11e7fa447fb19b15333890bf; tmp_binop_left_31 = BINARY_OPERATION_ADD( tmp_binop_left_32, tmp_binop_right_32 ); Py_DECREF( tmp_binop_left_32 ); if ( tmp_binop_left_31 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 109; goto frame_exception_exit_1; } tmp_called_4 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_gentitle ); if (unlikely( tmp_called_4 == NULL )) { tmp_called_4 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_gentitle ); } if ( tmp_called_4 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_31 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128890 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 116; goto frame_exception_exit_1; } tmp_call_arg_element_3 = const_str_digest_6e3f60afbc56076b3a1ad2fd52e5545f; frame_module->f_lineno = 116; tmp_binop_right_31 = CALL_FUNCTION_WITH_ARGS1( tmp_called_4, tmp_call_arg_element_3 ); if ( tmp_binop_right_31 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_31 ); frame_module->f_lineno = 116; goto frame_exception_exit_1; } tmp_binop_left_30 = BINARY_OPERATION_ADD( tmp_binop_left_31, tmp_binop_right_31 ); Py_DECREF( tmp_binop_left_31 ); Py_DECREF( tmp_binop_right_31 ); if ( tmp_binop_left_30 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 116; goto frame_exception_exit_1; } tmp_binop_right_30 = const_str_digest_007d50f5babd3a75f4137e740257a41e; tmp_binop_left_29 = BINARY_OPERATION_ADD( tmp_binop_left_30, tmp_binop_right_30 ); Py_DECREF( tmp_binop_left_30 ); if ( tmp_binop_left_29 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 116; goto frame_exception_exit_1; } tmp_called_5 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_gentitle ); if (unlikely( tmp_called_5 == NULL )) { tmp_called_5 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_gentitle ); } if ( tmp_called_5 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_29 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128890 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 120; goto frame_exception_exit_1; } tmp_call_arg_element_4 = const_str_digest_bbd898cba8e091026a41c30005eabf32; frame_module->f_lineno = 120; tmp_binop_right_29 = CALL_FUNCTION_WITH_ARGS1( tmp_called_5, tmp_call_arg_element_4 ); if ( tmp_binop_right_29 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_29 ); frame_module->f_lineno = 120; goto frame_exception_exit_1; } tmp_binop_left_28 = BINARY_OPERATION_ADD( tmp_binop_left_29, tmp_binop_right_29 ); Py_DECREF( tmp_binop_left_29 ); Py_DECREF( tmp_binop_right_29 ); if ( tmp_binop_left_28 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 120; goto frame_exception_exit_1; } tmp_binop_right_28 = const_str_digest_9751ba3cd639e8b26904b98f438feabb; tmp_binop_left_27 = BINARY_OPERATION_ADD( tmp_binop_left_28, tmp_binop_right_28 ); Py_DECREF( tmp_binop_left_28 ); if ( tmp_binop_left_27 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 120; goto frame_exception_exit_1; } tmp_called_6 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_gentitle ); if (unlikely( tmp_called_6 == NULL )) { tmp_called_6 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_gentitle ); } if ( tmp_called_6 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_27 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128890 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 124; goto frame_exception_exit_1; } tmp_call_arg_element_5 = const_str_digest_d1797c16915d5942896329250beda9a0; frame_module->f_lineno = 124; tmp_binop_right_27 = CALL_FUNCTION_WITH_ARGS1( tmp_called_6, tmp_call_arg_element_5 ); if ( tmp_binop_right_27 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_27 ); frame_module->f_lineno = 124; goto frame_exception_exit_1; } tmp_binop_left_26 = BINARY_OPERATION_ADD( tmp_binop_left_27, tmp_binop_right_27 ); Py_DECREF( tmp_binop_left_27 ); Py_DECREF( tmp_binop_right_27 ); if ( tmp_binop_left_26 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 124; goto frame_exception_exit_1; } tmp_binop_right_26 = const_str_digest_6051a16e4b8002678b6d93e2ac79406a; tmp_binop_left_25 = BINARY_OPERATION_ADD( tmp_binop_left_26, tmp_binop_right_26 ); Py_DECREF( tmp_binop_left_26 ); if ( tmp_binop_left_25 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 124; goto frame_exception_exit_1; } tmp_called_7 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_gentitle ); if (unlikely( tmp_called_7 == NULL )) { tmp_called_7 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_gentitle ); } if ( tmp_called_7 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_25 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128890 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 127; goto frame_exception_exit_1; } tmp_call_arg_element_6 = const_str_digest_8ab69059fbe9fef0b0ad50f2b948f8ee; frame_module->f_lineno = 127; tmp_binop_right_25 = CALL_FUNCTION_WITH_ARGS1( tmp_called_7, tmp_call_arg_element_6 ); if ( tmp_binop_right_25 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_25 ); frame_module->f_lineno = 127; goto frame_exception_exit_1; } tmp_binop_left_24 = BINARY_OPERATION_ADD( tmp_binop_left_25, tmp_binop_right_25 ); Py_DECREF( tmp_binop_left_25 ); Py_DECREF( tmp_binop_right_25 ); if ( tmp_binop_left_24 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 127; goto frame_exception_exit_1; } tmp_binop_right_24 = const_str_digest_9848ea2f585329928c28906ca7106439; tmp_binop_left_23 = BINARY_OPERATION_ADD( tmp_binop_left_24, tmp_binop_right_24 ); Py_DECREF( tmp_binop_left_24 ); if ( tmp_binop_left_23 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 127; goto frame_exception_exit_1; } tmp_called_8 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_gentitle ); if (unlikely( tmp_called_8 == NULL )) { tmp_called_8 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_gentitle ); } if ( tmp_called_8 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_23 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128890 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 130; goto frame_exception_exit_1; } tmp_call_arg_element_7 = const_str_digest_55f1ce80e69a2658f507e145643c067b; frame_module->f_lineno = 130; tmp_binop_right_23 = CALL_FUNCTION_WITH_ARGS1( tmp_called_8, tmp_call_arg_element_7 ); if ( tmp_binop_right_23 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_23 ); frame_module->f_lineno = 130; goto frame_exception_exit_1; } tmp_binop_left_22 = BINARY_OPERATION_ADD( tmp_binop_left_23, tmp_binop_right_23 ); Py_DECREF( tmp_binop_left_23 ); Py_DECREF( tmp_binop_right_23 ); if ( tmp_binop_left_22 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 130; goto frame_exception_exit_1; } tmp_binop_right_22 = const_str_digest_5dd2ddd3c8c2121e0d34a95bfef37e1e; tmp_binop_left_21 = BINARY_OPERATION_ADD( tmp_binop_left_22, tmp_binop_right_22 ); Py_DECREF( tmp_binop_left_22 ); if ( tmp_binop_left_21 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 130; goto frame_exception_exit_1; } tmp_called_9 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_gentitle ); if (unlikely( tmp_called_9 == NULL )) { tmp_called_9 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_gentitle ); } if ( tmp_called_9 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_21 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128890 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 133; goto frame_exception_exit_1; } tmp_call_arg_element_8 = const_str_digest_b1a73bd199a3381dd99aa189b635c9d2; frame_module->f_lineno = 133; tmp_binop_right_21 = CALL_FUNCTION_WITH_ARGS1( tmp_called_9, tmp_call_arg_element_8 ); if ( tmp_binop_right_21 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_21 ); frame_module->f_lineno = 133; goto frame_exception_exit_1; } tmp_binop_left_20 = BINARY_OPERATION_ADD( tmp_binop_left_21, tmp_binop_right_21 ); Py_DECREF( tmp_binop_left_21 ); Py_DECREF( tmp_binop_right_21 ); if ( tmp_binop_left_20 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 133; goto frame_exception_exit_1; } tmp_binop_right_20 = const_str_digest_b8743901784613aeb6cba18f9454164f; tmp_binop_left_19 = BINARY_OPERATION_ADD( tmp_binop_left_20, tmp_binop_right_20 ); Py_DECREF( tmp_binop_left_20 ); if ( tmp_binop_left_19 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 133; goto frame_exception_exit_1; } tmp_called_10 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_gentitle ); if (unlikely( tmp_called_10 == NULL )) { tmp_called_10 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_gentitle ); } if ( tmp_called_10 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_19 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128890 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 136; goto frame_exception_exit_1; } tmp_call_arg_element_9 = const_str_digest_5a3b19794c360cfa1f3fb761f0170bf4; frame_module->f_lineno = 136; tmp_binop_right_19 = CALL_FUNCTION_WITH_ARGS1( tmp_called_10, tmp_call_arg_element_9 ); if ( tmp_binop_right_19 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_19 ); frame_module->f_lineno = 136; goto frame_exception_exit_1; } tmp_binop_left_18 = BINARY_OPERATION_ADD( tmp_binop_left_19, tmp_binop_right_19 ); Py_DECREF( tmp_binop_left_19 ); Py_DECREF( tmp_binop_right_19 ); if ( tmp_binop_left_18 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 136; goto frame_exception_exit_1; } tmp_binop_right_18 = const_str_digest_fc4edadf7639afc609ef0411b3949729; tmp_binop_left_17 = BINARY_OPERATION_ADD( tmp_binop_left_18, tmp_binop_right_18 ); Py_DECREF( tmp_binop_left_18 ); if ( tmp_binop_left_17 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 136; goto frame_exception_exit_1; } tmp_called_11 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_gentitle ); if (unlikely( tmp_called_11 == NULL )) { tmp_called_11 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_gentitle ); } if ( tmp_called_11 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_17 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128890 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 139; goto frame_exception_exit_1; } tmp_call_arg_element_10 = const_str_digest_a7de58b21f8d89408e6f6bc0054e4d96; frame_module->f_lineno = 139; tmp_binop_right_17 = CALL_FUNCTION_WITH_ARGS1( tmp_called_11, tmp_call_arg_element_10 ); if ( tmp_binop_right_17 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_17 ); frame_module->f_lineno = 139; goto frame_exception_exit_1; } tmp_binop_left_16 = BINARY_OPERATION_ADD( tmp_binop_left_17, tmp_binop_right_17 ); Py_DECREF( tmp_binop_left_17 ); Py_DECREF( tmp_binop_right_17 ); if ( tmp_binop_left_16 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 139; goto frame_exception_exit_1; } tmp_binop_right_16 = const_str_digest_16d4ea9ba4d55fcaab93d0516b4d9157; tmp_binop_left_15 = BINARY_OPERATION_ADD( tmp_binop_left_16, tmp_binop_right_16 ); Py_DECREF( tmp_binop_left_16 ); if ( tmp_binop_left_15 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 139; goto frame_exception_exit_1; } tmp_called_12 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_gentitle ); if (unlikely( tmp_called_12 == NULL )) { tmp_called_12 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_gentitle ); } if ( tmp_called_12 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128890 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 145; goto frame_exception_exit_1; } tmp_call_arg_element_11 = const_str_digest_b454ce2d9dc0e1e729d4fe26cd68b667; frame_module->f_lineno = 145; tmp_binop_right_15 = CALL_FUNCTION_WITH_ARGS1( tmp_called_12, tmp_call_arg_element_11 ); if ( tmp_binop_right_15 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_15 ); frame_module->f_lineno = 145; goto frame_exception_exit_1; } tmp_binop_left_14 = BINARY_OPERATION_ADD( tmp_binop_left_15, tmp_binop_right_15 ); Py_DECREF( tmp_binop_left_15 ); Py_DECREF( tmp_binop_right_15 ); if ( tmp_binop_left_14 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 145; goto frame_exception_exit_1; } tmp_binop_right_14 = const_str_digest_dc00e62d6cadf7b075734a2e4733966e; tmp_binop_left_13 = BINARY_OPERATION_ADD( tmp_binop_left_14, tmp_binop_right_14 ); Py_DECREF( tmp_binop_left_14 ); if ( tmp_binop_left_13 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 145; goto frame_exception_exit_1; } tmp_called_13 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_gentitle ); if (unlikely( tmp_called_13 == NULL )) { tmp_called_13 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_gentitle ); } if ( tmp_called_13 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_13 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128890 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 148; goto frame_exception_exit_1; } tmp_call_arg_element_12 = const_str_digest_0e6d8ecfca61c030ce40551480a7c4c8; frame_module->f_lineno = 148; tmp_binop_right_13 = CALL_FUNCTION_WITH_ARGS1( tmp_called_13, tmp_call_arg_element_12 ); if ( tmp_binop_right_13 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_13 ); frame_module->f_lineno = 148; goto frame_exception_exit_1; } tmp_binop_left_12 = BINARY_OPERATION_ADD( tmp_binop_left_13, tmp_binop_right_13 ); Py_DECREF( tmp_binop_left_13 ); Py_DECREF( tmp_binop_right_13 ); if ( tmp_binop_left_12 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 148; goto frame_exception_exit_1; } tmp_binop_right_12 = const_str_digest_7aedd59139d051efeaded43f5468c2c5; tmp_binop_left_11 = BINARY_OPERATION_ADD( tmp_binop_left_12, tmp_binop_right_12 ); Py_DECREF( tmp_binop_left_12 ); if ( tmp_binop_left_11 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 148; goto frame_exception_exit_1; } tmp_called_14 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_gentitle ); if (unlikely( tmp_called_14 == NULL )) { tmp_called_14 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_gentitle ); } if ( tmp_called_14 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_11 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128890 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 151; goto frame_exception_exit_1; } tmp_call_arg_element_13 = const_str_digest_b6761a339d072eed29792fd342025a92; frame_module->f_lineno = 151; tmp_binop_right_11 = CALL_FUNCTION_WITH_ARGS1( tmp_called_14, tmp_call_arg_element_13 ); if ( tmp_binop_right_11 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_11 ); frame_module->f_lineno = 151; goto frame_exception_exit_1; } tmp_binop_left_10 = BINARY_OPERATION_ADD( tmp_binop_left_11, tmp_binop_right_11 ); Py_DECREF( tmp_binop_left_11 ); Py_DECREF( tmp_binop_right_11 ); if ( tmp_binop_left_10 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 151; goto frame_exception_exit_1; } tmp_binop_right_10 = const_str_digest_dc7e2d2d5f013f1151ce74d50a33f797; tmp_binop_left_9 = BINARY_OPERATION_ADD( tmp_binop_left_10, tmp_binop_right_10 ); Py_DECREF( tmp_binop_left_10 ); if ( tmp_binop_left_9 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 151; goto frame_exception_exit_1; } tmp_called_15 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_gentitle ); if (unlikely( tmp_called_15 == NULL )) { tmp_called_15 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_gentitle ); } if ( tmp_called_15 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128890 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 154; goto frame_exception_exit_1; } tmp_call_arg_element_14 = const_str_digest_1678f341d6d4b9988981a9652fd0aaf7; frame_module->f_lineno = 154; tmp_binop_right_9 = CALL_FUNCTION_WITH_ARGS1( tmp_called_15, tmp_call_arg_element_14 ); if ( tmp_binop_right_9 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_9 ); frame_module->f_lineno = 154; goto frame_exception_exit_1; } tmp_binop_left_8 = BINARY_OPERATION_ADD( tmp_binop_left_9, tmp_binop_right_9 ); Py_DECREF( tmp_binop_left_9 ); Py_DECREF( tmp_binop_right_9 ); if ( tmp_binop_left_8 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 154; goto frame_exception_exit_1; } tmp_binop_right_8 = const_str_digest_343d31d31f56cdef8fe89aa79cee366a; tmp_binop_left_7 = BINARY_OPERATION_ADD( tmp_binop_left_8, tmp_binop_right_8 ); Py_DECREF( tmp_binop_left_8 ); if ( tmp_binop_left_7 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 154; goto frame_exception_exit_1; } tmp_called_16 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_gentitle ); if (unlikely( tmp_called_16 == NULL )) { tmp_called_16 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_gentitle ); } if ( tmp_called_16 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_7 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128890 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 157; goto frame_exception_exit_1; } tmp_call_arg_element_15 = const_str_digest_ad481cb364b37bd937f33b4d475ca5d6; frame_module->f_lineno = 157; tmp_binop_right_7 = CALL_FUNCTION_WITH_ARGS1( tmp_called_16, tmp_call_arg_element_15 ); if ( tmp_binop_right_7 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_7 ); frame_module->f_lineno = 157; goto frame_exception_exit_1; } tmp_binop_left_6 = BINARY_OPERATION_ADD( tmp_binop_left_7, tmp_binop_right_7 ); Py_DECREF( tmp_binop_left_7 ); Py_DECREF( tmp_binop_right_7 ); if ( tmp_binop_left_6 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 157; goto frame_exception_exit_1; } tmp_binop_right_6 = const_str_digest_e1c06d85ae7b8b032bef47e42e4c08f9; tmp_binop_left_5 = BINARY_OPERATION_ADD( tmp_binop_left_6, tmp_binop_right_6 ); Py_DECREF( tmp_binop_left_6 ); if ( tmp_binop_left_5 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 157; goto frame_exception_exit_1; } tmp_called_17 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_gentitle ); if (unlikely( tmp_called_17 == NULL )) { tmp_called_17 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_gentitle ); } if ( tmp_called_17 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_5 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128890 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 159; goto frame_exception_exit_1; } tmp_call_arg_element_16 = const_str_digest_0e629208d1577c2a84c6eb9e890eff33; frame_module->f_lineno = 159; tmp_binop_right_5 = CALL_FUNCTION_WITH_ARGS1( tmp_called_17, tmp_call_arg_element_16 ); if ( tmp_binop_right_5 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_5 ); frame_module->f_lineno = 159; goto frame_exception_exit_1; } tmp_binop_left_4 = BINARY_OPERATION_ADD( tmp_binop_left_5, tmp_binop_right_5 ); Py_DECREF( tmp_binop_left_5 ); Py_DECREF( tmp_binop_right_5 ); if ( tmp_binop_left_4 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 159; goto frame_exception_exit_1; } tmp_binop_right_4 = const_str_digest_d193a08c2f34203a6dece0610a94cbce; tmp_binop_left_3 = BINARY_OPERATION_ADD( tmp_binop_left_4, tmp_binop_right_4 ); Py_DECREF( tmp_binop_left_4 ); if ( tmp_binop_left_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 159; goto frame_exception_exit_1; } tmp_called_18 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_gentitle ); if (unlikely( tmp_called_18 == NULL )) { tmp_called_18 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_gentitle ); } if ( tmp_called_18 == NULL ) { Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_3 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128890 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 162; goto frame_exception_exit_1; } tmp_call_arg_element_17 = const_str_digest_4aa6b2c8be599f4ff600f479e1d083f8; frame_module->f_lineno = 162; tmp_binop_right_3 = CALL_FUNCTION_WITH_ARGS1( tmp_called_18, tmp_call_arg_element_17 ); if ( tmp_binop_right_3 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); Py_DECREF( tmp_binop_left_3 ); frame_module->f_lineno = 162; goto frame_exception_exit_1; } tmp_binop_left_2 = BINARY_OPERATION_ADD( tmp_binop_left_3, tmp_binop_right_3 ); Py_DECREF( tmp_binop_left_3 ); Py_DECREF( tmp_binop_right_3 ); if ( tmp_binop_left_2 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 162; goto frame_exception_exit_1; } tmp_binop_right_2 = const_str_digest_a97f071f0008b119291a75be0a54f0db; tmp_binop_left_1 = BINARY_OPERATION_ADD( tmp_binop_left_2, tmp_binop_right_2 ); Py_DECREF( tmp_binop_left_2 ); if ( tmp_binop_left_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 162; goto frame_exception_exit_1; } tmp_binop_right_1 = const_str_digest_2722011c07957ec4178692a6adc697b7; tmp_dict_value_1 = BINARY_OPERATION_ADD( tmp_binop_left_1, tmp_binop_right_1 ); Py_DECREF( tmp_binop_left_1 ); if ( tmp_dict_value_1 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_27 ); frame_module->f_lineno = 207; goto frame_exception_exit_1; } tmp_dict_key_1 = const_str_plain_modulebody; PyDict_SetItem( tmp_assign_source_27, tmp_dict_key_1, tmp_dict_value_1 ); Py_DECREF( tmp_dict_value_1 ); tmp_dict_value_2 = PyDict_Copy( const_dict_f901ef362e29b410a7de5c49b0849102 ); tmp_dict_key_2 = const_str_plain_separatorsfor; PyDict_SetItem( tmp_assign_source_27, tmp_dict_key_2, tmp_dict_value_2 ); Py_DECREF( tmp_dict_value_2 ); tmp_dict_value_3 = LIST_COPY( const_list_63cf9afba8d0564dfc4c1155a17b0c8c_list ); tmp_dict_key_3 = const_str_plain_latexdoc; PyDict_SetItem( tmp_assign_source_27, tmp_dict_key_3, tmp_dict_value_3 ); Py_DECREF( tmp_dict_value_3 ); tmp_dict_value_4 = LIST_COPY( const_list_32f32ffbbd5d0469a259f67cd7bedf23_list ); tmp_dict_key_4 = const_str_plain_restdoc; PyDict_SetItem( tmp_assign_source_27, tmp_dict_key_4, tmp_dict_value_4 ); Py_DECREF( tmp_dict_value_4 ); UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_module_rules, tmp_assign_source_27 ); tmp_assign_source_28 = PyList_New( 1 ); tmp_list_element_1 = _PyDict_NewPresized( 10 ); tmp_dict_value_5 = const_str_digest_0c93bbaa020061df40a3e0e1970c67b3; tmp_dict_key_5 = const_str_plain_body; PyDict_SetItem( tmp_list_element_1, tmp_dict_key_5, tmp_dict_value_5 ); tmp_dict_value_6 = const_str_digest_d487beb1c5e6713bce7f604f4ca8cb09; tmp_dict_key_6 = const_str_plain_method; PyDict_SetItem( tmp_list_element_1, tmp_dict_key_6, tmp_dict_value_6 ); tmp_dict_value_7 = const_str_digest_d053f48b89f24f879aa2f2f4e56eadf8; tmp_dict_key_7 = const_str_plain_externroutines; PyDict_SetItem( tmp_list_element_1, tmp_dict_key_7, tmp_dict_value_7 ); tmp_dict_value_8 = const_str_digest_bd64994aa1bf405da9e180c5248fed37; tmp_dict_key_8 = const_str_plain_routine_defs; PyDict_SetItem( tmp_list_element_1, tmp_dict_key_8, tmp_dict_value_8 ); tmp_dict_value_9 = const_str_digest_38b4dc4c4264c1437622ad072b57f931; tmp_dict_key_9 = const_str_plain_initf90modhooks; PyDict_SetItem( tmp_list_element_1, tmp_dict_key_9, tmp_dict_value_9 ); tmp_dict_value_10 = const_str_digest_9fd5fa304496311ce860090862daff60; tmp_dict_key_10 = const_str_plain_initf2pywraphooks; PyDict_SetItem( tmp_list_element_1, tmp_dict_key_10, tmp_dict_value_10 ); tmp_dict_value_11 = const_str_digest_88eaf6510bd57833178be952c2a2d74e; tmp_dict_key_11 = const_str_plain_initcommonhooks; PyDict_SetItem( tmp_list_element_1, tmp_dict_key_11, tmp_dict_value_11 ); tmp_dict_value_12 = const_str_empty; tmp_dict_key_12 = const_str_plain_latexdoc; PyDict_SetItem( tmp_list_element_1, tmp_dict_key_12, tmp_dict_value_12 ); tmp_dict_value_13 = const_str_empty; tmp_dict_key_13 = const_str_plain_restdoc; PyDict_SetItem( tmp_list_element_1, tmp_dict_key_13, tmp_dict_value_13 ); tmp_dict_value_14 = _PyDict_NewPresized( 2 ); tmp_dict_value_15 = const_str_digest_eeebd0c9ae3aeb9122106e125f5bce40; tmp_dict_key_15 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasnote ); if (unlikely( tmp_dict_key_15 == NULL )) { tmp_dict_key_15 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasnote ); } if ( tmp_dict_key_15 == NULL ) { Py_DECREF( tmp_assign_source_28 ); Py_DECREF( tmp_list_element_1 ); Py_DECREF( tmp_dict_value_14 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125485 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 255; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_14, tmp_dict_key_15, tmp_dict_value_15 ); tmp_dict_value_16 = const_str_empty; tmp_called_19 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_19 == NULL )) { tmp_called_19 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_19 == NULL ) { Py_DECREF( tmp_assign_source_28 ); Py_DECREF( tmp_list_element_1 ); Py_DECREF( tmp_dict_value_14 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 255; goto frame_exception_exit_1; } tmp_call_arg_element_18 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasnote ); if (unlikely( tmp_call_arg_element_18 == NULL )) { tmp_call_arg_element_18 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasnote ); } if ( tmp_call_arg_element_18 == NULL ) { Py_DECREF( tmp_assign_source_28 ); Py_DECREF( tmp_list_element_1 ); Py_DECREF( tmp_dict_value_14 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125485 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 255; goto frame_exception_exit_1; } frame_module->f_lineno = 255; tmp_dict_key_16 = CALL_FUNCTION_WITH_ARGS1( tmp_called_19, tmp_call_arg_element_18 ); if ( tmp_dict_key_16 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_28 ); Py_DECREF( tmp_list_element_1 ); Py_DECREF( tmp_dict_value_14 ); frame_module->f_lineno = 255; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_14, tmp_dict_key_16, tmp_dict_value_16 ); Py_DECREF( tmp_dict_key_16 ); tmp_dict_key_14 = const_str_plain_modnote; PyDict_SetItem( tmp_list_element_1, tmp_dict_key_14, tmp_dict_value_14 ); Py_DECREF( tmp_dict_value_14 ); PyList_SET_ITEM( tmp_assign_source_28, 0, tmp_list_element_1 ); UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_defmod_rules, tmp_assign_source_28 ); tmp_assign_source_29 = _PyDict_NewPresized( 12 ); tmp_dict_value_17 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_sepdict ); if (unlikely( tmp_dict_value_17 == NULL )) { tmp_dict_value_17 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_sepdict ); } if ( tmp_dict_value_17 == NULL ) { Py_DECREF( tmp_assign_source_29 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150753 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 260; goto frame_exception_exit_1; } tmp_dict_key_17 = const_str_plain_separatorsfor; PyDict_SetItem( tmp_assign_source_29, tmp_dict_key_17, tmp_dict_value_17 ); tmp_dict_value_18 = const_str_digest_ea53ee9a311971559ec8711c5fb4be91; tmp_dict_key_18 = const_str_plain_body; PyDict_SetItem( tmp_assign_source_29, tmp_dict_key_18, tmp_dict_value_18 ); tmp_dict_value_19 = const_str_digest_86b690e0ba1f63fd48e435095aef1119; tmp_dict_key_19 = const_str_plain_routine_defs; PyDict_SetItem( tmp_assign_source_29, tmp_dict_key_19, tmp_dict_value_19 ); tmp_dict_value_20 = const_str_digest_26528d4a51309a8f8ddb2c87bfb4d547; tmp_dict_key_20 = const_str_plain_initf2pywraphooks; PyDict_SetItem( tmp_assign_source_29, tmp_dict_key_20, tmp_dict_value_20 ); tmp_dict_value_21 = const_str_digest_365fbbecf5f6b6e5e9fb735849d785c0; tmp_dict_key_21 = const_str_plain_externroutines; PyDict_SetItem( tmp_assign_source_29, tmp_dict_key_21, tmp_dict_value_21 ); tmp_dict_value_22 = const_str_digest_ee729f5c9a3c88dd8861517adea99433; tmp_dict_key_22 = const_str_plain_doc; PyDict_SetItem( tmp_assign_source_29, tmp_dict_key_22, tmp_dict_value_22 ); tmp_dict_value_23 = const_str_digest_ed5b9d330fed7db100d8d2e379138830; tmp_dict_key_23 = const_str_plain_docshort; PyDict_SetItem( tmp_assign_source_29, tmp_dict_key_23, tmp_dict_value_23 ); tmp_dict_value_24 = const_str_digest_39eef5677102f3a55b588def25963616; tmp_dict_key_24 = const_str_plain_docs; PyDict_SetItem( tmp_assign_source_29, tmp_dict_key_24, tmp_dict_value_24 ); tmp_dict_value_25 = LIST_COPY( const_list_0725c8ade74f8f28b621ba88c880b6bd_list ); tmp_dict_key_25 = const_str_plain_need; PyDict_SetItem( tmp_assign_source_29, tmp_dict_key_25, tmp_dict_value_25 ); Py_DECREF( tmp_dict_value_25 ); tmp_dict_value_26 = _PyDict_NewPresized( 1 ); tmp_dict_value_27 = const_str_digest_d5bee58dc1094b8a3f313601fcb2d9ae; tmp_dict_key_27 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_dict_key_27 == NULL )) { tmp_dict_key_27 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_dict_key_27 == NULL ) { Py_DECREF( tmp_assign_source_29 ); Py_DECREF( tmp_dict_value_26 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 324; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_26, tmp_dict_key_27, tmp_dict_value_27 ); tmp_dict_key_26 = const_str_plain_cppmacros; PyDict_SetItem( tmp_assign_source_29, tmp_dict_key_26, tmp_dict_value_26 ); Py_DECREF( tmp_dict_value_26 ); tmp_dict_value_28 = LIST_COPY( const_list_d9758b2de662a4320da70ff340579452_list ); tmp_dict_key_28 = const_str_plain_latexdoc; PyDict_SetItem( tmp_assign_source_29, tmp_dict_key_28, tmp_dict_value_28 ); Py_DECREF( tmp_dict_value_28 ); tmp_dict_value_29 = LIST_COPY( const_list_str_digest_f52b7060aab9a16195083441b23e029f_list ); tmp_dict_key_29 = const_str_plain_restdoc; PyDict_SetItem( tmp_assign_source_29, tmp_dict_key_29, tmp_dict_value_29 ); Py_DECREF( tmp_dict_value_29 ); UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_routine_rules, tmp_assign_source_29 ); tmp_assign_source_30 = PyList_New( 10 ); tmp_list_element_2 = _PyDict_NewPresized( 47 ); tmp_dict_value_30 = PyDict_Copy( const_dict_6c662d5dfca8638087abab46e2002cca ); tmp_dict_key_30 = const_str_plain_separatorsfor; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_30, tmp_dict_value_30 ); Py_DECREF( tmp_dict_value_30 ); tmp_dict_value_31 = const_str_empty; tmp_dict_key_31 = const_str_plain_kwlist; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_31, tmp_dict_value_31 ); tmp_dict_value_32 = const_str_empty; tmp_dict_key_32 = const_str_plain_kwlistopt; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_32, tmp_dict_value_32 ); tmp_dict_value_33 = const_str_empty; tmp_dict_key_33 = const_str_plain_callfortran; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_33, tmp_dict_value_33 ); tmp_dict_value_34 = const_str_empty; tmp_dict_key_34 = const_str_plain_callfortranappend; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_34, tmp_dict_value_34 ); tmp_dict_value_35 = const_str_empty; tmp_dict_key_35 = const_str_plain_docsign; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_35, tmp_dict_value_35 ); tmp_dict_value_36 = const_str_empty; tmp_dict_key_36 = const_str_plain_docsignopt; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_36, tmp_dict_value_36 ); tmp_dict_value_37 = const_str_digest_40515d2f72587c8ab3dde947df85ba29; tmp_dict_key_37 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_37, tmp_dict_value_37 ); tmp_dict_value_38 = const_str_digest_b3f6b0dfc1e5717ba7333debe235669f; tmp_dict_key_38 = const_str_plain_freemem; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_38, tmp_dict_value_38 ); tmp_dict_value_39 = const_str_empty; tmp_dict_key_39 = const_str_plain_docsignshort; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_39, tmp_dict_value_39 ); tmp_dict_value_40 = const_str_empty; tmp_dict_key_40 = const_str_plain_docsignoptshort; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_40, tmp_dict_value_40 ); tmp_dict_value_41 = const_str_empty; tmp_dict_key_41 = const_str_plain_docstrsigns; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_41, tmp_dict_value_41 ); tmp_dict_value_42 = const_str_empty; tmp_dict_key_42 = const_str_plain_latexdocstrsigns; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_42, tmp_dict_value_42 ); tmp_dict_value_43 = const_str_digest_a865c075859ce91a3bff8c53a3bf5b87; tmp_dict_key_43 = const_str_plain_docstrreq; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_43, tmp_dict_value_43 ); tmp_dict_value_44 = const_str_digest_ac9267666430a3349fd1e73d1f6de0cf; tmp_dict_key_44 = const_str_plain_docstropt; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_44, tmp_dict_value_44 ); tmp_dict_value_45 = const_str_digest_19c7030524451d92c931f37fca9681ea; tmp_dict_key_45 = const_str_plain_docstrout; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_45, tmp_dict_value_45 ); tmp_dict_value_46 = const_str_digest_7cae831092e5e81c73cd70d0f405b790; tmp_dict_key_46 = const_str_plain_docstrcbs; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_46, tmp_dict_value_46 ); tmp_dict_value_47 = const_str_digest_b6844caa183c5fab60a573048a09c0ad; tmp_dict_key_47 = const_str_plain_latexdocstrreq; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_47, tmp_dict_value_47 ); tmp_dict_value_48 = const_str_digest_317310e006d319ad28824cb9258c4565; tmp_dict_key_48 = const_str_plain_latexdocstropt; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_48, tmp_dict_value_48 ); tmp_dict_value_49 = const_str_digest_6e0991fa019a9e09495ce3818d3272df; tmp_dict_key_49 = const_str_plain_latexdocstrout; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_49, tmp_dict_value_49 ); tmp_dict_value_50 = const_str_digest_a8dd00e8789d337653fd72b5c50207f2; tmp_dict_key_50 = const_str_plain_latexdocstrcbs; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_50, tmp_dict_value_50 ); tmp_dict_value_51 = const_str_empty; tmp_dict_key_51 = const_str_plain_args_capi; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_51, tmp_dict_value_51 ); tmp_dict_value_52 = const_str_empty; tmp_dict_key_52 = const_str_plain_keys_capi; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_52, tmp_dict_value_52 ); tmp_dict_value_53 = const_str_empty; tmp_dict_key_53 = const_str_plain_functype; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_53, tmp_dict_value_53 ); tmp_dict_value_54 = const_str_digest_81dd5881d0e387c3fbe39fef2c0ad42a; tmp_dict_key_54 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_54, tmp_dict_value_54 ); tmp_dict_value_55 = LIST_COPY( const_list_str_digest_6f20bfaa2efa212f61a92cbf6b7f4bf6_list ); tmp_dict_key_55 = const_str_plain_cleanupfrompyobj; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_55, tmp_dict_value_55 ); Py_DECREF( tmp_dict_value_55 ); tmp_dict_value_56 = const_str_digest_f799e499bbf79ca500ba3d987fa42361; tmp_dict_key_56 = const_str_plain_pyobjfrom; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_56, tmp_dict_value_56 ); tmp_dict_value_57 = LIST_COPY( const_list_str_digest_e4525de050bb139a277c0806fa6a7e6d_list ); tmp_dict_key_57 = const_str_plain_closepyobjfrom; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_57, tmp_dict_value_57 ); Py_DECREF( tmp_dict_value_57 ); tmp_dict_value_58 = const_str_digest_42e29578af24ea901b92843c6452c69d; tmp_dict_key_58 = const_str_plain_topyarr; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_58, tmp_dict_value_58 ); tmp_dict_value_59 = const_str_digest_d35f413d90f87685cd0ca3d921172de1; tmp_dict_key_59 = const_str_plain_routdebugleave; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_59, tmp_dict_value_59 ); tmp_dict_value_60 = const_str_digest_9553403600853c58bf2171dfdb175fd6; tmp_dict_key_60 = const_str_plain_routdebugenter; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_60, tmp_dict_value_60 ); tmp_dict_value_61 = const_str_digest_f9e489921e325b2dda9adf3026842ef7; tmp_dict_key_61 = const_str_plain_routdebugfailure; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_61, tmp_dict_value_61 ); tmp_dict_value_62 = const_str_digest_df5c6ba92426bdb1aade8d8a0f581562; tmp_dict_key_62 = const_str_plain_callfortranroutine; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_62, tmp_dict_value_62 ); tmp_dict_value_63 = const_str_empty; tmp_dict_key_63 = const_str_plain_argformat; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_63, tmp_dict_value_63 ); tmp_dict_value_64 = const_str_empty; tmp_dict_key_64 = const_str_plain_keyformat; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_64, tmp_dict_value_64 ); tmp_dict_value_65 = const_str_empty; tmp_dict_key_65 = const_str_plain_need_cfuncs; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_65, tmp_dict_value_65 ); tmp_dict_value_66 = const_str_empty; tmp_dict_key_66 = const_str_plain_docreturn; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_66, tmp_dict_value_66 ); tmp_dict_value_67 = const_str_empty; tmp_dict_key_67 = const_str_plain_return; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_67, tmp_dict_value_67 ); tmp_dict_value_68 = const_str_empty; tmp_dict_key_68 = const_str_plain_returnformat; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_68, tmp_dict_value_68 ); tmp_dict_value_69 = const_str_empty; tmp_dict_key_69 = const_str_plain_rformat; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_69, tmp_dict_value_69 ); tmp_dict_value_70 = const_str_empty; tmp_dict_key_70 = const_str_plain_kwlistxa; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_70, tmp_dict_value_70 ); tmp_dict_value_71 = const_str_empty; tmp_dict_key_71 = const_str_plain_keys_xa; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_71, tmp_dict_value_71 ); tmp_dict_value_72 = const_str_empty; tmp_dict_key_72 = const_str_plain_xaformat; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_72, tmp_dict_value_72 ); tmp_dict_value_73 = const_str_empty; tmp_dict_key_73 = const_str_plain_docsignxa; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_73, tmp_dict_value_73 ); tmp_dict_value_74 = const_str_empty; tmp_dict_key_74 = const_str_plain_docsignxashort; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_74, tmp_dict_value_74 ); tmp_dict_value_75 = const_str_empty; tmp_dict_key_75 = const_str_plain_initf2pywraphook; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_75, tmp_dict_value_75 ); tmp_dict_value_76 = _PyDict_NewPresized( 2 ); tmp_dict_value_77 = const_str_digest_2fea6faaece8b13aba5205180919cad4; tmp_dict_key_77 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasnote ); if (unlikely( tmp_dict_key_77 == NULL )) { tmp_dict_key_77 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasnote ); } if ( tmp_dict_key_77 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_76 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125485 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 376; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_76, tmp_dict_key_77, tmp_dict_value_77 ); tmp_dict_value_78 = const_str_empty; tmp_called_20 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_20 == NULL )) { tmp_called_20 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_20 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_76 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 376; goto frame_exception_exit_1; } tmp_call_arg_element_19 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasnote ); if (unlikely( tmp_call_arg_element_19 == NULL )) { tmp_call_arg_element_19 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasnote ); } if ( tmp_call_arg_element_19 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_76 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125485 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 376; goto frame_exception_exit_1; } frame_module->f_lineno = 376; tmp_dict_key_78 = CALL_FUNCTION_WITH_ARGS1( tmp_called_20, tmp_call_arg_element_19 ); if ( tmp_dict_key_78 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_76 ); frame_module->f_lineno = 376; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_76, tmp_dict_key_78, tmp_dict_value_78 ); Py_DECREF( tmp_dict_key_78 ); tmp_dict_key_76 = const_str_plain_routnote; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_76, tmp_dict_value_76 ); Py_DECREF( tmp_dict_value_76 ); PyList_SET_ITEM( tmp_assign_source_30, 0, tmp_list_element_2 ); tmp_list_element_2 = _PyDict_NewPresized( 4 ); tmp_dict_value_79 = const_str_digest_bd11a3d4509bb31d8294367664405f49; tmp_dict_key_79 = const_str_plain_apiname; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_79, tmp_dict_value_79 ); tmp_dict_value_80 = const_str_digest_a5c3694130ad6405ae4d1ac366f7f051; tmp_dict_key_80 = const_str_plain_pyname; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_80, tmp_dict_value_80 ); tmp_dict_value_81 = const_str_empty; tmp_dict_key_81 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_81, tmp_dict_value_81 ); tmp_called_21 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_21 == NULL )) { tmp_called_21 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_21 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 381; goto frame_exception_exit_1; } tmp_call_arg_element_20 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_20 == NULL )) { tmp_call_arg_element_20 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_20 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 381; goto frame_exception_exit_1; } frame_module->f_lineno = 381; tmp_dict_value_82 = CALL_FUNCTION_WITH_ARGS1( tmp_called_21, tmp_call_arg_element_20 ); if ( tmp_dict_value_82 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); frame_module->f_lineno = 381; goto frame_exception_exit_1; } tmp_dict_key_82 = const_str_plain__check; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_82, tmp_dict_value_82 ); Py_DECREF( tmp_dict_value_82 ); PyList_SET_ITEM( tmp_assign_source_30, 1, tmp_list_element_2 ); tmp_list_element_2 = _PyDict_NewPresized( 4 ); tmp_dict_value_83 = const_str_digest_ccdece3504035fa372440bbeb6311ffd; tmp_dict_key_83 = const_str_plain_apiname; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_83, tmp_dict_value_83 ); tmp_dict_value_84 = const_str_digest_c825d376812e29c9ddc6ce1ed7e3515f; tmp_dict_key_84 = const_str_plain_pyname; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_84, tmp_dict_value_84 ); tmp_dict_value_85 = const_str_empty; tmp_dict_key_85 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_85, tmp_dict_value_85 ); tmp_dict_value_86 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_dict_value_86 == NULL )) { tmp_dict_value_86 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_dict_value_86 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 386; goto frame_exception_exit_1; } tmp_dict_key_86 = const_str_plain__check; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_86, tmp_dict_value_86 ); PyList_SET_ITEM( tmp_assign_source_30, 2, tmp_list_element_2 ); tmp_list_element_2 = _PyDict_NewPresized( 6 ); tmp_dict_value_87 = const_str_plain_void; tmp_dict_key_87 = const_str_plain_functype; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_87, tmp_dict_value_87 ); tmp_dict_value_88 = _PyDict_NewPresized( 4 ); tmp_dict_value_89 = const_str_digest_b8a48d5016ebc922c843de4be3b7b3d3; tmp_called_22 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_22 == NULL )) { tmp_called_22 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_22 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 389; goto frame_exception_exit_1; } tmp_called_23 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_23 == NULL )) { tmp_called_23 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_23 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 389; goto frame_exception_exit_1; } tmp_called_24 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_24 == NULL )) { tmp_called_24 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_24 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 389; goto frame_exception_exit_1; } tmp_call_arg_element_23 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_23 == NULL )) { tmp_call_arg_element_23 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_23 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 389; goto frame_exception_exit_1; } tmp_call_arg_element_24 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_c ); if (unlikely( tmp_call_arg_element_24 == NULL )) { tmp_call_arg_element_24 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_c ); } if ( tmp_call_arg_element_24 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124212 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 389; goto frame_exception_exit_1; } frame_module->f_lineno = 389; tmp_call_arg_element_22 = CALL_FUNCTION_WITH_ARGS2( tmp_called_24, tmp_call_arg_element_23, tmp_call_arg_element_24 ); if ( tmp_call_arg_element_22 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); frame_module->f_lineno = 389; goto frame_exception_exit_1; } frame_module->f_lineno = 389; tmp_call_arg_element_21 = CALL_FUNCTION_WITH_ARGS1( tmp_called_23, tmp_call_arg_element_22 ); Py_DECREF( tmp_call_arg_element_22 ); if ( tmp_call_arg_element_21 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); frame_module->f_lineno = 389; goto frame_exception_exit_1; } tmp_called_25 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_25 == NULL )) { tmp_called_25 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_25 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); Py_DECREF( tmp_call_arg_element_21 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 389; goto frame_exception_exit_1; } tmp_call_arg_element_26 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_26 == NULL )) { tmp_call_arg_element_26 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_26 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); Py_DECREF( tmp_call_arg_element_21 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 389; goto frame_exception_exit_1; } frame_module->f_lineno = 389; tmp_call_arg_element_25 = CALL_FUNCTION_WITH_ARGS1( tmp_called_25, tmp_call_arg_element_26 ); if ( tmp_call_arg_element_25 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); Py_DECREF( tmp_call_arg_element_21 ); frame_module->f_lineno = 389; goto frame_exception_exit_1; } frame_module->f_lineno = 389; tmp_dict_key_89 = CALL_FUNCTION_WITH_ARGS2( tmp_called_22, tmp_call_arg_element_21, tmp_call_arg_element_25 ); Py_DECREF( tmp_call_arg_element_21 ); Py_DECREF( tmp_call_arg_element_25 ); if ( tmp_dict_key_89 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); frame_module->f_lineno = 389; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_88, tmp_dict_key_89, tmp_dict_value_89 ); Py_DECREF( tmp_dict_key_89 ); tmp_dict_value_90 = const_str_digest_2bfab3a3bf25bd01b8093743c94c68c6; tmp_called_26 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_26 == NULL )) { tmp_called_26 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_26 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 390; goto frame_exception_exit_1; } tmp_called_27 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_27 == NULL )) { tmp_called_27 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_27 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 390; goto frame_exception_exit_1; } tmp_call_arg_element_28 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_28 == NULL )) { tmp_call_arg_element_28 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_28 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 390; goto frame_exception_exit_1; } frame_module->f_lineno = 390; tmp_call_arg_element_27 = CALL_FUNCTION_WITH_ARGS1( tmp_called_27, tmp_call_arg_element_28 ); if ( tmp_call_arg_element_27 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); frame_module->f_lineno = 390; goto frame_exception_exit_1; } tmp_call_arg_element_29 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_c ); if (unlikely( tmp_call_arg_element_29 == NULL )) { tmp_call_arg_element_29 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_c ); } if ( tmp_call_arg_element_29 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); Py_DECREF( tmp_call_arg_element_27 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124212 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 390; goto frame_exception_exit_1; } tmp_called_28 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_28 == NULL )) { tmp_called_28 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_28 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); Py_DECREF( tmp_call_arg_element_27 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 390; goto frame_exception_exit_1; } tmp_call_arg_element_31 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_31 == NULL )) { tmp_call_arg_element_31 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_31 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); Py_DECREF( tmp_call_arg_element_27 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 390; goto frame_exception_exit_1; } frame_module->f_lineno = 390; tmp_call_arg_element_30 = CALL_FUNCTION_WITH_ARGS1( tmp_called_28, tmp_call_arg_element_31 ); if ( tmp_call_arg_element_30 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); Py_DECREF( tmp_call_arg_element_27 ); frame_module->f_lineno = 390; goto frame_exception_exit_1; } frame_module->f_lineno = 390; tmp_dict_key_90 = CALL_FUNCTION_WITH_ARGS3( tmp_called_26, tmp_call_arg_element_27, tmp_call_arg_element_29, tmp_call_arg_element_30 ); Py_DECREF( tmp_call_arg_element_27 ); Py_DECREF( tmp_call_arg_element_30 ); if ( tmp_dict_key_90 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); frame_module->f_lineno = 390; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_88, tmp_dict_key_90, tmp_dict_value_90 ); Py_DECREF( tmp_dict_key_90 ); tmp_dict_value_91 = const_str_empty; tmp_dict_key_91 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_dict_key_91 == NULL )) { tmp_dict_key_91 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_dict_key_91 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 391; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_88, tmp_dict_key_91, tmp_dict_value_91 ); tmp_dict_value_92 = const_str_empty; tmp_dict_key_92 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_dict_key_92 == NULL )) { tmp_dict_key_92 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_dict_key_92 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_88 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 392; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_88, tmp_dict_key_92, tmp_dict_value_92 ); tmp_dict_key_88 = const_str_plain_declfortranroutine; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_88, tmp_dict_value_88 ); Py_DECREF( tmp_dict_value_88 ); tmp_dict_value_93 = _PyDict_NewPresized( 3 ); tmp_dict_value_94 = const_str_digest_cf71de3f9023718c59bbed5c352d152c; tmp_called_29 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_29 == NULL )) { tmp_called_29 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_29 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 394; goto frame_exception_exit_1; } tmp_called_30 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_30 == NULL )) { tmp_called_30 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_30 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 394; goto frame_exception_exit_1; } tmp_call_arg_element_33 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_33 == NULL )) { tmp_call_arg_element_33 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_33 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 394; goto frame_exception_exit_1; } tmp_call_arg_element_34 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_c ); if (unlikely( tmp_call_arg_element_34 == NULL )) { tmp_call_arg_element_34 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_c ); } if ( tmp_call_arg_element_34 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124212 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 394; goto frame_exception_exit_1; } tmp_call_arg_element_35 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_35 == NULL )) { tmp_call_arg_element_35 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_35 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 394; goto frame_exception_exit_1; } frame_module->f_lineno = 394; tmp_call_arg_element_32 = CALL_FUNCTION_WITH_ARGS3( tmp_called_30, tmp_call_arg_element_33, tmp_call_arg_element_34, tmp_call_arg_element_35 ); if ( tmp_call_arg_element_32 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); frame_module->f_lineno = 394; goto frame_exception_exit_1; } frame_module->f_lineno = 394; tmp_dict_key_94 = CALL_FUNCTION_WITH_ARGS1( tmp_called_29, tmp_call_arg_element_32 ); Py_DECREF( tmp_call_arg_element_32 ); if ( tmp_dict_key_94 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); frame_module->f_lineno = 394; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_93, tmp_dict_key_94, tmp_dict_value_94 ); Py_DECREF( tmp_dict_key_94 ); tmp_dict_value_95 = const_str_digest_ee4b6cfd909f1956d8f9cdb9d88a8e33; tmp_called_31 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_31 == NULL )) { tmp_called_31 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_31 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 395; goto frame_exception_exit_1; } tmp_called_32 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_32 == NULL )) { tmp_called_32 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_32 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 395; goto frame_exception_exit_1; } tmp_call_arg_element_37 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_37 == NULL )) { tmp_call_arg_element_37 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_37 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 395; goto frame_exception_exit_1; } frame_module->f_lineno = 395; tmp_call_arg_element_36 = CALL_FUNCTION_WITH_ARGS1( tmp_called_32, tmp_call_arg_element_37 ); if ( tmp_call_arg_element_36 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); frame_module->f_lineno = 395; goto frame_exception_exit_1; } tmp_call_arg_element_38 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_c ); if (unlikely( tmp_call_arg_element_38 == NULL )) { tmp_call_arg_element_38 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_c ); } if ( tmp_call_arg_element_38 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); Py_DECREF( tmp_call_arg_element_36 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124212 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 395; goto frame_exception_exit_1; } tmp_called_33 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_33 == NULL )) { tmp_called_33 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_33 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); Py_DECREF( tmp_call_arg_element_36 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 395; goto frame_exception_exit_1; } tmp_call_arg_element_40 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_40 == NULL )) { tmp_call_arg_element_40 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_40 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); Py_DECREF( tmp_call_arg_element_36 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 395; goto frame_exception_exit_1; } frame_module->f_lineno = 395; tmp_call_arg_element_39 = CALL_FUNCTION_WITH_ARGS1( tmp_called_33, tmp_call_arg_element_40 ); if ( tmp_call_arg_element_39 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); Py_DECREF( tmp_call_arg_element_36 ); frame_module->f_lineno = 395; goto frame_exception_exit_1; } frame_module->f_lineno = 395; tmp_dict_key_95 = CALL_FUNCTION_WITH_ARGS3( tmp_called_31, tmp_call_arg_element_36, tmp_call_arg_element_38, tmp_call_arg_element_39 ); Py_DECREF( tmp_call_arg_element_36 ); Py_DECREF( tmp_call_arg_element_39 ); if ( tmp_dict_key_95 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); frame_module->f_lineno = 395; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_93, tmp_dict_key_95, tmp_dict_value_95 ); Py_DECREF( tmp_dict_key_95 ); tmp_dict_value_96 = const_str_digest_55456c681709cce09c41f6b5c4c09b6c; tmp_called_34 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_34 == NULL )) { tmp_called_34 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_34 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 396; goto frame_exception_exit_1; } tmp_called_35 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_35 == NULL )) { tmp_called_35 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_35 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 396; goto frame_exception_exit_1; } tmp_call_arg_element_42 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_42 == NULL )) { tmp_call_arg_element_42 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_42 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 396; goto frame_exception_exit_1; } frame_module->f_lineno = 396; tmp_call_arg_element_41 = CALL_FUNCTION_WITH_ARGS1( tmp_called_35, tmp_call_arg_element_42 ); if ( tmp_call_arg_element_41 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); frame_module->f_lineno = 396; goto frame_exception_exit_1; } tmp_call_arg_element_43 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_43 == NULL )) { tmp_call_arg_element_43 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_43 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); Py_DECREF( tmp_call_arg_element_41 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 396; goto frame_exception_exit_1; } frame_module->f_lineno = 396; tmp_dict_key_96 = CALL_FUNCTION_WITH_ARGS2( tmp_called_34, tmp_call_arg_element_41, tmp_call_arg_element_43 ); Py_DECREF( tmp_call_arg_element_41 ); if ( tmp_dict_key_96 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_93 ); frame_module->f_lineno = 396; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_93, tmp_dict_key_96, tmp_dict_value_96 ); Py_DECREF( tmp_dict_key_96 ); tmp_dict_key_93 = const_str_plain_routine_def; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_93, tmp_dict_value_93 ); Py_DECREF( tmp_dict_value_93 ); tmp_dict_value_97 = _PyDict_NewPresized( 1 ); tmp_dict_value_98 = const_str_plain_F_FUNC; tmp_called_36 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_36 == NULL )) { tmp_called_36 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_36 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_97 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 398; goto frame_exception_exit_1; } tmp_called_37 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_37 == NULL )) { tmp_called_37 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_37 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_97 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 398; goto frame_exception_exit_1; } tmp_called_38 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_38 == NULL )) { tmp_called_38 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_38 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_97 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 398; goto frame_exception_exit_1; } tmp_call_arg_element_46 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_46 == NULL )) { tmp_call_arg_element_46 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_46 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_97 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 398; goto frame_exception_exit_1; } tmp_call_arg_element_47 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_c ); if (unlikely( tmp_call_arg_element_47 == NULL )) { tmp_call_arg_element_47 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_c ); } if ( tmp_call_arg_element_47 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_97 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124212 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 398; goto frame_exception_exit_1; } frame_module->f_lineno = 398; tmp_call_arg_element_45 = CALL_FUNCTION_WITH_ARGS2( tmp_called_38, tmp_call_arg_element_46, tmp_call_arg_element_47 ); if ( tmp_call_arg_element_45 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_97 ); frame_module->f_lineno = 398; goto frame_exception_exit_1; } frame_module->f_lineno = 398; tmp_call_arg_element_44 = CALL_FUNCTION_WITH_ARGS1( tmp_called_37, tmp_call_arg_element_45 ); Py_DECREF( tmp_call_arg_element_45 ); if ( tmp_call_arg_element_44 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_97 ); frame_module->f_lineno = 398; goto frame_exception_exit_1; } tmp_called_39 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_39 == NULL )) { tmp_called_39 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_39 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_97 ); Py_DECREF( tmp_call_arg_element_44 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 398; goto frame_exception_exit_1; } tmp_call_arg_element_49 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_49 == NULL )) { tmp_call_arg_element_49 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_49 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_97 ); Py_DECREF( tmp_call_arg_element_44 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 398; goto frame_exception_exit_1; } frame_module->f_lineno = 398; tmp_call_arg_element_48 = CALL_FUNCTION_WITH_ARGS1( tmp_called_39, tmp_call_arg_element_49 ); if ( tmp_call_arg_element_48 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_97 ); Py_DECREF( tmp_call_arg_element_44 ); frame_module->f_lineno = 398; goto frame_exception_exit_1; } frame_module->f_lineno = 398; tmp_dict_key_98 = CALL_FUNCTION_WITH_ARGS2( tmp_called_36, tmp_call_arg_element_44, tmp_call_arg_element_48 ); Py_DECREF( tmp_call_arg_element_44 ); Py_DECREF( tmp_call_arg_element_48 ); if ( tmp_dict_key_98 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_97 ); frame_module->f_lineno = 398; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_97, tmp_dict_key_98, tmp_dict_value_98 ); Py_DECREF( tmp_dict_key_98 ); tmp_dict_key_97 = const_str_plain_need; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_97, tmp_dict_value_97 ); Py_DECREF( tmp_dict_value_97 ); tmp_dict_value_99 = PyList_New( 7 ); tmp_list_element_3 = _PyDict_NewPresized( 1 ); tmp_dict_value_100 = LIST_COPY( const_list_str_digest_6bbbfb5feaca7cb532b036a03f1876bc_list ); tmp_dict_key_100 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_dict_key_100 == NULL )) { tmp_dict_key_100 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_dict_key_100 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_99 ); Py_DECREF( tmp_list_element_3 ); Py_DECREF( tmp_dict_value_100 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 400; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_3, tmp_dict_key_100, tmp_dict_value_100 ); Py_DECREF( tmp_dict_value_100 ); PyList_SET_ITEM( tmp_dict_value_99, 0, tmp_list_element_3 ); tmp_list_element_3 = _PyDict_NewPresized( 1 ); tmp_dict_value_101 = const_str_digest_94f7eeb67070e06cba40225d7f6dac94; tmp_dict_key_101 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasexternals ); if (unlikely( tmp_dict_key_101 == NULL )) { tmp_dict_key_101 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasexternals ); } if ( tmp_dict_key_101 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_99 ); Py_DECREF( tmp_list_element_3 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150818 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 401; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_3, tmp_dict_key_101, tmp_dict_value_101 ); PyList_SET_ITEM( tmp_dict_value_99, 1, tmp_list_element_3 ); tmp_list_element_3 = _PyDict_NewPresized( 1 ); tmp_dict_value_102 = const_str_digest_f69e5c82471da4a14868bf6c3579cdb5; tmp_dict_key_102 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); if (unlikely( tmp_dict_key_102 == NULL )) { tmp_dict_key_102 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); } if ( tmp_dict_key_102 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_99 ); Py_DECREF( tmp_list_element_3 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150852 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 405; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_3, tmp_dict_key_102, tmp_dict_value_102 ); PyList_SET_ITEM( tmp_dict_value_99, 2, tmp_list_element_3 ); tmp_list_element_3 = _PyDict_NewPresized( 1 ); tmp_dict_value_103 = const_str_digest_ec3b7568b05b17898a1cfc5552eb0db7; tmp_dict_key_103 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hascallstatement ); if (unlikely( tmp_dict_key_103 == NULL )) { tmp_dict_key_103 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hascallstatement ); } if ( tmp_dict_key_103 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_99 ); Py_DECREF( tmp_list_element_3 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126092 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 406; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_3, tmp_dict_key_103, tmp_dict_value_103 ); PyList_SET_ITEM( tmp_dict_value_99, 3, tmp_list_element_3 ); tmp_list_element_3 = _PyDict_NewPresized( 1 ); tmp_dict_value_104 = const_str_digest_530550da2a0c86c4126b4c4a02177517; tmp_called_40 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_40 == NULL )) { tmp_called_40 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_40 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_99 ); Py_DECREF( tmp_list_element_3 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 408; goto frame_exception_exit_1; } tmp_called_41 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_41 == NULL )) { tmp_called_41 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_41 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_99 ); Py_DECREF( tmp_list_element_3 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 408; goto frame_exception_exit_1; } tmp_call_arg_element_51 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hascallstatement ); if (unlikely( tmp_call_arg_element_51 == NULL )) { tmp_call_arg_element_51 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hascallstatement ); } if ( tmp_call_arg_element_51 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_99 ); Py_DECREF( tmp_list_element_3 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126092 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 408; goto frame_exception_exit_1; } tmp_call_arg_element_52 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_52 == NULL )) { tmp_call_arg_element_52 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_52 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_99 ); Py_DECREF( tmp_list_element_3 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 408; goto frame_exception_exit_1; } frame_module->f_lineno = 408; tmp_call_arg_element_50 = CALL_FUNCTION_WITH_ARGS2( tmp_called_41, tmp_call_arg_element_51, tmp_call_arg_element_52 ); if ( tmp_call_arg_element_50 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_99 ); Py_DECREF( tmp_list_element_3 ); frame_module->f_lineno = 408; goto frame_exception_exit_1; } frame_module->f_lineno = 408; tmp_dict_key_104 = CALL_FUNCTION_WITH_ARGS1( tmp_called_40, tmp_call_arg_element_50 ); Py_DECREF( tmp_call_arg_element_50 ); if ( tmp_dict_key_104 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_99 ); Py_DECREF( tmp_list_element_3 ); frame_module->f_lineno = 408; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_3, tmp_dict_key_104, tmp_dict_value_104 ); Py_DECREF( tmp_dict_key_104 ); PyList_SET_ITEM( tmp_dict_value_99, 4, tmp_list_element_3 ); tmp_list_element_3 = _PyDict_NewPresized( 1 ); tmp_dict_value_105 = const_str_digest_77eeebb839755066d58a587211ae9b65; tmp_dict_key_105 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); if (unlikely( tmp_dict_key_105 == NULL )) { tmp_dict_key_105 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); } if ( tmp_dict_key_105 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_99 ); Py_DECREF( tmp_list_element_3 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150852 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 409; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_3, tmp_dict_key_105, tmp_dict_value_105 ); PyList_SET_ITEM( tmp_dict_value_99, 5, tmp_list_element_3 ); tmp_list_element_3 = _PyDict_NewPresized( 1 ); tmp_dict_value_106 = const_str_digest_6c41c39826425526467cf3e430a77c15; tmp_dict_key_106 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasexternals ); if (unlikely( tmp_dict_key_106 == NULL )) { tmp_dict_key_106 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasexternals ); } if ( tmp_dict_key_106 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_99 ); Py_DECREF( tmp_list_element_3 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150818 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 410; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_3, tmp_dict_key_106, tmp_dict_value_106 ); PyList_SET_ITEM( tmp_dict_value_99, 6, tmp_list_element_3 ); tmp_dict_key_99 = const_str_plain_callfortranroutine; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_99, tmp_dict_value_99 ); Py_DECREF( tmp_dict_value_99 ); tmp_called_42 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_42 == NULL )) { tmp_called_42 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_42 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 412; goto frame_exception_exit_1; } tmp_call_arg_element_53 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_issubroutine ); if (unlikely( tmp_call_arg_element_53 == NULL )) { tmp_call_arg_element_53 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_issubroutine ); } if ( tmp_call_arg_element_53 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124910 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 412; goto frame_exception_exit_1; } tmp_called_43 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_43 == NULL )) { tmp_called_43 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_43 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 412; goto frame_exception_exit_1; } tmp_call_arg_element_55 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_issubroutine_wrap ); if (unlikely( tmp_call_arg_element_55 == NULL )) { tmp_call_arg_element_55 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_issubroutine_wrap ); } if ( tmp_call_arg_element_55 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150668 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 412; goto frame_exception_exit_1; } frame_module->f_lineno = 412; tmp_call_arg_element_54 = CALL_FUNCTION_WITH_ARGS1( tmp_called_43, tmp_call_arg_element_55 ); if ( tmp_call_arg_element_54 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); frame_module->f_lineno = 412; goto frame_exception_exit_1; } frame_module->f_lineno = 412; tmp_dict_value_107 = CALL_FUNCTION_WITH_ARGS2( tmp_called_42, tmp_call_arg_element_53, tmp_call_arg_element_54 ); Py_DECREF( tmp_call_arg_element_54 ); if ( tmp_dict_value_107 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); frame_module->f_lineno = 412; goto frame_exception_exit_1; } tmp_dict_key_107 = const_str_plain__check; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_107, tmp_dict_value_107 ); Py_DECREF( tmp_dict_value_107 ); PyList_SET_ITEM( tmp_assign_source_30, 3, tmp_list_element_2 ); tmp_list_element_2 = _PyDict_NewPresized( 7 ); tmp_dict_value_108 = const_str_plain_void; tmp_dict_key_108 = const_str_plain_functype; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_108, tmp_dict_value_108 ); tmp_dict_value_109 = _PyDict_NewPresized( 2 ); tmp_dict_value_110 = const_str_digest_103f7cae04ee1c2adcfe2b30f8ef4e52; tmp_called_44 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_44 == NULL )) { tmp_called_44 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_44 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_109 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 415; goto frame_exception_exit_1; } tmp_called_45 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_45 == NULL )) { tmp_called_45 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_45 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_109 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 415; goto frame_exception_exit_1; } tmp_call_arg_element_57 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_57 == NULL )) { tmp_call_arg_element_57 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_57 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_109 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 415; goto frame_exception_exit_1; } tmp_call_arg_element_58 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_58 == NULL )) { tmp_call_arg_element_58 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_58 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_109 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 415; goto frame_exception_exit_1; } frame_module->f_lineno = 415; tmp_call_arg_element_56 = CALL_FUNCTION_WITH_ARGS2( tmp_called_45, tmp_call_arg_element_57, tmp_call_arg_element_58 ); if ( tmp_call_arg_element_56 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_109 ); frame_module->f_lineno = 415; goto frame_exception_exit_1; } frame_module->f_lineno = 415; tmp_dict_key_110 = CALL_FUNCTION_WITH_ARGS1( tmp_called_44, tmp_call_arg_element_56 ); Py_DECREF( tmp_call_arg_element_56 ); if ( tmp_dict_key_110 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_109 ); frame_module->f_lineno = 415; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_109, tmp_dict_key_110, tmp_dict_value_110 ); Py_DECREF( tmp_dict_key_110 ); tmp_dict_value_111 = const_str_empty; tmp_dict_key_111 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_dict_key_111 == NULL )) { tmp_dict_key_111 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_dict_key_111 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_109 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 416; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_109, tmp_dict_key_111, tmp_dict_value_111 ); tmp_dict_key_109 = const_str_plain_declfortranroutine; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_109, tmp_dict_value_109 ); Py_DECREF( tmp_dict_value_109 ); tmp_dict_value_112 = _PyDict_NewPresized( 2 ); tmp_dict_value_113 = const_str_digest_e22f20bbcc3464586bae117166898e42; tmp_called_46 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_46 == NULL )) { tmp_called_46 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_46 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_112 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 419; goto frame_exception_exit_1; } tmp_called_47 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_47 == NULL )) { tmp_called_47 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_47 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_112 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 419; goto frame_exception_exit_1; } tmp_call_arg_element_60 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_60 == NULL )) { tmp_call_arg_element_60 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_60 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_112 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 419; goto frame_exception_exit_1; } tmp_call_arg_element_61 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_61 == NULL )) { tmp_call_arg_element_61 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_61 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_112 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 419; goto frame_exception_exit_1; } frame_module->f_lineno = 419; tmp_call_arg_element_59 = CALL_FUNCTION_WITH_ARGS2( tmp_called_47, tmp_call_arg_element_60, tmp_call_arg_element_61 ); if ( tmp_call_arg_element_59 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_112 ); frame_module->f_lineno = 419; goto frame_exception_exit_1; } frame_module->f_lineno = 419; tmp_dict_key_113 = CALL_FUNCTION_WITH_ARGS1( tmp_called_46, tmp_call_arg_element_59 ); Py_DECREF( tmp_call_arg_element_59 ); if ( tmp_dict_key_113 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_112 ); frame_module->f_lineno = 419; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_112, tmp_dict_key_113, tmp_dict_value_113 ); Py_DECREF( tmp_dict_key_113 ); tmp_dict_value_114 = const_str_digest_55456c681709cce09c41f6b5c4c09b6c; tmp_dict_key_114 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_dict_key_114 == NULL )) { tmp_dict_key_114 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_dict_key_114 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_112 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 420; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_112, tmp_dict_key_114, tmp_dict_value_114 ); tmp_dict_key_112 = const_str_plain_routine_def; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_112, tmp_dict_value_112 ); Py_DECREF( tmp_dict_value_112 ); tmp_dict_value_115 = _PyDict_NewPresized( 1 ); tmp_dict_value_116 = const_str_digest_a731efdfc52bda74c8042706da39e402; tmp_called_48 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_48 == NULL )) { tmp_called_48 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_48 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_115 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 422; goto frame_exception_exit_1; } tmp_called_49 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_49 == NULL )) { tmp_called_49 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_49 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_115 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 422; goto frame_exception_exit_1; } tmp_call_arg_element_63 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_63 == NULL )) { tmp_call_arg_element_63 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_63 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_115 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 422; goto frame_exception_exit_1; } tmp_call_arg_element_64 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_64 == NULL )) { tmp_call_arg_element_64 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_64 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_115 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 422; goto frame_exception_exit_1; } frame_module->f_lineno = 422; tmp_call_arg_element_62 = CALL_FUNCTION_WITH_ARGS2( tmp_called_49, tmp_call_arg_element_63, tmp_call_arg_element_64 ); if ( tmp_call_arg_element_62 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_115 ); frame_module->f_lineno = 422; goto frame_exception_exit_1; } frame_module->f_lineno = 422; tmp_dict_key_116 = CALL_FUNCTION_WITH_ARGS1( tmp_called_48, tmp_call_arg_element_62 ); Py_DECREF( tmp_call_arg_element_62 ); if ( tmp_dict_key_116 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_115 ); frame_module->f_lineno = 422; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_115, tmp_dict_key_116, tmp_dict_value_116 ); Py_DECREF( tmp_dict_key_116 ); tmp_dict_key_115 = const_str_plain_initf2pywraphook; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_115, tmp_dict_value_115 ); Py_DECREF( tmp_dict_value_115 ); tmp_dict_value_117 = _PyDict_NewPresized( 1 ); tmp_dict_value_118 = LIST_COPY( const_list_str_plain_F_WRAPPEDFUNC_str_plain_F_FUNC_list ); tmp_called_50 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_50 == NULL )) { tmp_called_50 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_50 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_117 ); Py_DECREF( tmp_dict_value_118 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 434; goto frame_exception_exit_1; } tmp_called_51 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_51 == NULL )) { tmp_called_51 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_51 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_117 ); Py_DECREF( tmp_dict_value_118 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 434; goto frame_exception_exit_1; } tmp_call_arg_element_66 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_66 == NULL )) { tmp_call_arg_element_66 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_66 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_117 ); Py_DECREF( tmp_dict_value_118 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 434; goto frame_exception_exit_1; } tmp_call_arg_element_67 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_67 == NULL )) { tmp_call_arg_element_67 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_67 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_117 ); Py_DECREF( tmp_dict_value_118 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 434; goto frame_exception_exit_1; } frame_module->f_lineno = 434; tmp_call_arg_element_65 = CALL_FUNCTION_WITH_ARGS2( tmp_called_51, tmp_call_arg_element_66, tmp_call_arg_element_67 ); if ( tmp_call_arg_element_65 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_117 ); Py_DECREF( tmp_dict_value_118 ); frame_module->f_lineno = 434; goto frame_exception_exit_1; } frame_module->f_lineno = 434; tmp_dict_key_118 = CALL_FUNCTION_WITH_ARGS1( tmp_called_50, tmp_call_arg_element_65 ); Py_DECREF( tmp_call_arg_element_65 ); if ( tmp_dict_key_118 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_117 ); Py_DECREF( tmp_dict_value_118 ); frame_module->f_lineno = 434; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_117, tmp_dict_key_118, tmp_dict_value_118 ); Py_DECREF( tmp_dict_value_118 ); Py_DECREF( tmp_dict_key_118 ); tmp_dict_key_117 = const_str_plain_need; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_117, tmp_dict_value_117 ); Py_DECREF( tmp_dict_value_117 ); tmp_dict_value_119 = PyList_New( 7 ); tmp_list_element_4 = _PyDict_NewPresized( 1 ); tmp_dict_value_120 = LIST_COPY( const_list_str_digest_e37d7173ff6f9aaa416640aafbac950b_list ); tmp_dict_key_120 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_dict_key_120 == NULL )) { tmp_dict_key_120 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_dict_key_120 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_119 ); Py_DECREF( tmp_list_element_4 ); Py_DECREF( tmp_dict_value_120 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 436; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_4, tmp_dict_key_120, tmp_dict_value_120 ); Py_DECREF( tmp_dict_value_120 ); PyList_SET_ITEM( tmp_dict_value_119, 0, tmp_list_element_4 ); tmp_list_element_4 = _PyDict_NewPresized( 1 ); tmp_dict_value_121 = const_str_digest_b8bcf6698fa55a1cf1fc5eaebffde12d; tmp_dict_key_121 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasexternals ); if (unlikely( tmp_dict_key_121 == NULL )) { tmp_dict_key_121 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasexternals ); } if ( tmp_dict_key_121 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_119 ); Py_DECREF( tmp_list_element_4 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150818 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 437; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_4, tmp_dict_key_121, tmp_dict_value_121 ); PyList_SET_ITEM( tmp_dict_value_119, 1, tmp_list_element_4 ); tmp_list_element_4 = _PyDict_NewPresized( 1 ); tmp_dict_value_122 = const_str_digest_18429b2363d61bb45e6f19ee193369c0; tmp_dict_key_122 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); if (unlikely( tmp_dict_key_122 == NULL )) { tmp_dict_key_122 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); } if ( tmp_dict_key_122 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_119 ); Py_DECREF( tmp_list_element_4 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150852 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 441; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_4, tmp_dict_key_122, tmp_dict_value_122 ); PyList_SET_ITEM( tmp_dict_value_119, 2, tmp_list_element_4 ); tmp_list_element_4 = _PyDict_NewPresized( 1 ); tmp_dict_value_123 = const_str_digest_c3ae46c3d5576e352b30a35cef03a879; tmp_called_52 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_52 == NULL )) { tmp_called_52 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_52 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_119 ); Py_DECREF( tmp_list_element_4 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 442; goto frame_exception_exit_1; } tmp_called_53 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_53 == NULL )) { tmp_called_53 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_53 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_119 ); Py_DECREF( tmp_list_element_4 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 442; goto frame_exception_exit_1; } tmp_call_arg_element_69 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hascallstatement ); if (unlikely( tmp_call_arg_element_69 == NULL )) { tmp_call_arg_element_69 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hascallstatement ); } if ( tmp_call_arg_element_69 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_119 ); Py_DECREF( tmp_list_element_4 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126092 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 442; goto frame_exception_exit_1; } tmp_call_arg_element_70 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_70 == NULL )) { tmp_call_arg_element_70 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_70 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_119 ); Py_DECREF( tmp_list_element_4 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 442; goto frame_exception_exit_1; } frame_module->f_lineno = 442; tmp_call_arg_element_68 = CALL_FUNCTION_WITH_ARGS2( tmp_called_53, tmp_call_arg_element_69, tmp_call_arg_element_70 ); if ( tmp_call_arg_element_68 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_119 ); Py_DECREF( tmp_list_element_4 ); frame_module->f_lineno = 442; goto frame_exception_exit_1; } frame_module->f_lineno = 442; tmp_dict_key_123 = CALL_FUNCTION_WITH_ARGS1( tmp_called_52, tmp_call_arg_element_68 ); Py_DECREF( tmp_call_arg_element_68 ); if ( tmp_dict_key_123 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_119 ); Py_DECREF( tmp_list_element_4 ); frame_module->f_lineno = 442; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_4, tmp_dict_key_123, tmp_dict_value_123 ); Py_DECREF( tmp_dict_key_123 ); PyList_SET_ITEM( tmp_dict_value_119, 3, tmp_list_element_4 ); tmp_list_element_4 = _PyDict_NewPresized( 1 ); tmp_dict_value_124 = const_str_digest_1422ad36fc74e5255a7c794563fb3843; tmp_dict_key_124 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hascallstatement ); if (unlikely( tmp_dict_key_124 == NULL )) { tmp_dict_key_124 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hascallstatement ); } if ( tmp_dict_key_124 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_119 ); Py_DECREF( tmp_list_element_4 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126092 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 443; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_4, tmp_dict_key_124, tmp_dict_value_124 ); PyList_SET_ITEM( tmp_dict_value_119, 4, tmp_list_element_4 ); tmp_list_element_4 = _PyDict_NewPresized( 1 ); tmp_dict_value_125 = const_str_digest_a1b947d4348c132103b0fcc2930bd1fa; tmp_dict_key_125 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); if (unlikely( tmp_dict_key_125 == NULL )) { tmp_dict_key_125 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); } if ( tmp_dict_key_125 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_119 ); Py_DECREF( tmp_list_element_4 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150852 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 444; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_4, tmp_dict_key_125, tmp_dict_value_125 ); PyList_SET_ITEM( tmp_dict_value_119, 5, tmp_list_element_4 ); tmp_list_element_4 = _PyDict_NewPresized( 1 ); tmp_dict_value_126 = const_str_digest_003412ca7c035dda44b06c662ca81aa5; tmp_dict_key_126 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasexternals ); if (unlikely( tmp_dict_key_126 == NULL )) { tmp_dict_key_126 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasexternals ); } if ( tmp_dict_key_126 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_119 ); Py_DECREF( tmp_list_element_4 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150818 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 445; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_4, tmp_dict_key_126, tmp_dict_value_126 ); PyList_SET_ITEM( tmp_dict_value_119, 6, tmp_list_element_4 ); tmp_dict_key_119 = const_str_plain_callfortranroutine; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_119, tmp_dict_value_119 ); Py_DECREF( tmp_dict_value_119 ); tmp_dict_value_127 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isfunction_wrap ); if (unlikely( tmp_dict_value_127 == NULL )) { tmp_dict_value_127 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isfunction_wrap ); } if ( tmp_dict_value_127 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126250 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 447; goto frame_exception_exit_1; } tmp_dict_key_127 = const_str_plain__check; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_127, tmp_dict_value_127 ); PyList_SET_ITEM( tmp_assign_source_30, 4, tmp_list_element_2 ); tmp_list_element_2 = _PyDict_NewPresized( 7 ); tmp_dict_value_128 = const_str_plain_void; tmp_dict_key_128 = const_str_plain_functype; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_128, tmp_dict_value_128 ); tmp_dict_value_129 = _PyDict_NewPresized( 2 ); tmp_dict_value_130 = const_str_digest_103f7cae04ee1c2adcfe2b30f8ef4e52; tmp_called_54 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_54 == NULL )) { tmp_called_54 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_54 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_129 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 450; goto frame_exception_exit_1; } tmp_called_55 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_55 == NULL )) { tmp_called_55 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_55 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_129 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 450; goto frame_exception_exit_1; } tmp_call_arg_element_72 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_72 == NULL )) { tmp_call_arg_element_72 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_72 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_129 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 450; goto frame_exception_exit_1; } tmp_call_arg_element_73 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_73 == NULL )) { tmp_call_arg_element_73 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_73 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_129 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 450; goto frame_exception_exit_1; } frame_module->f_lineno = 450; tmp_call_arg_element_71 = CALL_FUNCTION_WITH_ARGS2( tmp_called_55, tmp_call_arg_element_72, tmp_call_arg_element_73 ); if ( tmp_call_arg_element_71 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_129 ); frame_module->f_lineno = 450; goto frame_exception_exit_1; } frame_module->f_lineno = 450; tmp_dict_key_130 = CALL_FUNCTION_WITH_ARGS1( tmp_called_54, tmp_call_arg_element_71 ); Py_DECREF( tmp_call_arg_element_71 ); if ( tmp_dict_key_130 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_129 ); frame_module->f_lineno = 450; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_129, tmp_dict_key_130, tmp_dict_value_130 ); Py_DECREF( tmp_dict_key_130 ); tmp_dict_value_131 = const_str_empty; tmp_dict_key_131 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_dict_key_131 == NULL )) { tmp_dict_key_131 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_dict_key_131 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_129 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 451; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_129, tmp_dict_key_131, tmp_dict_value_131 ); tmp_dict_key_129 = const_str_plain_declfortranroutine; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_129, tmp_dict_value_129 ); Py_DECREF( tmp_dict_value_129 ); tmp_dict_value_132 = _PyDict_NewPresized( 2 ); tmp_dict_value_133 = const_str_digest_e22f20bbcc3464586bae117166898e42; tmp_called_56 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_56 == NULL )) { tmp_called_56 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_56 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_132 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 454; goto frame_exception_exit_1; } tmp_called_57 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_57 == NULL )) { tmp_called_57 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_57 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_132 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 454; goto frame_exception_exit_1; } tmp_call_arg_element_75 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_75 == NULL )) { tmp_call_arg_element_75 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_75 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_132 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 454; goto frame_exception_exit_1; } tmp_call_arg_element_76 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_76 == NULL )) { tmp_call_arg_element_76 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_76 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_132 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 454; goto frame_exception_exit_1; } frame_module->f_lineno = 454; tmp_call_arg_element_74 = CALL_FUNCTION_WITH_ARGS2( tmp_called_57, tmp_call_arg_element_75, tmp_call_arg_element_76 ); if ( tmp_call_arg_element_74 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_132 ); frame_module->f_lineno = 454; goto frame_exception_exit_1; } frame_module->f_lineno = 454; tmp_dict_key_133 = CALL_FUNCTION_WITH_ARGS1( tmp_called_56, tmp_call_arg_element_74 ); Py_DECREF( tmp_call_arg_element_74 ); if ( tmp_dict_key_133 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_132 ); frame_module->f_lineno = 454; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_132, tmp_dict_key_133, tmp_dict_value_133 ); Py_DECREF( tmp_dict_key_133 ); tmp_dict_value_134 = const_str_digest_55456c681709cce09c41f6b5c4c09b6c; tmp_dict_key_134 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_dict_key_134 == NULL )) { tmp_dict_key_134 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_dict_key_134 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_132 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 455; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_132, tmp_dict_key_134, tmp_dict_value_134 ); tmp_dict_key_132 = const_str_plain_routine_def; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_132, tmp_dict_value_132 ); Py_DECREF( tmp_dict_value_132 ); tmp_dict_value_135 = _PyDict_NewPresized( 1 ); tmp_dict_value_136 = const_str_digest_3548fadb0ec569ebab2115c8b8df5083; tmp_called_58 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_58 == NULL )) { tmp_called_58 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_58 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_135 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 457; goto frame_exception_exit_1; } tmp_called_59 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_59 == NULL )) { tmp_called_59 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_59 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_135 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 457; goto frame_exception_exit_1; } tmp_call_arg_element_78 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_78 == NULL )) { tmp_call_arg_element_78 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_78 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_135 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 457; goto frame_exception_exit_1; } tmp_call_arg_element_79 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_79 == NULL )) { tmp_call_arg_element_79 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_79 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_135 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 457; goto frame_exception_exit_1; } frame_module->f_lineno = 457; tmp_call_arg_element_77 = CALL_FUNCTION_WITH_ARGS2( tmp_called_59, tmp_call_arg_element_78, tmp_call_arg_element_79 ); if ( tmp_call_arg_element_77 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_135 ); frame_module->f_lineno = 457; goto frame_exception_exit_1; } frame_module->f_lineno = 457; tmp_dict_key_136 = CALL_FUNCTION_WITH_ARGS1( tmp_called_58, tmp_call_arg_element_77 ); Py_DECREF( tmp_call_arg_element_77 ); if ( tmp_dict_key_136 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_135 ); frame_module->f_lineno = 457; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_135, tmp_dict_key_136, tmp_dict_value_136 ); Py_DECREF( tmp_dict_key_136 ); tmp_dict_key_135 = const_str_plain_initf2pywraphook; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_135, tmp_dict_value_135 ); Py_DECREF( tmp_dict_value_135 ); tmp_dict_value_137 = _PyDict_NewPresized( 1 ); tmp_dict_value_138 = LIST_COPY( const_list_str_plain_F_WRAPPEDFUNC_str_plain_F_FUNC_list ); tmp_called_60 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_60 == NULL )) { tmp_called_60 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_60 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_137 ); Py_DECREF( tmp_dict_value_138 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 469; goto frame_exception_exit_1; } tmp_called_61 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_61 == NULL )) { tmp_called_61 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_61 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_137 ); Py_DECREF( tmp_dict_value_138 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 469; goto frame_exception_exit_1; } tmp_call_arg_element_81 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_81 == NULL )) { tmp_call_arg_element_81 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_81 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_137 ); Py_DECREF( tmp_dict_value_138 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 469; goto frame_exception_exit_1; } tmp_call_arg_element_82 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_82 == NULL )) { tmp_call_arg_element_82 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_82 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_137 ); Py_DECREF( tmp_dict_value_138 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 469; goto frame_exception_exit_1; } frame_module->f_lineno = 469; tmp_call_arg_element_80 = CALL_FUNCTION_WITH_ARGS2( tmp_called_61, tmp_call_arg_element_81, tmp_call_arg_element_82 ); if ( tmp_call_arg_element_80 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_137 ); Py_DECREF( tmp_dict_value_138 ); frame_module->f_lineno = 469; goto frame_exception_exit_1; } frame_module->f_lineno = 469; tmp_dict_key_138 = CALL_FUNCTION_WITH_ARGS1( tmp_called_60, tmp_call_arg_element_80 ); Py_DECREF( tmp_call_arg_element_80 ); if ( tmp_dict_key_138 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_137 ); Py_DECREF( tmp_dict_value_138 ); frame_module->f_lineno = 469; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_137, tmp_dict_key_138, tmp_dict_value_138 ); Py_DECREF( tmp_dict_value_138 ); Py_DECREF( tmp_dict_key_138 ); tmp_dict_key_137 = const_str_plain_need; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_137, tmp_dict_value_137 ); Py_DECREF( tmp_dict_value_137 ); tmp_dict_value_139 = PyList_New( 7 ); tmp_list_element_5 = _PyDict_NewPresized( 1 ); tmp_dict_value_140 = LIST_COPY( const_list_str_digest_e37d7173ff6f9aaa416640aafbac950b_list ); tmp_dict_key_140 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_dict_key_140 == NULL )) { tmp_dict_key_140 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_dict_key_140 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_139 ); Py_DECREF( tmp_list_element_5 ); Py_DECREF( tmp_dict_value_140 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 471; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_5, tmp_dict_key_140, tmp_dict_value_140 ); Py_DECREF( tmp_dict_value_140 ); PyList_SET_ITEM( tmp_dict_value_139, 0, tmp_list_element_5 ); tmp_list_element_5 = _PyDict_NewPresized( 1 ); tmp_dict_value_141 = const_str_digest_b8bcf6698fa55a1cf1fc5eaebffde12d; tmp_dict_key_141 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasexternals ); if (unlikely( tmp_dict_key_141 == NULL )) { tmp_dict_key_141 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasexternals ); } if ( tmp_dict_key_141 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_139 ); Py_DECREF( tmp_list_element_5 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150818 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 472; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_5, tmp_dict_key_141, tmp_dict_value_141 ); PyList_SET_ITEM( tmp_dict_value_139, 1, tmp_list_element_5 ); tmp_list_element_5 = _PyDict_NewPresized( 1 ); tmp_dict_value_142 = const_str_digest_18429b2363d61bb45e6f19ee193369c0; tmp_dict_key_142 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); if (unlikely( tmp_dict_key_142 == NULL )) { tmp_dict_key_142 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); } if ( tmp_dict_key_142 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_139 ); Py_DECREF( tmp_list_element_5 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150852 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 476; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_5, tmp_dict_key_142, tmp_dict_value_142 ); PyList_SET_ITEM( tmp_dict_value_139, 2, tmp_list_element_5 ); tmp_list_element_5 = _PyDict_NewPresized( 1 ); tmp_dict_value_143 = const_str_digest_c3ae46c3d5576e352b30a35cef03a879; tmp_called_62 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_62 == NULL )) { tmp_called_62 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_62 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_139 ); Py_DECREF( tmp_list_element_5 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 477; goto frame_exception_exit_1; } tmp_called_63 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_63 == NULL )) { tmp_called_63 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_63 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_139 ); Py_DECREF( tmp_list_element_5 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 477; goto frame_exception_exit_1; } tmp_call_arg_element_84 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hascallstatement ); if (unlikely( tmp_call_arg_element_84 == NULL )) { tmp_call_arg_element_84 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hascallstatement ); } if ( tmp_call_arg_element_84 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_139 ); Py_DECREF( tmp_list_element_5 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126092 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 477; goto frame_exception_exit_1; } tmp_call_arg_element_85 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_85 == NULL )) { tmp_call_arg_element_85 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_85 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_139 ); Py_DECREF( tmp_list_element_5 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 477; goto frame_exception_exit_1; } frame_module->f_lineno = 477; tmp_call_arg_element_83 = CALL_FUNCTION_WITH_ARGS2( tmp_called_63, tmp_call_arg_element_84, tmp_call_arg_element_85 ); if ( tmp_call_arg_element_83 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_139 ); Py_DECREF( tmp_list_element_5 ); frame_module->f_lineno = 477; goto frame_exception_exit_1; } frame_module->f_lineno = 477; tmp_dict_key_143 = CALL_FUNCTION_WITH_ARGS1( tmp_called_62, tmp_call_arg_element_83 ); Py_DECREF( tmp_call_arg_element_83 ); if ( tmp_dict_key_143 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_139 ); Py_DECREF( tmp_list_element_5 ); frame_module->f_lineno = 477; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_5, tmp_dict_key_143, tmp_dict_value_143 ); Py_DECREF( tmp_dict_key_143 ); PyList_SET_ITEM( tmp_dict_value_139, 3, tmp_list_element_5 ); tmp_list_element_5 = _PyDict_NewPresized( 1 ); tmp_dict_value_144 = const_str_digest_1422ad36fc74e5255a7c794563fb3843; tmp_dict_key_144 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hascallstatement ); if (unlikely( tmp_dict_key_144 == NULL )) { tmp_dict_key_144 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hascallstatement ); } if ( tmp_dict_key_144 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_139 ); Py_DECREF( tmp_list_element_5 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126092 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 478; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_5, tmp_dict_key_144, tmp_dict_value_144 ); PyList_SET_ITEM( tmp_dict_value_139, 4, tmp_list_element_5 ); tmp_list_element_5 = _PyDict_NewPresized( 1 ); tmp_dict_value_145 = const_str_digest_a1b947d4348c132103b0fcc2930bd1fa; tmp_dict_key_145 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); if (unlikely( tmp_dict_key_145 == NULL )) { tmp_dict_key_145 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); } if ( tmp_dict_key_145 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_139 ); Py_DECREF( tmp_list_element_5 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150852 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 479; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_5, tmp_dict_key_145, tmp_dict_value_145 ); PyList_SET_ITEM( tmp_dict_value_139, 5, tmp_list_element_5 ); tmp_list_element_5 = _PyDict_NewPresized( 1 ); tmp_dict_value_146 = const_str_digest_003412ca7c035dda44b06c662ca81aa5; tmp_dict_key_146 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasexternals ); if (unlikely( tmp_dict_key_146 == NULL )) { tmp_dict_key_146 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasexternals ); } if ( tmp_dict_key_146 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_139 ); Py_DECREF( tmp_list_element_5 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150818 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 480; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_5, tmp_dict_key_146, tmp_dict_value_146 ); PyList_SET_ITEM( tmp_dict_value_139, 6, tmp_list_element_5 ); tmp_dict_key_139 = const_str_plain_callfortranroutine; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_139, tmp_dict_value_139 ); Py_DECREF( tmp_dict_value_139 ); tmp_dict_value_147 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_issubroutine_wrap ); if (unlikely( tmp_dict_value_147 == NULL )) { tmp_dict_value_147 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_issubroutine_wrap ); } if ( tmp_dict_value_147 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150668 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 482; goto frame_exception_exit_1; } tmp_dict_key_147 = const_str_plain__check; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_147, tmp_dict_value_147 ); PyList_SET_ITEM( tmp_assign_source_30, 5, tmp_list_element_2 ); tmp_list_element_2 = _PyDict_NewPresized( 6 ); tmp_dict_value_148 = const_str_digest_034683ceccce831b3c4724622e7c61e0; tmp_dict_key_148 = const_str_plain_functype; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_148, tmp_dict_value_148 ); tmp_dict_value_149 = _PyDict_NewPresized( 1 ); tmp_dict_value_150 = const_str_digest_dbd40ba69da15782bc0a1e6888e6b0cb; tmp_called_64 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_64 == NULL )) { tmp_called_64 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_64 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_149 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 485; goto frame_exception_exit_1; } tmp_call_arg_element_86 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_hide ); if (unlikely( tmp_call_arg_element_86 == NULL )) { tmp_call_arg_element_86 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_hide ); } if ( tmp_call_arg_element_86 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_149 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124141 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 485; goto frame_exception_exit_1; } frame_module->f_lineno = 485; tmp_dict_key_150 = CALL_FUNCTION_WITH_ARGS1( tmp_called_64, tmp_call_arg_element_86 ); if ( tmp_dict_key_150 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_149 ); frame_module->f_lineno = 485; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_149, tmp_dict_key_150, tmp_dict_value_150 ); Py_DECREF( tmp_dict_key_150 ); tmp_dict_key_149 = const_str_plain_docreturn; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_149, tmp_dict_value_149 ); Py_DECREF( tmp_dict_value_149 ); tmp_dict_value_151 = const_str_digest_52f3cb551798f750c7eedaa7874151b2; tmp_dict_key_151 = const_str_plain_docstrout; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_151, tmp_dict_value_151 ); tmp_dict_value_152 = PyList_New( 2 ); tmp_list_element_6 = const_str_digest_21848c21ee715afb46bb5dff54f12759; Py_INCREF( tmp_list_element_6 ); PyList_SET_ITEM( tmp_dict_value_152, 0, tmp_list_element_6 ); tmp_list_element_6 = _PyDict_NewPresized( 1 ); tmp_dict_value_153 = const_str_digest_4c144e84fc3c1a12f3edf4fb3c6a1560; tmp_dict_key_153 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasresultnote ); if (unlikely( tmp_dict_key_153 == NULL )) { tmp_dict_key_153 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasresultnote ); } if ( tmp_dict_key_153 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_152 ); Py_DECREF( tmp_list_element_6 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 129237 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 488; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_6, tmp_dict_key_153, tmp_dict_value_153 ); PyList_SET_ITEM( tmp_dict_value_152, 1, tmp_list_element_6 ); tmp_dict_key_152 = const_str_plain_latexdocstrout; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_152, tmp_dict_value_152 ); Py_DECREF( tmp_dict_value_152 ); tmp_dict_value_154 = PyList_New( 2 ); tmp_list_element_7 = _PyDict_NewPresized( 1 ); tmp_dict_value_155 = const_str_digest_80faf1e943e593f4ae75792d5729a4c3; tmp_called_65 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_65 == NULL )) { tmp_called_65 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_65 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_154 ); Py_DECREF( tmp_list_element_7 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 489; goto frame_exception_exit_1; } tmp_call_arg_element_87 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_call_arg_element_87 == NULL )) { tmp_call_arg_element_87 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_call_arg_element_87 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_154 ); Py_DECREF( tmp_list_element_7 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 489; goto frame_exception_exit_1; } tmp_call_arg_element_88 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isstringfunction ); if (unlikely( tmp_call_arg_element_88 == NULL )) { tmp_call_arg_element_88 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isstringfunction ); } if ( tmp_call_arg_element_88 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_154 ); Py_DECREF( tmp_list_element_7 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126171 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 489; goto frame_exception_exit_1; } frame_module->f_lineno = 489; tmp_dict_key_155 = CALL_FUNCTION_WITH_ARGS2( tmp_called_65, tmp_call_arg_element_87, tmp_call_arg_element_88 ); if ( tmp_dict_key_155 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_154 ); Py_DECREF( tmp_list_element_7 ); frame_module->f_lineno = 489; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_7, tmp_dict_key_155, tmp_dict_value_155 ); Py_DECREF( tmp_dict_key_155 ); PyList_SET_ITEM( tmp_dict_value_154, 0, tmp_list_element_7 ); tmp_list_element_7 = _PyDict_NewPresized( 1 ); tmp_dict_value_156 = const_str_digest_4f2deeeb57d301c95c75bb98138b8f09; tmp_called_66 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_66 == NULL )) { tmp_called_66 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_66 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_154 ); Py_DECREF( tmp_list_element_7 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 496; goto frame_exception_exit_1; } tmp_call_arg_element_89 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_call_arg_element_89 == NULL )) { tmp_call_arg_element_89 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_call_arg_element_89 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_154 ); Py_DECREF( tmp_list_element_7 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 496; goto frame_exception_exit_1; } tmp_called_67 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_67 == NULL )) { tmp_called_67 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_67 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_154 ); Py_DECREF( tmp_list_element_7 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 496; goto frame_exception_exit_1; } tmp_call_arg_element_91 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isstringfunction ); if (unlikely( tmp_call_arg_element_91 == NULL )) { tmp_call_arg_element_91 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isstringfunction ); } if ( tmp_call_arg_element_91 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_154 ); Py_DECREF( tmp_list_element_7 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126171 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 496; goto frame_exception_exit_1; } frame_module->f_lineno = 496; tmp_call_arg_element_90 = CALL_FUNCTION_WITH_ARGS1( tmp_called_67, tmp_call_arg_element_91 ); if ( tmp_call_arg_element_90 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_154 ); Py_DECREF( tmp_list_element_7 ); frame_module->f_lineno = 496; goto frame_exception_exit_1; } frame_module->f_lineno = 496; tmp_dict_key_156 = CALL_FUNCTION_WITH_ARGS2( tmp_called_66, tmp_call_arg_element_89, tmp_call_arg_element_90 ); Py_DECREF( tmp_call_arg_element_90 ); if ( tmp_dict_key_156 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_154 ); Py_DECREF( tmp_list_element_7 ); frame_module->f_lineno = 496; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_7, tmp_dict_key_156, tmp_dict_value_156 ); Py_DECREF( tmp_dict_key_156 ); PyList_SET_ITEM( tmp_dict_value_154, 1, tmp_list_element_7 ); tmp_dict_key_154 = const_str_plain_callfortranroutine; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_154, tmp_dict_value_154 ); Py_DECREF( tmp_dict_value_154 ); tmp_called_68 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_68 == NULL )) { tmp_called_68 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_68 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 500; goto frame_exception_exit_1; } tmp_call_arg_element_92 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isfunction ); if (unlikely( tmp_call_arg_element_92 == NULL )) { tmp_call_arg_element_92 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isfunction ); } if ( tmp_call_arg_element_92 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 51248 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 500; goto frame_exception_exit_1; } tmp_called_69 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_69 == NULL )) { tmp_called_69 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_69 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 500; goto frame_exception_exit_1; } tmp_call_arg_element_94 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isfunction_wrap ); if (unlikely( tmp_call_arg_element_94 == NULL )) { tmp_call_arg_element_94 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isfunction_wrap ); } if ( tmp_call_arg_element_94 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126250 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 500; goto frame_exception_exit_1; } frame_module->f_lineno = 500; tmp_call_arg_element_93 = CALL_FUNCTION_WITH_ARGS1( tmp_called_69, tmp_call_arg_element_94 ); if ( tmp_call_arg_element_93 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); frame_module->f_lineno = 500; goto frame_exception_exit_1; } frame_module->f_lineno = 500; tmp_dict_value_157 = CALL_FUNCTION_WITH_ARGS2( tmp_called_68, tmp_call_arg_element_92, tmp_call_arg_element_93 ); Py_DECREF( tmp_call_arg_element_93 ); if ( tmp_dict_value_157 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); frame_module->f_lineno = 500; goto frame_exception_exit_1; } tmp_dict_key_157 = const_str_plain__check; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_157, tmp_dict_value_157 ); Py_DECREF( tmp_dict_value_157 ); PyList_SET_ITEM( tmp_assign_source_30, 6, tmp_list_element_2 ); tmp_list_element_2 = _PyDict_NewPresized( 9 ); tmp_dict_value_158 = _PyDict_NewPresized( 3 ); tmp_dict_value_159 = const_str_digest_d73c240a188c22c16ede43df7407dbf6; tmp_called_70 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_70 == NULL )) { tmp_called_70 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_70 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 502; goto frame_exception_exit_1; } tmp_called_71 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_71 == NULL )) { tmp_called_71 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_71 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 502; goto frame_exception_exit_1; } tmp_called_72 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_72 == NULL )) { tmp_called_72 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_72 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 502; goto frame_exception_exit_1; } tmp_call_arg_element_97 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_97 == NULL )) { tmp_call_arg_element_97 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_97 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 502; goto frame_exception_exit_1; } tmp_call_arg_element_98 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_c ); if (unlikely( tmp_call_arg_element_98 == NULL )) { tmp_call_arg_element_98 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_c ); } if ( tmp_call_arg_element_98 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124212 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 502; goto frame_exception_exit_1; } frame_module->f_lineno = 502; tmp_call_arg_element_96 = CALL_FUNCTION_WITH_ARGS2( tmp_called_72, tmp_call_arg_element_97, tmp_call_arg_element_98 ); if ( tmp_call_arg_element_96 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); frame_module->f_lineno = 502; goto frame_exception_exit_1; } frame_module->f_lineno = 502; tmp_call_arg_element_95 = CALL_FUNCTION_WITH_ARGS1( tmp_called_71, tmp_call_arg_element_96 ); Py_DECREF( tmp_call_arg_element_96 ); if ( tmp_call_arg_element_95 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); frame_module->f_lineno = 502; goto frame_exception_exit_1; } tmp_called_73 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_73 == NULL )) { tmp_called_73 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_73 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); Py_DECREF( tmp_call_arg_element_95 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 502; goto frame_exception_exit_1; } tmp_call_arg_element_100 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_100 == NULL )) { tmp_call_arg_element_100 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_100 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); Py_DECREF( tmp_call_arg_element_95 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 502; goto frame_exception_exit_1; } frame_module->f_lineno = 502; tmp_call_arg_element_99 = CALL_FUNCTION_WITH_ARGS1( tmp_called_73, tmp_call_arg_element_100 ); if ( tmp_call_arg_element_99 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); Py_DECREF( tmp_call_arg_element_95 ); frame_module->f_lineno = 502; goto frame_exception_exit_1; } frame_module->f_lineno = 502; tmp_dict_key_159 = CALL_FUNCTION_WITH_ARGS2( tmp_called_70, tmp_call_arg_element_95, tmp_call_arg_element_99 ); Py_DECREF( tmp_call_arg_element_95 ); Py_DECREF( tmp_call_arg_element_99 ); if ( tmp_dict_key_159 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); frame_module->f_lineno = 502; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_158, tmp_dict_key_159, tmp_dict_value_159 ); Py_DECREF( tmp_dict_key_159 ); tmp_dict_value_160 = const_str_digest_fbcd99c73635e58fec4f2c1cb3548a51; tmp_called_74 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_74 == NULL )) { tmp_called_74 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_74 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 503; goto frame_exception_exit_1; } tmp_called_75 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_75 == NULL )) { tmp_called_75 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_75 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 503; goto frame_exception_exit_1; } tmp_call_arg_element_102 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_102 == NULL )) { tmp_call_arg_element_102 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_102 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 503; goto frame_exception_exit_1; } frame_module->f_lineno = 503; tmp_call_arg_element_101 = CALL_FUNCTION_WITH_ARGS1( tmp_called_75, tmp_call_arg_element_102 ); if ( tmp_call_arg_element_101 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); frame_module->f_lineno = 503; goto frame_exception_exit_1; } tmp_call_arg_element_103 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_c ); if (unlikely( tmp_call_arg_element_103 == NULL )) { tmp_call_arg_element_103 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_c ); } if ( tmp_call_arg_element_103 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); Py_DECREF( tmp_call_arg_element_101 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124212 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 503; goto frame_exception_exit_1; } tmp_called_76 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_76 == NULL )) { tmp_called_76 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_76 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); Py_DECREF( tmp_call_arg_element_101 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 503; goto frame_exception_exit_1; } tmp_call_arg_element_105 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_105 == NULL )) { tmp_call_arg_element_105 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_105 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); Py_DECREF( tmp_call_arg_element_101 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 503; goto frame_exception_exit_1; } frame_module->f_lineno = 503; tmp_call_arg_element_104 = CALL_FUNCTION_WITH_ARGS1( tmp_called_76, tmp_call_arg_element_105 ); if ( tmp_call_arg_element_104 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); Py_DECREF( tmp_call_arg_element_101 ); frame_module->f_lineno = 503; goto frame_exception_exit_1; } frame_module->f_lineno = 503; tmp_dict_key_160 = CALL_FUNCTION_WITH_ARGS3( tmp_called_74, tmp_call_arg_element_101, tmp_call_arg_element_103, tmp_call_arg_element_104 ); Py_DECREF( tmp_call_arg_element_101 ); Py_DECREF( tmp_call_arg_element_104 ); if ( tmp_dict_key_160 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); frame_module->f_lineno = 503; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_158, tmp_dict_key_160, tmp_dict_value_160 ); Py_DECREF( tmp_dict_key_160 ); tmp_dict_value_161 = const_str_empty; tmp_dict_key_161 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_dict_key_161 == NULL )) { tmp_dict_key_161 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_dict_key_161 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_158 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 504; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_158, tmp_dict_key_161, tmp_dict_value_161 ); tmp_dict_key_158 = const_str_plain_declfortranroutine; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_158, tmp_dict_value_158 ); Py_DECREF( tmp_dict_value_158 ); tmp_dict_value_162 = _PyDict_NewPresized( 3 ); tmp_dict_value_163 = const_str_digest_cf71de3f9023718c59bbed5c352d152c; tmp_called_77 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_77 == NULL )) { tmp_called_77 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_77 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 506; goto frame_exception_exit_1; } tmp_called_78 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_78 == NULL )) { tmp_called_78 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_78 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 506; goto frame_exception_exit_1; } tmp_called_79 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_79 == NULL )) { tmp_called_79 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_79 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 506; goto frame_exception_exit_1; } tmp_call_arg_element_108 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_108 == NULL )) { tmp_call_arg_element_108 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_108 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 506; goto frame_exception_exit_1; } tmp_call_arg_element_109 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_c ); if (unlikely( tmp_call_arg_element_109 == NULL )) { tmp_call_arg_element_109 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_c ); } if ( tmp_call_arg_element_109 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124212 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 506; goto frame_exception_exit_1; } frame_module->f_lineno = 506; tmp_call_arg_element_107 = CALL_FUNCTION_WITH_ARGS2( tmp_called_79, tmp_call_arg_element_108, tmp_call_arg_element_109 ); if ( tmp_call_arg_element_107 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); frame_module->f_lineno = 506; goto frame_exception_exit_1; } frame_module->f_lineno = 506; tmp_call_arg_element_106 = CALL_FUNCTION_WITH_ARGS1( tmp_called_78, tmp_call_arg_element_107 ); Py_DECREF( tmp_call_arg_element_107 ); if ( tmp_call_arg_element_106 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); frame_module->f_lineno = 506; goto frame_exception_exit_1; } tmp_called_80 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_80 == NULL )) { tmp_called_80 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_80 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); Py_DECREF( tmp_call_arg_element_106 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 506; goto frame_exception_exit_1; } tmp_call_arg_element_111 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_111 == NULL )) { tmp_call_arg_element_111 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_111 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); Py_DECREF( tmp_call_arg_element_106 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 506; goto frame_exception_exit_1; } frame_module->f_lineno = 506; tmp_call_arg_element_110 = CALL_FUNCTION_WITH_ARGS1( tmp_called_80, tmp_call_arg_element_111 ); if ( tmp_call_arg_element_110 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); Py_DECREF( tmp_call_arg_element_106 ); frame_module->f_lineno = 506; goto frame_exception_exit_1; } frame_module->f_lineno = 506; tmp_dict_key_163 = CALL_FUNCTION_WITH_ARGS2( tmp_called_77, tmp_call_arg_element_106, tmp_call_arg_element_110 ); Py_DECREF( tmp_call_arg_element_106 ); Py_DECREF( tmp_call_arg_element_110 ); if ( tmp_dict_key_163 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); frame_module->f_lineno = 506; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_162, tmp_dict_key_163, tmp_dict_value_163 ); Py_DECREF( tmp_dict_key_163 ); tmp_dict_value_164 = const_str_digest_ee4b6cfd909f1956d8f9cdb9d88a8e33; tmp_called_81 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_81 == NULL )) { tmp_called_81 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_81 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 507; goto frame_exception_exit_1; } tmp_called_82 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_82 == NULL )) { tmp_called_82 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_82 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 507; goto frame_exception_exit_1; } tmp_call_arg_element_113 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_113 == NULL )) { tmp_call_arg_element_113 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_113 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 507; goto frame_exception_exit_1; } frame_module->f_lineno = 507; tmp_call_arg_element_112 = CALL_FUNCTION_WITH_ARGS1( tmp_called_82, tmp_call_arg_element_113 ); if ( tmp_call_arg_element_112 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); frame_module->f_lineno = 507; goto frame_exception_exit_1; } tmp_call_arg_element_114 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_c ); if (unlikely( tmp_call_arg_element_114 == NULL )) { tmp_call_arg_element_114 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_c ); } if ( tmp_call_arg_element_114 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); Py_DECREF( tmp_call_arg_element_112 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124212 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 507; goto frame_exception_exit_1; } tmp_called_83 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_83 == NULL )) { tmp_called_83 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_83 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); Py_DECREF( tmp_call_arg_element_112 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 507; goto frame_exception_exit_1; } tmp_call_arg_element_116 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_116 == NULL )) { tmp_call_arg_element_116 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_116 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); Py_DECREF( tmp_call_arg_element_112 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 507; goto frame_exception_exit_1; } frame_module->f_lineno = 507; tmp_call_arg_element_115 = CALL_FUNCTION_WITH_ARGS1( tmp_called_83, tmp_call_arg_element_116 ); if ( tmp_call_arg_element_115 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); Py_DECREF( tmp_call_arg_element_112 ); frame_module->f_lineno = 507; goto frame_exception_exit_1; } frame_module->f_lineno = 507; tmp_dict_key_164 = CALL_FUNCTION_WITH_ARGS3( tmp_called_81, tmp_call_arg_element_112, tmp_call_arg_element_114, tmp_call_arg_element_115 ); Py_DECREF( tmp_call_arg_element_112 ); Py_DECREF( tmp_call_arg_element_115 ); if ( tmp_dict_key_164 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); frame_module->f_lineno = 507; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_162, tmp_dict_key_164, tmp_dict_value_164 ); Py_DECREF( tmp_dict_key_164 ); tmp_dict_value_165 = const_str_digest_55456c681709cce09c41f6b5c4c09b6c; tmp_dict_key_165 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_dict_key_165 == NULL )) { tmp_dict_key_165 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_dict_key_165 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_162 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 508; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_162, tmp_dict_key_165, tmp_dict_value_165 ); tmp_dict_key_162 = const_str_plain_routine_def; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_162, tmp_dict_value_162 ); Py_DECREF( tmp_dict_value_162 ); tmp_dict_value_166 = PyList_New( 2 ); tmp_list_element_8 = _PyDict_NewPresized( 2 ); tmp_dict_value_167 = const_str_digest_b53e1cf2d1ffaffc66b7e7af7aa19e19; tmp_dict_key_167 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplexfunction_warn ); if (unlikely( tmp_dict_key_167 == NULL )) { tmp_dict_key_167 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplexfunction_warn ); } if ( tmp_dict_key_167 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_166 ); Py_DECREF( tmp_list_element_8 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150886 ], 44, 0 ); exception_tb = NULL; frame_module->f_lineno = 510; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_8, tmp_dict_key_167, tmp_dict_value_167 ); tmp_dict_value_168 = const_str_digest_31870eba6b1af25a3fcecd097524b3d4; tmp_called_84 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_84 == NULL )) { tmp_called_84 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_84 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_166 ); Py_DECREF( tmp_list_element_8 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 511; goto frame_exception_exit_1; } tmp_call_arg_element_117 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplexfunction ); if (unlikely( tmp_call_arg_element_117 == NULL )) { tmp_call_arg_element_117 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplexfunction ); } if ( tmp_call_arg_element_117 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_166 ); Py_DECREF( tmp_list_element_8 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125115 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 511; goto frame_exception_exit_1; } frame_module->f_lineno = 511; tmp_dict_key_168 = CALL_FUNCTION_WITH_ARGS1( tmp_called_84, tmp_call_arg_element_117 ); if ( tmp_dict_key_168 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_166 ); Py_DECREF( tmp_list_element_8 ); frame_module->f_lineno = 511; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_8, tmp_dict_key_168, tmp_dict_value_168 ); Py_DECREF( tmp_dict_key_168 ); PyList_SET_ITEM( tmp_dict_value_166, 0, tmp_list_element_8 ); tmp_list_element_8 = _PyDict_NewPresized( 1 ); tmp_dict_value_169 = const_str_digest_8026ad1b3e6ceed21e57865344fb654f; tmp_dict_key_169 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplexfunction ); if (unlikely( tmp_dict_key_169 == NULL )) { tmp_dict_key_169 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplexfunction ); } if ( tmp_dict_key_169 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_166 ); Py_DECREF( tmp_list_element_8 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125115 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 512; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_8, tmp_dict_key_169, tmp_dict_value_169 ); PyList_SET_ITEM( tmp_dict_value_166, 1, tmp_list_element_8 ); tmp_dict_key_166 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_166, tmp_dict_value_166 ); Py_DECREF( tmp_dict_value_166 ); tmp_dict_value_170 = PyList_New( 8 ); tmp_list_element_9 = _PyDict_NewPresized( 1 ); tmp_dict_value_171 = const_str_digest_b8bcf6698fa55a1cf1fc5eaebffde12d; tmp_dict_key_171 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasexternals ); if (unlikely( tmp_dict_key_171 == NULL )) { tmp_dict_key_171 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasexternals ); } if ( tmp_dict_key_171 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150818 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 515; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_9, tmp_dict_key_171, tmp_dict_value_171 ); PyList_SET_ITEM( tmp_dict_value_170, 0, tmp_list_element_9 ); tmp_list_element_9 = _PyDict_NewPresized( 1 ); tmp_dict_value_172 = const_str_digest_18429b2363d61bb45e6f19ee193369c0; tmp_dict_key_172 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); if (unlikely( tmp_dict_key_172 == NULL )) { tmp_dict_key_172 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); } if ( tmp_dict_key_172 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150852 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 519; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_9, tmp_dict_key_172, tmp_dict_value_172 ); PyList_SET_ITEM( tmp_dict_value_170, 1, tmp_list_element_9 ); tmp_list_element_9 = _PyDict_NewPresized( 1 ); tmp_dict_value_173 = const_str_digest_63b243fa195291a4bd10a9d27c0ece83; tmp_dict_key_173 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hascallstatement ); if (unlikely( tmp_dict_key_173 == NULL )) { tmp_dict_key_173 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hascallstatement ); } if ( tmp_dict_key_173 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126092 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 520; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_9, tmp_dict_key_173, tmp_dict_value_173 ); PyList_SET_ITEM( tmp_dict_value_170, 2, tmp_list_element_9 ); tmp_list_element_9 = _PyDict_NewPresized( 1 ); tmp_dict_value_174 = const_str_digest_fd17d65e20f214ebc5b50e179ff507c1; tmp_called_85 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_85 == NULL )) { tmp_called_85 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_85 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 523; goto frame_exception_exit_1; } tmp_called_86 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_86 == NULL )) { tmp_called_86 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_86 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 523; goto frame_exception_exit_1; } tmp_call_arg_element_119 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hascallstatement ); if (unlikely( tmp_call_arg_element_119 == NULL )) { tmp_call_arg_element_119 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hascallstatement ); } if ( tmp_call_arg_element_119 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126092 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 523; goto frame_exception_exit_1; } tmp_call_arg_element_120 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_120 == NULL )) { tmp_call_arg_element_120 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_120 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 523; goto frame_exception_exit_1; } frame_module->f_lineno = 523; tmp_call_arg_element_118 = CALL_FUNCTION_WITH_ARGS2( tmp_called_86, tmp_call_arg_element_119, tmp_call_arg_element_120 ); if ( tmp_call_arg_element_118 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); frame_module->f_lineno = 523; goto frame_exception_exit_1; } frame_module->f_lineno = 523; tmp_dict_key_174 = CALL_FUNCTION_WITH_ARGS1( tmp_called_85, tmp_call_arg_element_118 ); Py_DECREF( tmp_call_arg_element_118 ); if ( tmp_dict_key_174 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); frame_module->f_lineno = 523; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_9, tmp_dict_key_174, tmp_dict_value_174 ); Py_DECREF( tmp_dict_key_174 ); PyList_SET_ITEM( tmp_dict_value_170, 3, tmp_list_element_9 ); tmp_list_element_9 = _PyDict_NewPresized( 1 ); tmp_dict_value_175 = const_str_digest_a1b947d4348c132103b0fcc2930bd1fa; tmp_dict_key_175 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); if (unlikely( tmp_dict_key_175 == NULL )) { tmp_dict_key_175 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); } if ( tmp_dict_key_175 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150852 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 524; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_9, tmp_dict_key_175, tmp_dict_value_175 ); PyList_SET_ITEM( tmp_dict_value_170, 4, tmp_list_element_9 ); tmp_list_element_9 = _PyDict_NewPresized( 1 ); tmp_dict_value_176 = const_str_digest_003412ca7c035dda44b06c662ca81aa5; tmp_dict_key_176 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasexternals ); if (unlikely( tmp_dict_key_176 == NULL )) { tmp_dict_key_176 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasexternals ); } if ( tmp_dict_key_176 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150818 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 525; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_9, tmp_dict_key_176, tmp_dict_value_176 ); PyList_SET_ITEM( tmp_dict_value_170, 5, tmp_list_element_9 ); tmp_list_element_9 = _PyDict_NewPresized( 1 ); tmp_dict_value_177 = const_str_digest_71deca2cdf00c9fa7cdfa5f0049113ff; tmp_called_87 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_87 == NULL )) { tmp_called_87 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_87 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 526; goto frame_exception_exit_1; } tmp_call_arg_element_121 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_call_arg_element_121 == NULL )) { tmp_call_arg_element_121 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_call_arg_element_121 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 526; goto frame_exception_exit_1; } tmp_call_arg_element_122 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplexfunction ); if (unlikely( tmp_call_arg_element_122 == NULL )) { tmp_call_arg_element_122 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplexfunction ); } if ( tmp_call_arg_element_122 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125115 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 526; goto frame_exception_exit_1; } frame_module->f_lineno = 526; tmp_dict_key_177 = CALL_FUNCTION_WITH_ARGS2( tmp_called_87, tmp_call_arg_element_121, tmp_call_arg_element_122 ); if ( tmp_dict_key_177 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); frame_module->f_lineno = 526; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_9, tmp_dict_key_177, tmp_dict_value_177 ); Py_DECREF( tmp_dict_key_177 ); PyList_SET_ITEM( tmp_dict_value_170, 6, tmp_list_element_9 ); tmp_list_element_9 = _PyDict_NewPresized( 1 ); tmp_dict_value_178 = const_str_digest_d781c39102afc1fb103df62a9f2201f0; tmp_called_88 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_88 == NULL )) { tmp_called_88 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_88 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 527; goto frame_exception_exit_1; } tmp_call_arg_element_123 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_call_arg_element_123 == NULL )) { tmp_call_arg_element_123 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_call_arg_element_123 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 527; goto frame_exception_exit_1; } tmp_called_89 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_89 == NULL )) { tmp_called_89 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_89 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 527; goto frame_exception_exit_1; } tmp_call_arg_element_125 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplexfunction ); if (unlikely( tmp_call_arg_element_125 == NULL )) { tmp_call_arg_element_125 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplexfunction ); } if ( tmp_call_arg_element_125 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125115 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 527; goto frame_exception_exit_1; } frame_module->f_lineno = 527; tmp_call_arg_element_124 = CALL_FUNCTION_WITH_ARGS1( tmp_called_89, tmp_call_arg_element_125 ); if ( tmp_call_arg_element_124 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); frame_module->f_lineno = 527; goto frame_exception_exit_1; } frame_module->f_lineno = 527; tmp_dict_key_178 = CALL_FUNCTION_WITH_ARGS2( tmp_called_88, tmp_call_arg_element_123, tmp_call_arg_element_124 ); Py_DECREF( tmp_call_arg_element_124 ); if ( tmp_dict_key_178 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_170 ); Py_DECREF( tmp_list_element_9 ); frame_module->f_lineno = 527; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_9, tmp_dict_key_178, tmp_dict_value_178 ); Py_DECREF( tmp_dict_key_178 ); PyList_SET_ITEM( tmp_dict_value_170, 7, tmp_list_element_9 ); tmp_dict_key_170 = const_str_plain_callfortranroutine; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_170, tmp_dict_value_170 ); Py_DECREF( tmp_dict_value_170 ); tmp_dict_value_179 = _PyDict_NewPresized( 1 ); tmp_dict_value_180 = const_str_digest_ccaa1ea23810f6f3c2d7e6aefb2857f8; tmp_dict_key_180 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplexfunction ); if (unlikely( tmp_dict_key_180 == NULL )) { tmp_dict_key_180 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplexfunction ); } if ( tmp_dict_key_180 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_179 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125115 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 528; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_179, tmp_dict_key_180, tmp_dict_value_180 ); tmp_dict_key_179 = const_str_plain_pyobjfrom; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_179, tmp_dict_value_179 ); Py_DECREF( tmp_dict_value_179 ); tmp_dict_value_181 = PyList_New( 4 ); tmp_list_element_10 = _PyDict_NewPresized( 1 ); tmp_dict_value_182 = const_str_plain_F_FUNC; tmp_called_90 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_90 == NULL )) { tmp_called_90 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_90 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_181 ); Py_DECREF( tmp_list_element_10 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 529; goto frame_exception_exit_1; } tmp_call_arg_element_126 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); if (unlikely( tmp_call_arg_element_126 == NULL )) { tmp_call_arg_element_126 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdummyroutine ); } if ( tmp_call_arg_element_126 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_181 ); Py_DECREF( tmp_list_element_10 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150782 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 529; goto frame_exception_exit_1; } frame_module->f_lineno = 529; tmp_dict_key_182 = CALL_FUNCTION_WITH_ARGS1( tmp_called_90, tmp_call_arg_element_126 ); if ( tmp_dict_key_182 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_181 ); Py_DECREF( tmp_list_element_10 ); frame_module->f_lineno = 529; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_10, tmp_dict_key_182, tmp_dict_value_182 ); Py_DECREF( tmp_dict_key_182 ); PyList_SET_ITEM( tmp_dict_value_181, 0, tmp_list_element_10 ); tmp_list_element_10 = _PyDict_NewPresized( 1 ); tmp_dict_value_183 = const_str_digest_e94bac8f3260b056e46d869b06fc3df5; tmp_dict_key_183 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplexfunction ); if (unlikely( tmp_dict_key_183 == NULL )) { tmp_dict_key_183 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplexfunction ); } if ( tmp_dict_key_183 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_181 ); Py_DECREF( tmp_list_element_10 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125115 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 530; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_10, tmp_dict_key_183, tmp_dict_value_183 ); PyList_SET_ITEM( tmp_dict_value_181, 1, tmp_list_element_10 ); tmp_list_element_10 = _PyDict_NewPresized( 1 ); tmp_dict_value_184 = const_str_plain_long_long; tmp_dict_key_184 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_islong_longfunction ); if (unlikely( tmp_dict_key_184 == NULL )) { tmp_dict_key_184 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_islong_longfunction ); } if ( tmp_dict_key_184 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_181 ); Py_DECREF( tmp_list_element_10 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150930 ], 41, 0 ); exception_tb = NULL; frame_module->f_lineno = 531; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_10, tmp_dict_key_184, tmp_dict_value_184 ); PyList_SET_ITEM( tmp_dict_value_181, 2, tmp_list_element_10 ); tmp_list_element_10 = _PyDict_NewPresized( 1 ); tmp_dict_value_185 = const_str_plain_long_double; tmp_dict_key_185 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_islong_doublefunction ); if (unlikely( tmp_dict_key_185 == NULL )) { tmp_dict_key_185 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_islong_doublefunction ); } if ( tmp_dict_key_185 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_181 ); Py_DECREF( tmp_list_element_10 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150971 ], 43, 0 ); exception_tb = NULL; frame_module->f_lineno = 532; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_10, tmp_dict_key_185, tmp_dict_value_185 ); PyList_SET_ITEM( tmp_dict_value_181, 3, tmp_list_element_10 ); tmp_dict_key_181 = const_str_plain_need; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_181, tmp_dict_value_181 ); Py_DECREF( tmp_dict_value_181 ); tmp_dict_value_186 = _PyDict_NewPresized( 1 ); tmp_dict_value_187 = const_str_digest_38bb68b0d7d99ca5566905027683bfde; tmp_called_91 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_91 == NULL )) { tmp_called_91 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_91 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_186 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 533; goto frame_exception_exit_1; } tmp_call_arg_element_127 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_hide ); if (unlikely( tmp_call_arg_element_127 == NULL )) { tmp_call_arg_element_127 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_hide ); } if ( tmp_call_arg_element_127 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_186 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124141 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 533; goto frame_exception_exit_1; } frame_module->f_lineno = 533; tmp_dict_key_187 = CALL_FUNCTION_WITH_ARGS1( tmp_called_91, tmp_call_arg_element_127 ); if ( tmp_dict_key_187 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_186 ); frame_module->f_lineno = 533; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_186, tmp_dict_key_187, tmp_dict_value_187 ); Py_DECREF( tmp_dict_key_187 ); tmp_dict_key_186 = const_str_plain_returnformat; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_186, tmp_dict_value_186 ); Py_DECREF( tmp_dict_value_186 ); tmp_dict_value_188 = _PyDict_NewPresized( 2 ); tmp_dict_value_189 = const_str_digest_b209cb6a510b4ec8a54ffbddff8173f4; tmp_dict_key_189 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplexfunction ); if (unlikely( tmp_dict_key_189 == NULL )) { tmp_dict_key_189 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplexfunction ); } if ( tmp_dict_key_189 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_188 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125115 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 534; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_188, tmp_dict_key_189, tmp_dict_value_189 ); tmp_dict_value_190 = const_str_digest_f6768cb0ae865b6d06874d47205cde23; tmp_called_92 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_92 == NULL )) { tmp_called_92 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_92 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_188 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 535; goto frame_exception_exit_1; } tmp_called_93 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_93 == NULL )) { tmp_called_93 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_93 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_188 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 535; goto frame_exception_exit_1; } tmp_call_arg_element_129 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplexfunction ); if (unlikely( tmp_call_arg_element_129 == NULL )) { tmp_call_arg_element_129 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplexfunction ); } if ( tmp_call_arg_element_129 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_188 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125115 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 535; goto frame_exception_exit_1; } tmp_call_arg_element_130 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_hide ); if (unlikely( tmp_call_arg_element_130 == NULL )) { tmp_call_arg_element_130 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_hide ); } if ( tmp_call_arg_element_130 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_188 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124141 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 535; goto frame_exception_exit_1; } frame_module->f_lineno = 535; tmp_call_arg_element_128 = CALL_FUNCTION_WITH_ARGS2( tmp_called_93, tmp_call_arg_element_129, tmp_call_arg_element_130 ); if ( tmp_call_arg_element_128 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_188 ); frame_module->f_lineno = 535; goto frame_exception_exit_1; } frame_module->f_lineno = 535; tmp_dict_key_190 = CALL_FUNCTION_WITH_ARGS1( tmp_called_92, tmp_call_arg_element_128 ); Py_DECREF( tmp_call_arg_element_128 ); if ( tmp_dict_key_190 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_188 ); frame_module->f_lineno = 535; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_188, tmp_dict_key_190, tmp_dict_value_190 ); Py_DECREF( tmp_dict_key_190 ); tmp_dict_key_188 = const_str_plain_return; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_188, tmp_dict_value_188 ); Py_DECREF( tmp_dict_value_188 ); tmp_called_94 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_94 == NULL )) { tmp_called_94 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_94 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 536; goto frame_exception_exit_1; } tmp_call_arg_element_131 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isfunction ); if (unlikely( tmp_call_arg_element_131 == NULL )) { tmp_call_arg_element_131 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isfunction ); } if ( tmp_call_arg_element_131 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 51248 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 536; goto frame_exception_exit_1; } tmp_called_95 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_95 == NULL )) { tmp_called_95 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_95 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 536; goto frame_exception_exit_1; } tmp_call_arg_element_133 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isstringfunction ); if (unlikely( tmp_call_arg_element_133 == NULL )) { tmp_call_arg_element_133 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isstringfunction ); } if ( tmp_call_arg_element_133 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126171 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 536; goto frame_exception_exit_1; } frame_module->f_lineno = 536; tmp_call_arg_element_132 = CALL_FUNCTION_WITH_ARGS1( tmp_called_95, tmp_call_arg_element_133 ); if ( tmp_call_arg_element_132 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); frame_module->f_lineno = 536; goto frame_exception_exit_1; } tmp_called_96 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_96 == NULL )) { tmp_called_96 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_96 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_call_arg_element_132 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 536; goto frame_exception_exit_1; } tmp_call_arg_element_135 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isfunction_wrap ); if (unlikely( tmp_call_arg_element_135 == NULL )) { tmp_call_arg_element_135 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isfunction_wrap ); } if ( tmp_call_arg_element_135 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_call_arg_element_132 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126250 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 536; goto frame_exception_exit_1; } frame_module->f_lineno = 536; tmp_call_arg_element_134 = CALL_FUNCTION_WITH_ARGS1( tmp_called_96, tmp_call_arg_element_135 ); if ( tmp_call_arg_element_134 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_call_arg_element_132 ); frame_module->f_lineno = 536; goto frame_exception_exit_1; } frame_module->f_lineno = 536; tmp_dict_value_191 = CALL_FUNCTION_WITH_ARGS3( tmp_called_94, tmp_call_arg_element_131, tmp_call_arg_element_132, tmp_call_arg_element_134 ); Py_DECREF( tmp_call_arg_element_132 ); Py_DECREF( tmp_call_arg_element_134 ); if ( tmp_dict_value_191 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); frame_module->f_lineno = 536; goto frame_exception_exit_1; } tmp_dict_key_191 = const_str_plain__check; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_191, tmp_dict_value_191 ); Py_DECREF( tmp_dict_value_191 ); PyList_SET_ITEM( tmp_assign_source_30, 7, tmp_list_element_2 ); tmp_list_element_2 = _PyDict_NewPresized( 10 ); tmp_dict_value_192 = const_str_digest_b8a48d5016ebc922c843de4be3b7b3d3; tmp_dict_key_192 = const_str_plain_declfortranroutine; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_192, tmp_dict_value_192 ); tmp_dict_value_193 = _PyDict_NewPresized( 2 ); tmp_dict_value_194 = const_str_digest_cf71de3f9023718c59bbed5c352d152c; tmp_called_97 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_97 == NULL )) { tmp_called_97 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_97 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_193 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 539; goto frame_exception_exit_1; } tmp_called_98 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_98 == NULL )) { tmp_called_98 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_98 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_193 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 539; goto frame_exception_exit_1; } tmp_call_arg_element_137 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_137 == NULL )) { tmp_call_arg_element_137 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_137 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_193 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 539; goto frame_exception_exit_1; } tmp_call_arg_element_138 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_c ); if (unlikely( tmp_call_arg_element_138 == NULL )) { tmp_call_arg_element_138 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_c ); } if ( tmp_call_arg_element_138 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_193 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124212 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 539; goto frame_exception_exit_1; } frame_module->f_lineno = 539; tmp_call_arg_element_136 = CALL_FUNCTION_WITH_ARGS2( tmp_called_98, tmp_call_arg_element_137, tmp_call_arg_element_138 ); if ( tmp_call_arg_element_136 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_193 ); frame_module->f_lineno = 539; goto frame_exception_exit_1; } frame_module->f_lineno = 539; tmp_dict_key_194 = CALL_FUNCTION_WITH_ARGS1( tmp_called_97, tmp_call_arg_element_136 ); Py_DECREF( tmp_call_arg_element_136 ); if ( tmp_dict_key_194 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_193 ); frame_module->f_lineno = 539; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_193, tmp_dict_key_194, tmp_dict_value_194 ); Py_DECREF( tmp_dict_key_194 ); tmp_dict_value_195 = const_str_digest_ee4b6cfd909f1956d8f9cdb9d88a8e33; tmp_called_99 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_99 == NULL )) { tmp_called_99 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_99 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_193 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 542; goto frame_exception_exit_1; } tmp_called_100 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_100 == NULL )) { tmp_called_100 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_100 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_193 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 542; goto frame_exception_exit_1; } tmp_call_arg_element_140 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); if (unlikely( tmp_call_arg_element_140 == NULL )) { tmp_call_arg_element_140 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ismoduleroutine ); } if ( tmp_call_arg_element_140 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_193 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150163 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 542; goto frame_exception_exit_1; } frame_module->f_lineno = 542; tmp_call_arg_element_139 = CALL_FUNCTION_WITH_ARGS1( tmp_called_100, tmp_call_arg_element_140 ); if ( tmp_call_arg_element_139 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_193 ); frame_module->f_lineno = 542; goto frame_exception_exit_1; } tmp_call_arg_element_141 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_c ); if (unlikely( tmp_call_arg_element_141 == NULL )) { tmp_call_arg_element_141 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_c ); } if ( tmp_call_arg_element_141 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_193 ); Py_DECREF( tmp_call_arg_element_139 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124212 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 542; goto frame_exception_exit_1; } frame_module->f_lineno = 542; tmp_dict_key_195 = CALL_FUNCTION_WITH_ARGS2( tmp_called_99, tmp_call_arg_element_139, tmp_call_arg_element_141 ); Py_DECREF( tmp_call_arg_element_139 ); if ( tmp_dict_key_195 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_193 ); frame_module->f_lineno = 542; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_193, tmp_dict_key_195, tmp_dict_value_195 ); Py_DECREF( tmp_dict_key_195 ); tmp_dict_key_193 = const_str_plain_routine_def; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_193, tmp_dict_value_193 ); Py_DECREF( tmp_dict_value_193 ); tmp_dict_value_196 = LIST_COPY( const_list_9af870e8ed9f6c337cdc0c36a763a6f2_list ); tmp_dict_key_196 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_196, tmp_dict_value_196 ); Py_DECREF( tmp_dict_value_196 ); tmp_dict_value_197 = const_str_digest_d8d8715e262515dd6621f0a26df29636; tmp_dict_key_197 = const_str_plain_callfortran; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_197, tmp_dict_value_197 ); tmp_dict_value_198 = PyList_New( 15 ); tmp_list_element_11 = const_str_digest_8f23eb1de33799d1a32885fde13aac22; Py_INCREF( tmp_list_element_11 ); PyList_SET_ITEM( tmp_dict_value_198, 0, tmp_list_element_11 ); tmp_list_element_11 = const_str_digest_20c9fc8f6f5e6e56dc857edd08f619c0; Py_INCREF( tmp_list_element_11 ); PyList_SET_ITEM( tmp_dict_value_198, 1, tmp_list_element_11 ); tmp_list_element_11 = const_str_digest_bb8c2e7309a7a91ebcd3b999c51969a2; Py_INCREF( tmp_list_element_11 ); PyList_SET_ITEM( tmp_dict_value_198, 2, tmp_list_element_11 ); tmp_list_element_11 = const_str_digest_44b5e885884093b35997aaab01d17f03; Py_INCREF( tmp_list_element_11 ); PyList_SET_ITEM( tmp_dict_value_198, 3, tmp_list_element_11 ); tmp_list_element_11 = const_str_digest_866c31fc8e3f50f10cabca22bcc3b68e; Py_INCREF( tmp_list_element_11 ); PyList_SET_ITEM( tmp_dict_value_198, 4, tmp_list_element_11 ); tmp_list_element_11 = const_str_digest_d5368055a448d76633f47a60bcd4479b; Py_INCREF( tmp_list_element_11 ); PyList_SET_ITEM( tmp_dict_value_198, 5, tmp_list_element_11 ); tmp_list_element_11 = const_str_digest_003412ca7c035dda44b06c662ca81aa5; Py_INCREF( tmp_list_element_11 ); PyList_SET_ITEM( tmp_dict_value_198, 6, tmp_list_element_11 ); tmp_list_element_11 = const_str_digest_91013d6fce3112b1a72b834fdb720cb9; Py_INCREF( tmp_list_element_11 ); PyList_SET_ITEM( tmp_dict_value_198, 7, tmp_list_element_11 ); tmp_list_element_11 = _PyDict_NewPresized( 1 ); tmp_dict_value_199 = const_str_digest_94f7eeb67070e06cba40225d7f6dac94; tmp_dict_key_199 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasexternals ); if (unlikely( tmp_dict_key_199 == NULL )) { tmp_dict_key_199 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasexternals ); } if ( tmp_dict_key_199 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_198 ); Py_DECREF( tmp_list_element_11 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150818 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 557; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_11, tmp_dict_key_199, tmp_dict_value_199 ); PyList_SET_ITEM( tmp_dict_value_198, 8, tmp_list_element_11 ); tmp_list_element_11 = _PyDict_NewPresized( 1 ); tmp_dict_value_200 = const_str_digest_7298c2a4c9a6e315e932bffab830fb0b; tmp_dict_key_200 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); if (unlikely( tmp_dict_key_200 == NULL )) { tmp_dict_key_200 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); } if ( tmp_dict_key_200 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_198 ); Py_DECREF( tmp_list_element_11 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150852 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 561; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_11, tmp_dict_key_200, tmp_dict_value_200 ); PyList_SET_ITEM( tmp_dict_value_198, 9, tmp_list_element_11 ); tmp_list_element_11 = const_str_digest_6e4437baab8cc015d0bec086001fc38b; Py_INCREF( tmp_list_element_11 ); PyList_SET_ITEM( tmp_dict_value_198, 10, tmp_list_element_11 ); tmp_list_element_11 = _PyDict_NewPresized( 1 ); tmp_dict_value_201 = const_str_digest_e982083adb75f151dd46b8ba5198bcc0; tmp_dict_key_201 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); if (unlikely( tmp_dict_key_201 == NULL )) { tmp_dict_key_201 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isthreadsafe ); } if ( tmp_dict_key_201 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_198 ); Py_DECREF( tmp_list_element_11 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150852 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 569; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_11, tmp_dict_key_201, tmp_dict_value_201 ); PyList_SET_ITEM( tmp_dict_value_198, 11, tmp_list_element_11 ); tmp_list_element_11 = _PyDict_NewPresized( 1 ); tmp_dict_value_202 = const_str_digest_6c41c39826425526467cf3e430a77c15; tmp_dict_key_202 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasexternals ); if (unlikely( tmp_dict_key_202 == NULL )) { tmp_dict_key_202 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasexternals ); } if ( tmp_dict_key_202 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_198 ); Py_DECREF( tmp_list_element_11 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150818 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 570; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_11, tmp_dict_key_202, tmp_dict_value_202 ); PyList_SET_ITEM( tmp_dict_value_198, 12, tmp_list_element_11 ); tmp_list_element_11 = _PyDict_NewPresized( 1 ); tmp_dict_value_203 = const_str_digest_c6f825031c2aa893b389bf32c2ca7e84; tmp_dict_key_203 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_dict_key_203 == NULL )) { tmp_dict_key_203 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_dict_key_203 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); Py_DECREF( tmp_dict_value_198 ); Py_DECREF( tmp_list_element_11 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 571; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_11, tmp_dict_key_203, tmp_dict_value_203 ); PyList_SET_ITEM( tmp_dict_value_198, 13, tmp_list_element_11 ); tmp_list_element_11 = const_str_digest_5292336f06adab3d25d49ce1bcb754fa; Py_INCREF( tmp_list_element_11 ); PyList_SET_ITEM( tmp_dict_value_198, 14, tmp_list_element_11 ); tmp_dict_key_198 = const_str_plain_callfortranroutine; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_198, tmp_dict_value_198 ); Py_DECREF( tmp_dict_value_198 ); tmp_dict_value_204 = const_str_digest_38bb68b0d7d99ca5566905027683bfde; tmp_dict_key_204 = const_str_plain_returnformat; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_204, tmp_dict_value_204 ); tmp_dict_value_205 = const_str_digest_f6768cb0ae865b6d06874d47205cde23; tmp_dict_key_205 = const_str_plain_return; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_205, tmp_dict_value_205 ); tmp_dict_value_206 = const_str_digest_16cee986fdf2b02b5fedad397daf617e; tmp_dict_key_206 = const_str_plain_freemem; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_206, tmp_dict_value_206 ); tmp_dict_value_207 = LIST_COPY( const_list_2a1cb5f1b6ad96684950fc2bb3e18869_list ); tmp_dict_key_207 = const_str_plain_need; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_207, tmp_dict_value_207 ); Py_DECREF( tmp_dict_value_207 ); tmp_called_101 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_101 == NULL )) { tmp_called_101 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_101 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 578; goto frame_exception_exit_1; } tmp_call_arg_element_142 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isstringfunction ); if (unlikely( tmp_call_arg_element_142 == NULL )) { tmp_call_arg_element_142 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isstringfunction ); } if ( tmp_call_arg_element_142 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126171 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 578; goto frame_exception_exit_1; } tmp_called_102 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_102 == NULL )) { tmp_called_102 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_102 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 578; goto frame_exception_exit_1; } tmp_call_arg_element_144 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isfunction_wrap ); if (unlikely( tmp_call_arg_element_144 == NULL )) { tmp_call_arg_element_144 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isfunction_wrap ); } if ( tmp_call_arg_element_144 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126250 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 578; goto frame_exception_exit_1; } frame_module->f_lineno = 578; tmp_call_arg_element_143 = CALL_FUNCTION_WITH_ARGS1( tmp_called_102, tmp_call_arg_element_144 ); if ( tmp_call_arg_element_143 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); frame_module->f_lineno = 578; goto frame_exception_exit_1; } frame_module->f_lineno = 578; tmp_dict_value_208 = CALL_FUNCTION_WITH_ARGS2( tmp_called_101, tmp_call_arg_element_142, tmp_call_arg_element_143 ); Py_DECREF( tmp_call_arg_element_143 ); if ( tmp_dict_value_208 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); frame_module->f_lineno = 578; goto frame_exception_exit_1; } tmp_dict_key_208 = const_str_plain__check; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_208, tmp_dict_value_208 ); Py_DECREF( tmp_dict_value_208 ); PyList_SET_ITEM( tmp_assign_source_30, 8, tmp_list_element_2 ); tmp_list_element_2 = _PyDict_NewPresized( 4 ); tmp_dict_value_209 = const_str_digest_0801662fed55e93695b42ad17d40560e; tmp_dict_key_209 = const_str_plain_routdebugenter; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_209, tmp_dict_value_209 ); tmp_dict_value_210 = const_str_digest_f763cd7bcd9a235a07c2d522dff79b8e; tmp_dict_key_210 = const_str_plain_routdebugleave; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_210, tmp_dict_value_210 ); tmp_dict_value_211 = const_str_digest_42bb9daf118d76a1fcc036f908957a47; tmp_dict_key_211 = const_str_plain_routdebugfailure; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_211, tmp_dict_value_211 ); tmp_dict_value_212 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_dict_value_212 == NULL )) { tmp_dict_value_212 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_dict_value_212 == NULL ) { Py_DECREF( tmp_assign_source_30 ); Py_DECREF( tmp_list_element_2 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 584; goto frame_exception_exit_1; } tmp_dict_key_212 = const_str_plain__check; PyDict_SetItem( tmp_list_element_2, tmp_dict_key_212, tmp_dict_value_212 ); PyList_SET_ITEM( tmp_assign_source_30, 9, tmp_list_element_2 ); UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_rout_rules, tmp_assign_source_30 ); tmp_assign_source_31 = _PyDict_NewPresized( 11 ); tmp_dict_value_213 = const_str_plain_long_long; tmp_dict_key_213 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_islong_long ); if (unlikely( tmp_dict_key_213 == NULL )) { tmp_dict_key_213 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_islong_long ); } if ( tmp_dict_key_213 == NULL ) { Py_DECREF( tmp_assign_source_31 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125033 ], 33, 0 ); exception_tb = NULL; frame_module->f_lineno = 590; goto frame_exception_exit_1; } PyDict_SetItem( tmp_assign_source_31, tmp_dict_key_213, tmp_dict_value_213 ); tmp_dict_value_214 = const_str_plain_long_double; tmp_dict_key_214 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_islong_double ); if (unlikely( tmp_dict_key_214 == NULL )) { tmp_dict_key_214 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_islong_double ); } if ( tmp_dict_key_214 == NULL ) { Py_DECREF( tmp_assign_source_31 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125073 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 591; goto frame_exception_exit_1; } PyDict_SetItem( tmp_assign_source_31, tmp_dict_key_214, tmp_dict_value_214 ); tmp_dict_value_215 = const_str_plain_complex_long_double; tmp_dict_key_215 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_islong_complex ); if (unlikely( tmp_dict_key_215 == NULL )) { tmp_dict_key_215 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_islong_complex ); } if ( tmp_dict_key_215 == NULL ) { Py_DECREF( tmp_assign_source_31 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151014 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 592; goto frame_exception_exit_1; } PyDict_SetItem( tmp_assign_source_31, tmp_dict_key_215, tmp_dict_value_215 ); tmp_dict_value_216 = const_str_plain_unsigned_char; tmp_dict_key_216 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isunsigned_char ); if (unlikely( tmp_dict_key_216 == NULL )) { tmp_dict_key_216 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isunsigned_char ); } if ( tmp_dict_key_216 == NULL ) { Py_DECREF( tmp_assign_source_31 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151050 ], 37, 0 ); exception_tb = NULL; frame_module->f_lineno = 593; goto frame_exception_exit_1; } PyDict_SetItem( tmp_assign_source_31, tmp_dict_key_216, tmp_dict_value_216 ); tmp_dict_value_217 = const_str_plain_unsigned_short; tmp_dict_key_217 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isunsigned_short ); if (unlikely( tmp_dict_key_217 == NULL )) { tmp_dict_key_217 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isunsigned_short ); } if ( tmp_dict_key_217 == NULL ) { Py_DECREF( tmp_assign_source_31 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151087 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 594; goto frame_exception_exit_1; } PyDict_SetItem( tmp_assign_source_31, tmp_dict_key_217, tmp_dict_value_217 ); tmp_dict_value_218 = const_str_plain_unsigned; tmp_dict_key_218 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isunsigned ); if (unlikely( tmp_dict_key_218 == NULL )) { tmp_dict_key_218 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isunsigned ); } if ( tmp_dict_key_218 == NULL ) { Py_DECREF( tmp_assign_source_31 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151125 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 595; goto frame_exception_exit_1; } PyDict_SetItem( tmp_assign_source_31, tmp_dict_key_218, tmp_dict_value_218 ); tmp_dict_value_219 = const_str_plain_unsigned_long_long; tmp_dict_key_219 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isunsigned_long_long ); if (unlikely( tmp_dict_key_219 == NULL )) { tmp_dict_key_219 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isunsigned_long_long ); } if ( tmp_dict_key_219 == NULL ) { Py_DECREF( tmp_assign_source_31 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151157 ], 42, 0 ); exception_tb = NULL; frame_module->f_lineno = 596; goto frame_exception_exit_1; } PyDict_SetItem( tmp_assign_source_31, tmp_dict_key_219, tmp_dict_value_219 ); tmp_dict_value_220 = const_str_plain_unsigned_char; tmp_dict_key_220 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isunsigned_chararray ); if (unlikely( tmp_dict_key_220 == NULL )) { tmp_dict_key_220 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isunsigned_chararray ); } if ( tmp_dict_key_220 == NULL ) { Py_DECREF( tmp_assign_source_31 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151199 ], 42, 0 ); exception_tb = NULL; frame_module->f_lineno = 597; goto frame_exception_exit_1; } PyDict_SetItem( tmp_assign_source_31, tmp_dict_key_220, tmp_dict_value_220 ); tmp_dict_value_221 = const_str_plain_unsigned_short; tmp_dict_key_221 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isunsigned_shortarray ); if (unlikely( tmp_dict_key_221 == NULL )) { tmp_dict_key_221 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isunsigned_shortarray ); } if ( tmp_dict_key_221 == NULL ) { Py_DECREF( tmp_assign_source_31 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151241 ], 43, 0 ); exception_tb = NULL; frame_module->f_lineno = 598; goto frame_exception_exit_1; } PyDict_SetItem( tmp_assign_source_31, tmp_dict_key_221, tmp_dict_value_221 ); tmp_dict_value_222 = const_str_plain_unsigned_long_long; tmp_dict_key_222 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isunsigned_long_longarray ); if (unlikely( tmp_dict_key_222 == NULL )) { tmp_dict_key_222 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isunsigned_long_longarray ); } if ( tmp_dict_key_222 == NULL ) { Py_DECREF( tmp_assign_source_31 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151284 ], 47, 0 ); exception_tb = NULL; frame_module->f_lineno = 599; goto frame_exception_exit_1; } PyDict_SetItem( tmp_assign_source_31, tmp_dict_key_222, tmp_dict_value_222 ); tmp_dict_value_223 = const_str_plain_long_long; tmp_dict_key_223 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_issigned_long_longarray ); if (unlikely( tmp_dict_key_223 == NULL )) { tmp_dict_key_223 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_issigned_long_longarray ); } if ( tmp_dict_key_223 == NULL ) { Py_DECREF( tmp_assign_source_31 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151331 ], 45, 0 ); exception_tb = NULL; frame_module->f_lineno = 600; goto frame_exception_exit_1; } PyDict_SetItem( tmp_assign_source_31, tmp_dict_key_223, tmp_dict_value_223 ); UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_typedef_need_dict, tmp_assign_source_31 ); tmp_assign_source_32 = PyList_New( 15 ); tmp_list_element_12 = _PyDict_NewPresized( 1 ); tmp_dict_value_224 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_sepdict ); if (unlikely( tmp_dict_value_224 == NULL )) { tmp_dict_value_224 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_sepdict ); } if ( tmp_dict_value_224 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150753 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 605; goto frame_exception_exit_1; } tmp_dict_key_224 = const_str_plain_separatorsfor; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_224, tmp_dict_value_224 ); PyList_SET_ITEM( tmp_assign_source_32, 0, tmp_list_element_12 ); tmp_list_element_12 = _PyDict_NewPresized( 3 ); tmp_dict_value_225 = PyList_New( 2 ); tmp_list_element_13 = const_str_digest_15904c114d20d74a77febfc4dfb77b85; Py_INCREF( tmp_list_element_13 ); PyList_SET_ITEM( tmp_dict_value_225, 0, tmp_list_element_13 ); tmp_list_element_13 = _PyDict_NewPresized( 1 ); tmp_dict_value_226 = const_str_digest_bd69b5f39c936f279a15218b0da5ea9b; tmp_dict_key_226 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_dict_key_226 == NULL )) { tmp_dict_key_226 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_dict_key_226 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); Py_DECREF( tmp_dict_value_225 ); Py_DECREF( tmp_list_element_13 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 609; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_13, tmp_dict_key_226, tmp_dict_value_226 ); PyList_SET_ITEM( tmp_dict_value_225, 1, tmp_list_element_13 ); tmp_dict_key_225 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_225, tmp_dict_value_225 ); Py_DECREF( tmp_dict_value_225 ); tmp_dict_value_227 = const_str_digest_2fa8b74c150f98704fd78cb5be16a2d3; tmp_dict_key_227 = const_str_plain_cleanupfrompyobj; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_227, tmp_dict_value_227 ); tmp_dict_value_228 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_typedef_need_dict ); if (unlikely( tmp_dict_value_228 == NULL )) { tmp_dict_value_228 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_typedef_need_dict ); } if ( tmp_dict_value_228 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151376 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 611; goto frame_exception_exit_1; } tmp_dict_key_228 = const_str_plain_need; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_228, tmp_dict_value_228 ); PyList_SET_ITEM( tmp_assign_source_32, 1, tmp_list_element_12 ); tmp_list_element_12 = _PyDict_NewPresized( 4 ); tmp_dict_value_229 = const_str_digest_0d59acae85d063e3f672d8da6daa0a85; tmp_dict_key_229 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_229, tmp_dict_value_229 ); tmp_dict_value_230 = _PyDict_NewPresized( 1 ); tmp_dict_value_231 = const_str_digest_890854844f87190b1c6e74a24b3f6e6e; tmp_dict_key_231 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); if (unlikely( tmp_dict_key_231 == NULL )) { tmp_dict_key_231 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); } if ( tmp_dict_key_231 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); Py_DECREF( tmp_dict_value_230 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125444 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 616; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_230, tmp_dict_key_231, tmp_dict_value_231 ); tmp_dict_key_230 = const_str_plain_need; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_230, tmp_dict_value_230 ); Py_DECREF( tmp_dict_value_230 ); tmp_dict_value_232 = _PyDict_NewPresized( 1 ); tmp_dict_value_233 = const_str_digest_3661f078f2728e5304b2e950f133b5c4; tmp_dict_key_233 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); if (unlikely( tmp_dict_key_233 == NULL )) { tmp_dict_key_233 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); } if ( tmp_dict_key_233 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); Py_DECREF( tmp_dict_value_232 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125444 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 617; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_232, tmp_dict_key_233, tmp_dict_value_233 ); tmp_dict_key_232 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_232, tmp_dict_value_232 ); Py_DECREF( tmp_dict_value_232 ); tmp_called_103 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_103 == NULL )) { tmp_called_103 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_103 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 618; goto frame_exception_exit_1; } tmp_call_arg_element_145 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isscalar ); if (unlikely( tmp_call_arg_element_145 == NULL )) { tmp_call_arg_element_145 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isscalar ); } if ( tmp_call_arg_element_145 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 72345 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 618; goto frame_exception_exit_1; } tmp_called_104 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_104 == NULL )) { tmp_called_104 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_104 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 618; goto frame_exception_exit_1; } tmp_call_arg_element_147 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_call_arg_element_147 == NULL )) { tmp_call_arg_element_147 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_call_arg_element_147 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 618; goto frame_exception_exit_1; } frame_module->f_lineno = 618; tmp_call_arg_element_146 = CALL_FUNCTION_WITH_ARGS1( tmp_called_104, tmp_call_arg_element_147 ); if ( tmp_call_arg_element_146 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); frame_module->f_lineno = 618; goto frame_exception_exit_1; } frame_module->f_lineno = 618; tmp_dict_value_234 = CALL_FUNCTION_WITH_ARGS2( tmp_called_103, tmp_call_arg_element_145, tmp_call_arg_element_146 ); Py_DECREF( tmp_call_arg_element_146 ); if ( tmp_dict_value_234 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); frame_module->f_lineno = 618; goto frame_exception_exit_1; } tmp_dict_key_234 = const_str_plain__check; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_234, tmp_dict_value_234 ); Py_DECREF( tmp_dict_value_234 ); PyList_SET_ITEM( tmp_assign_source_32, 2, tmp_list_element_12 ); tmp_list_element_12 = _PyDict_NewPresized( 5 ); tmp_dict_value_235 = const_str_digest_09de792d93cc23e6cd4f80b6fa458fd3; tmp_dict_key_235 = const_str_plain_return; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_235, tmp_dict_value_235 ); tmp_dict_value_236 = const_str_digest_52f3cb551798f750c7eedaa7874151b2; tmp_dict_key_236 = const_str_plain_docstrout; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_236, tmp_dict_value_236 ); tmp_dict_value_237 = const_str_digest_f872d11254dc4965c1a21e47d3db82a2; tmp_dict_key_237 = const_str_plain_docreturn; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_237, tmp_dict_value_237 ); tmp_dict_value_238 = const_str_digest_e5fa1be03dc4204e78792261a4698ad0; tmp_dict_key_238 = const_str_plain_returnformat; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_238, tmp_dict_value_238 ); tmp_called_105 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_105 == NULL )) { tmp_called_105 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_105 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 625; goto frame_exception_exit_1; } tmp_call_arg_element_148 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isscalar ); if (unlikely( tmp_call_arg_element_148 == NULL )) { tmp_call_arg_element_148 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isscalar ); } if ( tmp_call_arg_element_148 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 72345 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 625; goto frame_exception_exit_1; } tmp_called_106 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_106 == NULL )) { tmp_called_106 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_106 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 625; goto frame_exception_exit_1; } tmp_call_arg_element_150 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_call_arg_element_150 == NULL )) { tmp_call_arg_element_150 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_call_arg_element_150 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 625; goto frame_exception_exit_1; } frame_module->f_lineno = 625; tmp_call_arg_element_149 = CALL_FUNCTION_WITH_ARGS1( tmp_called_106, tmp_call_arg_element_150 ); if ( tmp_call_arg_element_149 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); frame_module->f_lineno = 625; goto frame_exception_exit_1; } tmp_call_arg_element_151 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_out ); if (unlikely( tmp_call_arg_element_151 == NULL )) { tmp_call_arg_element_151 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_out ); } if ( tmp_call_arg_element_151 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); Py_DECREF( tmp_call_arg_element_149 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124107 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 625; goto frame_exception_exit_1; } frame_module->f_lineno = 625; tmp_dict_value_239 = CALL_FUNCTION_WITH_ARGS3( tmp_called_105, tmp_call_arg_element_148, tmp_call_arg_element_149, tmp_call_arg_element_151 ); Py_DECREF( tmp_call_arg_element_149 ); if ( tmp_dict_value_239 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); frame_module->f_lineno = 625; goto frame_exception_exit_1; } tmp_dict_key_239 = const_str_plain__check; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_239, tmp_dict_value_239 ); Py_DECREF( tmp_dict_value_239 ); PyList_SET_ITEM( tmp_assign_source_32, 3, tmp_list_element_12 ); tmp_list_element_12 = _PyDict_NewPresized( 3 ); tmp_dict_value_240 = const_str_digest_6f3504cf0f8ede84a5eacc957cd112c0; tmp_dict_key_240 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_240, tmp_dict_value_240 ); tmp_dict_value_241 = _PyDict_NewPresized( 1 ); tmp_dict_value_242 = const_str_digest_b4d5fd0edbbdd276f1a0a17ef81e8860; tmp_dict_key_242 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); if (unlikely( tmp_dict_key_242 == NULL )) { tmp_dict_key_242 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); } if ( tmp_dict_key_242 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); Py_DECREF( tmp_dict_value_241 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125444 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 630; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_241, tmp_dict_key_242, tmp_dict_value_242 ); tmp_dict_key_241 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_241, tmp_dict_value_241 ); Py_DECREF( tmp_dict_value_241 ); tmp_dict_value_243 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_dict_value_243 == NULL )) { tmp_dict_value_243 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_dict_value_243 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 631; goto frame_exception_exit_1; } tmp_dict_key_243 = const_str_plain__check; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_243, tmp_dict_value_243 ); PyList_SET_ITEM( tmp_assign_source_32, 4, tmp_list_element_12 ); tmp_list_element_12 = _PyDict_NewPresized( 3 ); tmp_dict_value_244 = LIST_COPY( const_list_10b104c3768849b37f92dfc64a682f14_list ); tmp_dict_key_244 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_244, tmp_dict_value_244 ); Py_DECREF( tmp_dict_value_244 ); tmp_dict_value_245 = LIST_COPY( const_list_str_digest_901a22001a0c7f25add446a5f68900d0_list ); tmp_dict_key_245 = const_str_plain_need; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_245, tmp_dict_value_245 ); Py_DECREF( tmp_dict_value_245 ); tmp_dict_value_246 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isstring ); if (unlikely( tmp_dict_value_246 == NULL )) { tmp_dict_value_246 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isstring ); } if ( tmp_dict_value_246 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124629 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 639; goto frame_exception_exit_1; } tmp_dict_key_246 = const_str_plain__check; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_246, tmp_dict_value_246 ); PyList_SET_ITEM( tmp_assign_source_32, 5, tmp_list_element_12 ); tmp_list_element_12 = _PyDict_NewPresized( 3 ); tmp_dict_value_247 = LIST_COPY( const_list_53e499b918b44aac469e052ee883b608_list ); tmp_dict_key_247 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_247, tmp_dict_value_247 ); Py_DECREF( tmp_dict_value_247 ); tmp_dict_value_248 = PyList_New( 3 ); tmp_list_element_14 = const_str_digest_901a22001a0c7f25add446a5f68900d0; Py_INCREF( tmp_list_element_14 ); PyList_SET_ITEM( tmp_dict_value_248, 0, tmp_list_element_14 ); tmp_list_element_14 = _PyDict_NewPresized( 1 ); tmp_dict_value_249 = const_str_plain_forcomb; tmp_dict_key_249 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); if (unlikely( tmp_dict_key_249 == NULL )) { tmp_dict_key_249 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); } if ( tmp_dict_key_249 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); Py_DECREF( tmp_dict_value_248 ); Py_DECREF( tmp_list_element_14 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125444 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 647; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_14, tmp_dict_key_249, tmp_dict_value_249 ); PyList_SET_ITEM( tmp_dict_value_248, 1, tmp_list_element_14 ); tmp_list_element_14 = _PyDict_NewPresized( 1 ); tmp_dict_value_250 = const_str_plain_CFUNCSMESS; tmp_dict_key_250 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); if (unlikely( tmp_dict_key_250 == NULL )) { tmp_dict_key_250 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); } if ( tmp_dict_key_250 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); Py_DECREF( tmp_dict_value_248 ); Py_DECREF( tmp_list_element_14 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125444 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 647; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_14, tmp_dict_key_250, tmp_dict_value_250 ); PyList_SET_ITEM( tmp_dict_value_248, 2, tmp_list_element_14 ); tmp_dict_key_248 = const_str_plain_need; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_248, tmp_dict_value_248 ); Py_DECREF( tmp_dict_value_248 ); tmp_dict_value_251 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isarray ); if (unlikely( tmp_dict_value_251 == NULL )) { tmp_dict_value_251 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isarray ); } if ( tmp_dict_value_251 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124593 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 648; goto frame_exception_exit_1; } tmp_dict_key_251 = const_str_plain__check; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_251, tmp_dict_value_251 ); PyList_SET_ITEM( tmp_assign_source_32, 6, tmp_list_element_12 ); tmp_list_element_12 = _PyDict_NewPresized( 1 ); tmp_called_107 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_107 == NULL )) { tmp_called_107 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_107 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 652; goto frame_exception_exit_1; } tmp_call_arg_element_152 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isarray ); if (unlikely( tmp_call_arg_element_152 == NULL )) { tmp_call_arg_element_152 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isarray ); } if ( tmp_call_arg_element_152 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124593 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 652; goto frame_exception_exit_1; } tmp_called_108 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_108 == NULL )) { tmp_called_108 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_108 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 652; goto frame_exception_exit_1; } tmp_call_arg_element_154 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplexarray ); if (unlikely( tmp_call_arg_element_154 == NULL )) { tmp_call_arg_element_154 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplexarray ); } if ( tmp_call_arg_element_154 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128275 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 652; goto frame_exception_exit_1; } frame_module->f_lineno = 652; tmp_call_arg_element_153 = CALL_FUNCTION_WITH_ARGS1( tmp_called_108, tmp_call_arg_element_154 ); if ( tmp_call_arg_element_153 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); frame_module->f_lineno = 652; goto frame_exception_exit_1; } frame_module->f_lineno = 652; tmp_dict_value_252 = CALL_FUNCTION_WITH_ARGS2( tmp_called_107, tmp_call_arg_element_152, tmp_call_arg_element_153 ); Py_DECREF( tmp_call_arg_element_153 ); if ( tmp_dict_value_252 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); frame_module->f_lineno = 652; goto frame_exception_exit_1; } tmp_dict_key_252 = const_str_plain__check; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_252, tmp_dict_value_252 ); Py_DECREF( tmp_dict_value_252 ); PyList_SET_ITEM( tmp_assign_source_32, 7, tmp_list_element_12 ); tmp_list_element_12 = _PyDict_NewPresized( 1 ); tmp_called_109 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_109 == NULL )) { tmp_called_109 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_109 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 654; goto frame_exception_exit_1; } tmp_call_arg_element_155 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isarray ); if (unlikely( tmp_call_arg_element_155 == NULL )) { tmp_call_arg_element_155 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isarray ); } if ( tmp_call_arg_element_155 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124593 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 654; goto frame_exception_exit_1; } tmp_called_110 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_110 == NULL )) { tmp_called_110 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_110 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 654; goto frame_exception_exit_1; } tmp_call_arg_element_157 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplexarray ); if (unlikely( tmp_call_arg_element_157 == NULL )) { tmp_call_arg_element_157 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplexarray ); } if ( tmp_call_arg_element_157 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128275 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 654; goto frame_exception_exit_1; } frame_module->f_lineno = 654; tmp_call_arg_element_156 = CALL_FUNCTION_WITH_ARGS1( tmp_called_110, tmp_call_arg_element_157 ); if ( tmp_call_arg_element_156 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); frame_module->f_lineno = 654; goto frame_exception_exit_1; } tmp_call_arg_element_158 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_call_arg_element_158 == NULL )) { tmp_call_arg_element_158 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_call_arg_element_158 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); Py_DECREF( tmp_call_arg_element_156 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 654; goto frame_exception_exit_1; } frame_module->f_lineno = 654; tmp_dict_value_253 = CALL_FUNCTION_WITH_ARGS3( tmp_called_109, tmp_call_arg_element_155, tmp_call_arg_element_156, tmp_call_arg_element_158 ); Py_DECREF( tmp_call_arg_element_156 ); if ( tmp_dict_value_253 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); frame_module->f_lineno = 654; goto frame_exception_exit_1; } tmp_dict_key_253 = const_str_plain__check; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_253, tmp_dict_value_253 ); Py_DECREF( tmp_dict_value_253 ); PyList_SET_ITEM( tmp_assign_source_32, 8, tmp_list_element_12 ); tmp_list_element_12 = _PyDict_NewPresized( 3 ); tmp_dict_value_254 = const_str_digest_034683ceccce831b3c4724622e7c61e0; tmp_dict_key_254 = const_str_plain_need; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_254, tmp_dict_value_254 ); tmp_dict_value_255 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isint1array ); if (unlikely( tmp_dict_value_255 == NULL )) { tmp_dict_value_255 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isint1array ); } if ( tmp_dict_value_255 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151415 ], 33, 0 ); exception_tb = NULL; frame_module->f_lineno = 658; goto frame_exception_exit_1; } tmp_dict_key_255 = const_str_plain__check; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_255, tmp_dict_value_255 ); tmp_dict_value_256 = const_str_empty; tmp_dict_key_256 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_256, tmp_dict_value_256 ); PyList_SET_ITEM( tmp_assign_source_32, 9, tmp_list_element_12 ); tmp_list_element_12 = _PyDict_NewPresized( 3 ); tmp_dict_value_257 = const_str_digest_034683ceccce831b3c4724622e7c61e0; tmp_dict_key_257 = const_str_plain_need; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_257, tmp_dict_value_257 ); tmp_dict_value_258 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isunsigned_chararray ); if (unlikely( tmp_dict_value_258 == NULL )) { tmp_dict_value_258 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isunsigned_chararray ); } if ( tmp_dict_value_258 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151199 ], 42, 0 ); exception_tb = NULL; frame_module->f_lineno = 663; goto frame_exception_exit_1; } tmp_dict_key_258 = const_str_plain__check; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_258, tmp_dict_value_258 ); tmp_dict_value_259 = const_str_empty; tmp_dict_key_259 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_259, tmp_dict_value_259 ); PyList_SET_ITEM( tmp_assign_source_32, 10, tmp_list_element_12 ); tmp_list_element_12 = _PyDict_NewPresized( 3 ); tmp_dict_value_260 = const_str_digest_034683ceccce831b3c4724622e7c61e0; tmp_dict_key_260 = const_str_plain_need; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_260, tmp_dict_value_260 ); tmp_dict_value_261 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isunsigned_shortarray ); if (unlikely( tmp_dict_value_261 == NULL )) { tmp_dict_value_261 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isunsigned_shortarray ); } if ( tmp_dict_value_261 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151241 ], 43, 0 ); exception_tb = NULL; frame_module->f_lineno = 668; goto frame_exception_exit_1; } tmp_dict_key_261 = const_str_plain__check; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_261, tmp_dict_value_261 ); tmp_dict_value_262 = const_str_empty; tmp_dict_key_262 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_262, tmp_dict_value_262 ); PyList_SET_ITEM( tmp_assign_source_32, 11, tmp_list_element_12 ); tmp_list_element_12 = _PyDict_NewPresized( 3 ); tmp_dict_value_263 = const_str_digest_034683ceccce831b3c4724622e7c61e0; tmp_dict_key_263 = const_str_plain_need; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_263, tmp_dict_value_263 ); tmp_dict_value_264 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isunsigned_long_longarray ); if (unlikely( tmp_dict_value_264 == NULL )) { tmp_dict_value_264 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isunsigned_long_longarray ); } if ( tmp_dict_value_264 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151284 ], 47, 0 ); exception_tb = NULL; frame_module->f_lineno = 673; goto frame_exception_exit_1; } tmp_dict_key_264 = const_str_plain__check; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_264, tmp_dict_value_264 ); tmp_dict_value_265 = const_str_empty; tmp_dict_key_265 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_265, tmp_dict_value_265 ); PyList_SET_ITEM( tmp_assign_source_32, 12, tmp_list_element_12 ); tmp_list_element_12 = _PyDict_NewPresized( 3 ); tmp_dict_value_266 = const_str_digest_034683ceccce831b3c4724622e7c61e0; tmp_dict_key_266 = const_str_plain_need; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_266, tmp_dict_value_266 ); tmp_dict_value_267 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplexarray ); if (unlikely( tmp_dict_value_267 == NULL )) { tmp_dict_value_267 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplexarray ); } if ( tmp_dict_value_267 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128275 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 678; goto frame_exception_exit_1; } tmp_dict_key_267 = const_str_plain__check; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_267, tmp_dict_value_267 ); tmp_dict_value_268 = const_str_empty; tmp_dict_key_268 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_268, tmp_dict_value_268 ); PyList_SET_ITEM( tmp_assign_source_32, 13, tmp_list_element_12 ); tmp_list_element_12 = _PyDict_NewPresized( 3 ); tmp_dict_value_269 = _PyDict_NewPresized( 1 ); tmp_dict_value_270 = const_str_digest_fa68c6dda4f168588cd3f272b7e3b4fb; tmp_dict_key_270 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isarrayofstrings ); if (unlikely( tmp_dict_key_270 == NULL )) { tmp_dict_key_270 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isarrayofstrings ); } if ( tmp_dict_key_270 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); Py_DECREF( tmp_dict_value_269 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126501 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 683; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_269, tmp_dict_key_270, tmp_dict_value_270 ); tmp_dict_key_269 = const_str_plain_callfortranappend; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_269, tmp_dict_value_269 ); Py_DECREF( tmp_dict_value_269 ); tmp_dict_value_271 = const_str_plain_string; tmp_dict_key_271 = const_str_plain_need; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_271, tmp_dict_value_271 ); tmp_dict_value_272 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isstringarray ); if (unlikely( tmp_dict_value_272 == NULL )) { tmp_dict_value_272 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isstringarray ); } if ( tmp_dict_value_272 == NULL ) { Py_DECREF( tmp_assign_source_32 ); Py_DECREF( tmp_list_element_12 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124666 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 685; goto frame_exception_exit_1; } tmp_dict_key_272 = const_str_plain__check; PyDict_SetItem( tmp_list_element_12, tmp_dict_key_272, tmp_dict_value_272 ); PyList_SET_ITEM( tmp_assign_source_32, 14, tmp_list_element_12 ); UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_aux_rules, tmp_assign_source_32 ); tmp_assign_source_33 = PyList_New( 42 ); tmp_list_element_15 = _PyDict_NewPresized( 1 ); tmp_dict_value_273 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_sepdict ); if (unlikely( tmp_dict_value_273 == NULL )) { tmp_dict_value_273 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_sepdict ); } if ( tmp_dict_value_273 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 150753 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 691; goto frame_exception_exit_1; } tmp_dict_key_273 = const_str_plain_separatorsfor; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_273, tmp_dict_value_273 ); PyList_SET_ITEM( tmp_assign_source_33, 0, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 4 ); tmp_dict_value_274 = PyList_New( 2 ); tmp_list_element_16 = const_str_digest_c3144b55fa49931d99eadea25c55a6a9; Py_INCREF( tmp_list_element_16 ); PyList_SET_ITEM( tmp_dict_value_274, 0, tmp_list_element_16 ); tmp_list_element_16 = _PyDict_NewPresized( 1 ); tmp_dict_value_275 = const_str_digest_bd69b5f39c936f279a15218b0da5ea9b; tmp_dict_key_275 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_dict_key_275 == NULL )) { tmp_dict_key_275 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_dict_key_275 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_274 ); Py_DECREF( tmp_list_element_16 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 695; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_16, tmp_dict_key_275, tmp_dict_value_275 ); PyList_SET_ITEM( tmp_dict_value_274, 1, tmp_list_element_16 ); tmp_dict_key_274 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_274, tmp_dict_value_274 ); Py_DECREF( tmp_dict_value_274 ); tmp_dict_value_276 = const_str_digest_2fa8b74c150f98704fd78cb5be16a2d3; tmp_dict_key_276 = const_str_plain_cleanupfrompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_276, tmp_dict_value_276 ); tmp_dict_value_277 = const_str_empty; tmp_dict_key_277 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_277, tmp_dict_value_277 ); tmp_dict_value_278 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_typedef_need_dict ); if (unlikely( tmp_dict_value_278 == NULL )) { tmp_dict_value_278 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_typedef_need_dict ); } if ( tmp_dict_value_278 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151376 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 698; goto frame_exception_exit_1; } tmp_dict_key_278 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_278, tmp_dict_value_278 ); PyList_SET_ITEM( tmp_assign_source_33, 1, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 7 ); tmp_dict_value_279 = _PyDict_NewPresized( 1 ); tmp_dict_value_280 = const_str_digest_f5c55f1a250689d1c890b2eab5aa0071; tmp_called_111 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_111 == NULL )) { tmp_called_111 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_111 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_279 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 702; goto frame_exception_exit_1; } tmp_call_arg_element_159 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_call_arg_element_159 == NULL )) { tmp_call_arg_element_159 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_call_arg_element_159 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_279 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124244 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 702; goto frame_exception_exit_1; } tmp_call_arg_element_160 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_call_arg_element_160 == NULL )) { tmp_call_arg_element_160 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_call_arg_element_160 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_279 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 702; goto frame_exception_exit_1; } frame_module->f_lineno = 702; tmp_dict_key_280 = CALL_FUNCTION_WITH_ARGS2( tmp_called_111, tmp_call_arg_element_159, tmp_call_arg_element_160 ); if ( tmp_dict_key_280 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_279 ); frame_module->f_lineno = 702; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_279, tmp_dict_key_280, tmp_dict_value_280 ); Py_DECREF( tmp_dict_key_280 ); tmp_dict_key_279 = const_str_plain_docstropt; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_279, tmp_dict_value_279 ); Py_DECREF( tmp_dict_value_279 ); tmp_dict_value_281 = _PyDict_NewPresized( 1 ); tmp_dict_value_282 = const_str_digest_f5c55f1a250689d1c890b2eab5aa0071; tmp_called_112 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_112 == NULL )) { tmp_called_112 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_112 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_281 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 703; goto frame_exception_exit_1; } tmp_call_arg_element_161 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isrequired ); if (unlikely( tmp_call_arg_element_161 == NULL )) { tmp_call_arg_element_161 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isrequired ); } if ( tmp_call_arg_element_161 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_281 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128672 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 703; goto frame_exception_exit_1; } tmp_call_arg_element_162 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_call_arg_element_162 == NULL )) { tmp_call_arg_element_162 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_call_arg_element_162 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_281 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 703; goto frame_exception_exit_1; } frame_module->f_lineno = 703; tmp_dict_key_282 = CALL_FUNCTION_WITH_ARGS2( tmp_called_112, tmp_call_arg_element_161, tmp_call_arg_element_162 ); if ( tmp_dict_key_282 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_281 ); frame_module->f_lineno = 703; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_281, tmp_dict_key_282, tmp_dict_value_282 ); Py_DECREF( tmp_dict_key_282 ); tmp_dict_key_281 = const_str_plain_docstrreq; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_281, tmp_dict_value_281 ); Py_DECREF( tmp_dict_value_281 ); tmp_dict_value_283 = _PyDict_NewPresized( 1 ); tmp_dict_value_284 = const_str_digest_52f3cb551798f750c7eedaa7874151b2; tmp_dict_key_284 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_out ); if (unlikely( tmp_dict_key_284 == NULL )) { tmp_dict_key_284 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_out ); } if ( tmp_dict_key_284 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_283 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124107 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 704; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_283, tmp_dict_key_284, tmp_dict_value_284 ); tmp_dict_key_283 = const_str_plain_docstrout; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_283, tmp_dict_value_283 ); Py_DECREF( tmp_dict_value_283 ); tmp_dict_value_285 = _PyDict_NewPresized( 1 ); tmp_dict_value_286 = PyList_New( 2 ); tmp_list_element_17 = const_str_digest_8b28e68d7237750459f812a4e45fbbea; Py_INCREF( tmp_list_element_17 ); PyList_SET_ITEM( tmp_dict_value_286, 0, tmp_list_element_17 ); tmp_list_element_17 = _PyDict_NewPresized( 1 ); tmp_dict_value_287 = const_str_digest_2fea6faaece8b13aba5205180919cad4; tmp_dict_key_287 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasnote ); if (unlikely( tmp_dict_key_287 == NULL )) { tmp_dict_key_287 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasnote ); } if ( tmp_dict_key_287 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_285 ); Py_DECREF( tmp_dict_value_286 ); Py_DECREF( tmp_list_element_17 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125485 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 706; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_17, tmp_dict_key_287, tmp_dict_value_287 ); PyList_SET_ITEM( tmp_dict_value_286, 1, tmp_list_element_17 ); tmp_called_113 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_113 == NULL )) { tmp_called_113 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_113 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_285 ); Py_DECREF( tmp_dict_value_286 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 705; goto frame_exception_exit_1; } tmp_call_arg_element_163 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_call_arg_element_163 == NULL )) { tmp_call_arg_element_163 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_call_arg_element_163 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_285 ); Py_DECREF( tmp_dict_value_286 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124244 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 705; goto frame_exception_exit_1; } tmp_call_arg_element_164 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_call_arg_element_164 == NULL )) { tmp_call_arg_element_164 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_call_arg_element_164 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_285 ); Py_DECREF( tmp_dict_value_286 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 705; goto frame_exception_exit_1; } frame_module->f_lineno = 705; tmp_dict_key_286 = CALL_FUNCTION_WITH_ARGS2( tmp_called_113, tmp_call_arg_element_163, tmp_call_arg_element_164 ); if ( tmp_dict_key_286 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_285 ); Py_DECREF( tmp_dict_value_286 ); frame_module->f_lineno = 705; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_285, tmp_dict_key_286, tmp_dict_value_286 ); Py_DECREF( tmp_dict_value_286 ); Py_DECREF( tmp_dict_key_286 ); tmp_dict_key_285 = const_str_plain_latexdocstropt; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_285, tmp_dict_value_285 ); Py_DECREF( tmp_dict_value_285 ); tmp_dict_value_288 = _PyDict_NewPresized( 1 ); tmp_dict_value_289 = PyList_New( 2 ); tmp_list_element_18 = const_str_digest_8b28e68d7237750459f812a4e45fbbea; Py_INCREF( tmp_list_element_18 ); PyList_SET_ITEM( tmp_dict_value_289, 0, tmp_list_element_18 ); tmp_list_element_18 = _PyDict_NewPresized( 1 ); tmp_dict_value_290 = const_str_digest_2fea6faaece8b13aba5205180919cad4; tmp_dict_key_290 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasnote ); if (unlikely( tmp_dict_key_290 == NULL )) { tmp_dict_key_290 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasnote ); } if ( tmp_dict_key_290 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_288 ); Py_DECREF( tmp_dict_value_289 ); Py_DECREF( tmp_list_element_18 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125485 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 708; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_18, tmp_dict_key_290, tmp_dict_value_290 ); PyList_SET_ITEM( tmp_dict_value_289, 1, tmp_list_element_18 ); tmp_called_114 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_114 == NULL )) { tmp_called_114 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_114 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_288 ); Py_DECREF( tmp_dict_value_289 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 707; goto frame_exception_exit_1; } tmp_call_arg_element_165 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isrequired ); if (unlikely( tmp_call_arg_element_165 == NULL )) { tmp_call_arg_element_165 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isrequired ); } if ( tmp_call_arg_element_165 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_288 ); Py_DECREF( tmp_dict_value_289 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128672 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 707; goto frame_exception_exit_1; } tmp_call_arg_element_166 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_call_arg_element_166 == NULL )) { tmp_call_arg_element_166 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_call_arg_element_166 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_288 ); Py_DECREF( tmp_dict_value_289 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 707; goto frame_exception_exit_1; } frame_module->f_lineno = 707; tmp_dict_key_289 = CALL_FUNCTION_WITH_ARGS2( tmp_called_114, tmp_call_arg_element_165, tmp_call_arg_element_166 ); if ( tmp_dict_key_289 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_288 ); Py_DECREF( tmp_dict_value_289 ); frame_module->f_lineno = 707; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_288, tmp_dict_key_289, tmp_dict_value_289 ); Py_DECREF( tmp_dict_value_289 ); Py_DECREF( tmp_dict_key_289 ); tmp_dict_key_288 = const_str_plain_latexdocstrreq; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_288, tmp_dict_value_288 ); Py_DECREF( tmp_dict_value_288 ); tmp_dict_value_291 = _PyDict_NewPresized( 1 ); tmp_dict_value_292 = PyList_New( 2 ); tmp_list_element_19 = const_str_digest_21848c21ee715afb46bb5dff54f12759; Py_INCREF( tmp_list_element_19 ); PyList_SET_ITEM( tmp_dict_value_292, 0, tmp_list_element_19 ); tmp_list_element_19 = _PyDict_NewPresized( 2 ); tmp_dict_value_293 = const_str_digest_2fea6faaece8b13aba5205180919cad4; tmp_called_115 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_115 == NULL )) { tmp_called_115 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_115 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_291 ); Py_DECREF( tmp_dict_value_292 ); Py_DECREF( tmp_list_element_19 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 710; goto frame_exception_exit_1; } tmp_call_arg_element_167 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasnote ); if (unlikely( tmp_call_arg_element_167 == NULL )) { tmp_call_arg_element_167 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasnote ); } if ( tmp_call_arg_element_167 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_291 ); Py_DECREF( tmp_dict_value_292 ); Py_DECREF( tmp_list_element_19 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125485 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 710; goto frame_exception_exit_1; } tmp_call_arg_element_168 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_hide ); if (unlikely( tmp_call_arg_element_168 == NULL )) { tmp_call_arg_element_168 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_hide ); } if ( tmp_call_arg_element_168 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_291 ); Py_DECREF( tmp_dict_value_292 ); Py_DECREF( tmp_list_element_19 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124141 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 710; goto frame_exception_exit_1; } frame_module->f_lineno = 710; tmp_dict_key_293 = CALL_FUNCTION_WITH_ARGS2( tmp_called_115, tmp_call_arg_element_167, tmp_call_arg_element_168 ); if ( tmp_dict_key_293 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_291 ); Py_DECREF( tmp_dict_value_292 ); Py_DECREF( tmp_list_element_19 ); frame_module->f_lineno = 710; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_19, tmp_dict_key_293, tmp_dict_value_293 ); Py_DECREF( tmp_dict_key_293 ); tmp_dict_value_294 = const_str_digest_73a2c45e7b0015e7c3fd1d2bb61db866; tmp_called_116 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_116 == NULL )) { tmp_called_116 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_116 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_291 ); Py_DECREF( tmp_dict_value_292 ); Py_DECREF( tmp_list_element_19 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 711; goto frame_exception_exit_1; } tmp_call_arg_element_169 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasnote ); if (unlikely( tmp_call_arg_element_169 == NULL )) { tmp_call_arg_element_169 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasnote ); } if ( tmp_call_arg_element_169 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_291 ); Py_DECREF( tmp_dict_value_292 ); Py_DECREF( tmp_list_element_19 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125485 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 711; goto frame_exception_exit_1; } tmp_call_arg_element_170 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_call_arg_element_170 == NULL )) { tmp_call_arg_element_170 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_call_arg_element_170 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_291 ); Py_DECREF( tmp_dict_value_292 ); Py_DECREF( tmp_list_element_19 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 711; goto frame_exception_exit_1; } frame_module->f_lineno = 711; tmp_dict_key_294 = CALL_FUNCTION_WITH_ARGS2( tmp_called_116, tmp_call_arg_element_169, tmp_call_arg_element_170 ); if ( tmp_dict_key_294 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_291 ); Py_DECREF( tmp_dict_value_292 ); Py_DECREF( tmp_list_element_19 ); frame_module->f_lineno = 711; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_19, tmp_dict_key_294, tmp_dict_value_294 ); Py_DECREF( tmp_dict_key_294 ); PyList_SET_ITEM( tmp_dict_value_292, 1, tmp_list_element_19 ); tmp_dict_key_292 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_out ); if (unlikely( tmp_dict_key_292 == NULL )) { tmp_dict_key_292 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_out ); } if ( tmp_dict_key_292 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_291 ); Py_DECREF( tmp_dict_value_292 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124107 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 709; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_291, tmp_dict_key_292, tmp_dict_value_292 ); Py_DECREF( tmp_dict_value_292 ); tmp_dict_key_291 = const_str_plain_latexdocstrout; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_291, tmp_dict_value_291 ); Py_DECREF( tmp_dict_value_291 ); tmp_dict_value_295 = const_str_empty; tmp_dict_key_295 = const_str_plain_depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_295, tmp_dict_value_295 ); PyList_SET_ITEM( tmp_assign_source_33, 2, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 3 ); tmp_dict_value_296 = const_str_digest_3675f5d015dddadfe52770fb5aa734ea; tmp_dict_key_296 = const_str_plain_kwlist; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_296, tmp_dict_value_296 ); tmp_dict_value_297 = const_str_digest_8a412c5a481127f099db01c171a0fb22; tmp_dict_key_297 = const_str_plain_docsign; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_297, tmp_dict_value_297 ); tmp_called_117 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_117 == NULL )) { tmp_called_117 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_117 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 718; goto frame_exception_exit_1; } tmp_call_arg_element_171 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_call_arg_element_171 == NULL )) { tmp_call_arg_element_171 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_call_arg_element_171 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 718; goto frame_exception_exit_1; } tmp_called_118 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_118 == NULL )) { tmp_called_118 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_118 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 718; goto frame_exception_exit_1; } tmp_call_arg_element_173 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_call_arg_element_173 == NULL )) { tmp_call_arg_element_173 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_call_arg_element_173 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124244 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 718; goto frame_exception_exit_1; } frame_module->f_lineno = 718; tmp_call_arg_element_172 = CALL_FUNCTION_WITH_ARGS1( tmp_called_118, tmp_call_arg_element_173 ); if ( tmp_call_arg_element_172 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 718; goto frame_exception_exit_1; } frame_module->f_lineno = 718; tmp_dict_value_298 = CALL_FUNCTION_WITH_ARGS2( tmp_called_117, tmp_call_arg_element_171, tmp_call_arg_element_172 ); Py_DECREF( tmp_call_arg_element_172 ); if ( tmp_dict_value_298 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 718; goto frame_exception_exit_1; } tmp_dict_key_298 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_298, tmp_dict_value_298 ); Py_DECREF( tmp_dict_value_298 ); PyList_SET_ITEM( tmp_assign_source_33, 3, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 4 ); tmp_dict_value_299 = const_str_digest_3675f5d015dddadfe52770fb5aa734ea; tmp_dict_key_299 = const_str_plain_kwlistopt; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_299, tmp_dict_value_299 ); tmp_dict_value_300 = const_str_digest_d4c31f89fcf78e3659ade9a24fdf42d4; tmp_dict_key_300 = const_str_plain_docsignopt; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_300, tmp_dict_value_300 ); tmp_dict_value_301 = const_str_digest_8a412c5a481127f099db01c171a0fb22; tmp_dict_key_301 = const_str_plain_docsignoptshort; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_301, tmp_dict_value_301 ); tmp_called_119 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_119 == NULL )) { tmp_called_119 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_119 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 724; goto frame_exception_exit_1; } tmp_call_arg_element_174 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_call_arg_element_174 == NULL )) { tmp_call_arg_element_174 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_call_arg_element_174 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 724; goto frame_exception_exit_1; } tmp_call_arg_element_175 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_call_arg_element_175 == NULL )) { tmp_call_arg_element_175 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_call_arg_element_175 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124244 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 724; goto frame_exception_exit_1; } frame_module->f_lineno = 724; tmp_dict_value_302 = CALL_FUNCTION_WITH_ARGS2( tmp_called_119, tmp_call_arg_element_174, tmp_call_arg_element_175 ); if ( tmp_dict_value_302 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 724; goto frame_exception_exit_1; } tmp_dict_key_302 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_302, tmp_dict_value_302 ); Py_DECREF( tmp_dict_value_302 ); PyList_SET_ITEM( tmp_assign_source_33, 4, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 3 ); tmp_dict_value_303 = const_str_digest_f872d11254dc4965c1a21e47d3db82a2; tmp_dict_key_303 = const_str_plain_docreturn; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_303, tmp_dict_value_303 ); tmp_dict_value_304 = const_str_digest_e5fa1be03dc4204e78792261a4698ad0; tmp_dict_key_304 = const_str_plain_returnformat; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_304, tmp_dict_value_304 ); tmp_dict_value_305 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_out ); if (unlikely( tmp_dict_value_305 == NULL )) { tmp_dict_value_305 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_out ); } if ( tmp_dict_value_305 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124107 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 730; goto frame_exception_exit_1; } tmp_dict_key_305 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_305, tmp_dict_value_305 ); PyList_SET_ITEM( tmp_assign_source_33, 5, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 18 ); tmp_dict_value_306 = _PyDict_NewPresized( 1 ); tmp_dict_value_307 = const_str_digest_41c2fd756c3e693448d5dfd166c13fac; tmp_dict_key_307 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_dict_key_307 == NULL )) { tmp_dict_key_307 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_dict_key_307 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_306 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 734; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_306, tmp_dict_key_307, tmp_dict_value_307 ); tmp_dict_key_306 = const_str_plain_docsignxa; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_306, tmp_dict_value_306 ); Py_DECREF( tmp_dict_value_306 ); tmp_dict_value_308 = _PyDict_NewPresized( 1 ); tmp_dict_value_309 = const_str_digest_231cb7effd90b3fd8e0b9b743f769003; tmp_dict_key_309 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_dict_key_309 == NULL )) { tmp_dict_key_309 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_dict_key_309 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_308 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 735; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_308, tmp_dict_key_309, tmp_dict_value_309 ); tmp_dict_key_308 = const_str_plain_docsignxashort; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_308, tmp_dict_value_308 ); Py_DECREF( tmp_dict_value_308 ); tmp_dict_value_310 = _PyDict_NewPresized( 1 ); tmp_dict_value_311 = const_str_digest_941afd4ce1527d74fbd8be0829fa1a59; tmp_dict_key_311 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_dict_key_311 == NULL )) { tmp_dict_key_311 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_dict_key_311 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_310 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 736; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_310, tmp_dict_key_311, tmp_dict_value_311 ); tmp_dict_key_310 = const_str_plain_docstropt; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_310, tmp_dict_value_310 ); Py_DECREF( tmp_dict_value_310 ); tmp_dict_value_312 = const_str_digest_7a89be2ff5758619ac83558d9a101c74; tmp_dict_key_312 = const_str_plain_docstrcbs; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_312, tmp_dict_value_312 ); tmp_dict_value_313 = const_str_digest_b8ac32b2a634222f497d81e945fc69e2; tmp_dict_key_313 = const_str_plain_latexdocstrcbs; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_313, tmp_dict_value_313 ); tmp_dict_value_314 = _PyDict_NewPresized( 1 ); tmp_dict_value_315 = const_str_digest_8842d8dab6d8e1a03bd3209f4c7d8c85; tmp_dict_key_315 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_dict_key_315 == NULL )) { tmp_dict_key_315 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_dict_key_315 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_314 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 739; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_314, tmp_dict_key_315, tmp_dict_value_315 ); tmp_dict_key_314 = const_str_plain_latexdocstropt; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_314, tmp_dict_value_314 ); Py_DECREF( tmp_dict_value_314 ); tmp_dict_value_316 = PyList_New( 5 ); tmp_list_element_20 = const_str_digest_94bcdde9f91533758026d6169c99b194; Py_INCREF( tmp_list_element_20 ); PyList_SET_ITEM( tmp_dict_value_316, 0, tmp_list_element_20 ); tmp_list_element_20 = const_str_digest_27b50ea3e5fe50c3f9d4789d13716081; Py_INCREF( tmp_list_element_20 ); PyList_SET_ITEM( tmp_dict_value_316, 1, tmp_list_element_20 ); tmp_list_element_20 = const_str_digest_33de85b69c6ba37a90f1de39a0387d4e; Py_INCREF( tmp_list_element_20 ); PyList_SET_ITEM( tmp_dict_value_316, 2, tmp_list_element_20 ); tmp_list_element_20 = const_str_digest_9020c0154ba09b41a6ce32444468a5a6; Py_INCREF( tmp_list_element_20 ); PyList_SET_ITEM( tmp_dict_value_316, 3, tmp_list_element_20 ); tmp_list_element_20 = _PyDict_NewPresized( 1 ); tmp_dict_value_317 = const_str_digest_d3d6e6f2fb7259f3a718f541c7ec9f99; tmp_called_120 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_120 == NULL )) { tmp_called_120 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_120 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_316 ); Py_DECREF( tmp_list_element_20 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 744; goto frame_exception_exit_1; } tmp_call_arg_element_176 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_callback ); if (unlikely( tmp_call_arg_element_176 == NULL )) { tmp_call_arg_element_176 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_callback ); } if ( tmp_call_arg_element_176 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_316 ); Py_DECREF( tmp_list_element_20 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126349 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 744; goto frame_exception_exit_1; } frame_module->f_lineno = 744; tmp_dict_key_317 = CALL_FUNCTION_WITH_ARGS1( tmp_called_120, tmp_call_arg_element_176 ); if ( tmp_dict_key_317 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_316 ); Py_DECREF( tmp_list_element_20 ); frame_module->f_lineno = 744; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_20, tmp_dict_key_317, tmp_dict_value_317 ); Py_DECREF( tmp_dict_key_317 ); PyList_SET_ITEM( tmp_dict_value_316, 4, tmp_list_element_20 ); tmp_dict_key_316 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_316, tmp_dict_value_316 ); Py_DECREF( tmp_dict_value_316 ); tmp_dict_value_318 = _PyDict_NewPresized( 1 ); tmp_dict_value_319 = const_str_digest_3583a8d3606919d394ff3742ea2991a0; tmp_dict_key_319 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_dict_key_319 == NULL )) { tmp_dict_key_319 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_dict_key_319 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_318 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 746; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_318, tmp_dict_key_319, tmp_dict_value_319 ); tmp_dict_key_318 = const_str_plain_kwlistxa; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_318, tmp_dict_value_318 ); Py_DECREF( tmp_dict_value_318 ); tmp_dict_value_320 = _PyDict_NewPresized( 1 ); tmp_dict_value_321 = const_str_plain_O; tmp_dict_key_321 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isrequired ); if (unlikely( tmp_dict_key_321 == NULL )) { tmp_dict_key_321 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isrequired ); } if ( tmp_dict_key_321 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_320 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128672 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 747; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_320, tmp_dict_key_321, tmp_dict_value_321 ); tmp_dict_key_320 = const_str_plain_argformat; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_320, tmp_dict_value_320 ); Py_DECREF( tmp_dict_value_320 ); tmp_dict_value_322 = _PyDict_NewPresized( 1 ); tmp_dict_value_323 = const_str_plain_O; tmp_dict_key_323 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_dict_key_323 == NULL )) { tmp_dict_key_323 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_dict_key_323 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_322 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124244 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 748; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_322, tmp_dict_key_323, tmp_dict_value_323 ); tmp_dict_key_322 = const_str_plain_keyformat; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_322, tmp_dict_value_322 ); Py_DECREF( tmp_dict_value_322 ); tmp_dict_value_324 = _PyDict_NewPresized( 1 ); tmp_dict_value_325 = const_str_digest_53d067d98ec3a8018e265af396e4cd76; tmp_dict_key_325 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_dict_key_325 == NULL )) { tmp_dict_key_325 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_dict_key_325 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_324 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 749; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_324, tmp_dict_key_325, tmp_dict_value_325 ); tmp_dict_key_324 = const_str_plain_xaformat; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_324, tmp_dict_value_324 ); Py_DECREF( tmp_dict_value_324 ); tmp_dict_value_326 = _PyDict_NewPresized( 1 ); tmp_dict_value_327 = const_str_digest_74327d7eb38e858582fe177e885d2475; tmp_dict_key_327 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isrequired ); if (unlikely( tmp_dict_key_327 == NULL )) { tmp_dict_key_327 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isrequired ); } if ( tmp_dict_key_327 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_326 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128672 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 750; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_326, tmp_dict_key_327, tmp_dict_value_327 ); tmp_dict_key_326 = const_str_plain_args_capi; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_326, tmp_dict_value_326 ); Py_DECREF( tmp_dict_value_326 ); tmp_dict_value_328 = _PyDict_NewPresized( 1 ); tmp_dict_value_329 = const_str_digest_74327d7eb38e858582fe177e885d2475; tmp_dict_key_329 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_dict_key_329 == NULL )) { tmp_dict_key_329 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_dict_key_329 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_328 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124244 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 751; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_328, tmp_dict_key_329, tmp_dict_value_329 ); tmp_dict_key_328 = const_str_plain_keys_capi; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_328, tmp_dict_value_328 ); Py_DECREF( tmp_dict_value_328 ); tmp_dict_value_330 = const_str_digest_d2f9453d0b79d1c9ade8eb7077960272; tmp_dict_key_330 = const_str_plain_keys_xa; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_330, tmp_dict_value_330 ); tmp_dict_value_331 = const_str_digest_1e609e98e6387a0eff2e0582a23e9403; tmp_dict_key_331 = const_str_plain_setjmpbuf; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_331, tmp_dict_value_331 ); tmp_dict_value_332 = _PyDict_NewPresized( 1 ); tmp_dict_value_333 = const_str_digest_e2418f9672b53d5c9e681cfa976e4ede; tmp_called_121 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_121 == NULL )) { tmp_called_121 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_121 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_332 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 754; goto frame_exception_exit_1; } tmp_call_arg_element_177 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_callback ); if (unlikely( tmp_call_arg_element_177 == NULL )) { tmp_call_arg_element_177 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_callback ); } if ( tmp_call_arg_element_177 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_332 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126349 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 754; goto frame_exception_exit_1; } frame_module->f_lineno = 754; tmp_dict_key_333 = CALL_FUNCTION_WITH_ARGS1( tmp_called_121, tmp_call_arg_element_177 ); if ( tmp_dict_key_333 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_332 ); frame_module->f_lineno = 754; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_332, tmp_dict_key_333, tmp_dict_value_333 ); Py_DECREF( tmp_dict_key_333 ); tmp_dict_key_332 = const_str_plain_callfortran; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_332, tmp_dict_value_332 ); Py_DECREF( tmp_dict_value_332 ); tmp_dict_value_334 = LIST_COPY( const_list_917626a5cab86448639269d43350330f_list ); tmp_dict_key_334 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_334, tmp_dict_value_334 ); Py_DECREF( tmp_dict_value_334 ); tmp_dict_value_335 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isexternal ); if (unlikely( tmp_dict_value_335 == NULL )) { tmp_dict_value_335 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isexternal ); } if ( tmp_dict_value_335 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124516 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 756; goto frame_exception_exit_1; } tmp_dict_key_335 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_335, tmp_dict_value_335 ); PyList_SET_ITEM( tmp_assign_source_33, 6, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 5 ); tmp_dict_value_336 = PyList_New( 5 ); tmp_list_element_21 = _PyDict_NewPresized( 1 ); tmp_dict_value_337 = const_str_digest_eaecd73b62fde941c6920f619a250093; tmp_called_122 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_122 == NULL )) { tmp_called_122 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_122 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_336 ); Py_DECREF( tmp_list_element_21 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 759; goto frame_exception_exit_1; } tmp_call_arg_element_178 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_callback ); if (unlikely( tmp_call_arg_element_178 == NULL )) { tmp_call_arg_element_178 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_callback ); } if ( tmp_call_arg_element_178 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_336 ); Py_DECREF( tmp_list_element_21 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126349 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 759; goto frame_exception_exit_1; } frame_module->f_lineno = 759; tmp_dict_key_337 = CALL_FUNCTION_WITH_ARGS1( tmp_called_122, tmp_call_arg_element_178 ); if ( tmp_dict_key_337 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_336 ); Py_DECREF( tmp_list_element_21 ); frame_module->f_lineno = 759; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_21, tmp_dict_key_337, tmp_dict_value_337 ); Py_DECREF( tmp_dict_key_337 ); PyList_SET_ITEM( tmp_dict_value_336, 0, tmp_list_element_21 ); tmp_list_element_21 = _PyDict_NewPresized( 1 ); tmp_dict_value_338 = const_str_digest_975e0d14a7d9a661ed02f62dd83c173a; tmp_dict_key_338 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_callback ); if (unlikely( tmp_dict_key_338 == NULL )) { tmp_dict_key_338 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_callback ); } if ( tmp_dict_key_338 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_336 ); Py_DECREF( tmp_list_element_21 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126349 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 765; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_21, tmp_dict_key_338, tmp_dict_value_338 ); PyList_SET_ITEM( tmp_dict_value_336, 1, tmp_list_element_21 ); tmp_list_element_21 = const_str_digest_2d092b06961d63e3c95e44a4ec6fc82d; Py_INCREF( tmp_list_element_21 ); PyList_SET_ITEM( tmp_dict_value_336, 2, tmp_list_element_21 ); tmp_list_element_21 = _PyDict_NewPresized( 1 ); tmp_dict_value_339 = PyList_New( 2 ); tmp_list_element_22 = const_str_digest_6fae23cc5869b6b96e109a8f2e78fbe4; Py_INCREF( tmp_list_element_22 ); PyList_SET_ITEM( tmp_dict_value_339, 0, tmp_list_element_22 ); tmp_list_element_22 = _PyDict_NewPresized( 1 ); tmp_dict_value_340 = const_str_digest_2024ee09e6b745cfd788ae7f21f8ccb6; tmp_called_123 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_123 == NULL )) { tmp_called_123 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_123 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_336 ); Py_DECREF( tmp_list_element_21 ); Py_DECREF( tmp_dict_value_339 ); Py_DECREF( tmp_list_element_22 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 801; goto frame_exception_exit_1; } tmp_call_arg_element_179 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_callback ); if (unlikely( tmp_call_arg_element_179 == NULL )) { tmp_call_arg_element_179 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_callback ); } if ( tmp_call_arg_element_179 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_336 ); Py_DECREF( tmp_list_element_21 ); Py_DECREF( tmp_dict_value_339 ); Py_DECREF( tmp_list_element_22 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126349 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 801; goto frame_exception_exit_1; } frame_module->f_lineno = 801; tmp_dict_key_340 = CALL_FUNCTION_WITH_ARGS1( tmp_called_123, tmp_call_arg_element_179 ); if ( tmp_dict_key_340 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_336 ); Py_DECREF( tmp_list_element_21 ); Py_DECREF( tmp_dict_value_339 ); Py_DECREF( tmp_list_element_22 ); frame_module->f_lineno = 801; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_22, tmp_dict_key_340, tmp_dict_value_340 ); Py_DECREF( tmp_dict_key_340 ); PyList_SET_ITEM( tmp_dict_value_339, 1, tmp_list_element_22 ); tmp_dict_key_339 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_dict_key_339 == NULL )) { tmp_dict_key_339 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_dict_key_339 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_336 ); Py_DECREF( tmp_list_element_21 ); Py_DECREF( tmp_dict_value_339 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 798; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_21, tmp_dict_key_339, tmp_dict_value_339 ); Py_DECREF( tmp_dict_value_339 ); PyList_SET_ITEM( tmp_dict_value_336, 3, tmp_list_element_21 ); tmp_list_element_21 = const_str_digest_d8ce894b52970bea5aadfd06f6c6a09e; Py_INCREF( tmp_list_element_21 ); PyList_SET_ITEM( tmp_dict_value_336, 4, tmp_list_element_21 ); tmp_dict_key_336 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_336, tmp_dict_value_336 ); Py_DECREF( tmp_dict_value_336 ); tmp_dict_value_341 = const_str_digest_ee4983e7371c33b4bfdb0e9618656343; tmp_dict_key_341 = const_str_plain_cleanupfrompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_341, tmp_dict_value_341 ); tmp_dict_value_342 = LIST_COPY( const_list_str_plain_SWAP_str_plain_create_cb_arglist_list ); tmp_dict_key_342 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_342, tmp_dict_value_342 ); Py_DECREF( tmp_dict_value_342 ); tmp_dict_value_343 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isexternal ); if (unlikely( tmp_dict_value_343 == NULL )) { tmp_dict_value_343 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isexternal ); } if ( tmp_dict_value_343 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124516 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 818; goto frame_exception_exit_1; } tmp_dict_key_343 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_343, tmp_dict_value_343 ); tmp_dict_value_344 = const_str_empty; tmp_dict_key_344 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_344, tmp_dict_value_344 ); PyList_SET_ITEM( tmp_assign_source_33, 7, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 5 ); tmp_dict_value_345 = const_str_digest_0d59acae85d063e3f672d8da6daa0a85; tmp_dict_key_345 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_345, tmp_dict_value_345 ); tmp_dict_value_346 = _PyDict_NewPresized( 1 ); tmp_dict_value_347 = const_str_digest_b0f41de0450f9223c04ee3ef6526d95f; tmp_dict_key_347 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_dict_key_347 == NULL )) { tmp_dict_key_347 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_dict_key_347 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_346 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 824; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_346, tmp_dict_key_347, tmp_dict_value_347 ); tmp_dict_key_346 = const_str_plain_pyobjfrom; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_346, tmp_dict_value_346 ); Py_DECREF( tmp_dict_value_346 ); tmp_dict_value_348 = _PyDict_NewPresized( 2 ); tmp_dict_value_349 = const_str_digest_8a412c5a481127f099db01c171a0fb22; tmp_dict_key_349 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_c ); if (unlikely( tmp_dict_key_349 == NULL )) { tmp_dict_key_349 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_c ); } if ( tmp_dict_key_349 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_348 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124212 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 825; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_348, tmp_dict_key_349, tmp_dict_value_349 ); tmp_dict_value_350 = const_str_digest_2861f69496685cab3ecd9e5bb974c70d; tmp_called_124 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_124 == NULL )) { tmp_called_124 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_124 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_348 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 825; goto frame_exception_exit_1; } tmp_call_arg_element_180 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_c ); if (unlikely( tmp_call_arg_element_180 == NULL )) { tmp_call_arg_element_180 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_c ); } if ( tmp_call_arg_element_180 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_348 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124212 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 825; goto frame_exception_exit_1; } frame_module->f_lineno = 825; tmp_dict_key_350 = CALL_FUNCTION_WITH_ARGS1( tmp_called_124, tmp_call_arg_element_180 ); if ( tmp_dict_key_350 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_348 ); frame_module->f_lineno = 825; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_348, tmp_dict_key_350, tmp_dict_value_350 ); Py_DECREF( tmp_dict_key_350 ); tmp_dict_key_348 = const_str_plain_callfortran; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_348, tmp_dict_value_348 ); Py_DECREF( tmp_dict_value_348 ); tmp_dict_value_351 = _PyDict_NewPresized( 1 ); tmp_dict_value_352 = const_str_digest_09de792d93cc23e6cd4f80b6fa458fd3; tmp_dict_key_352 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_out ); if (unlikely( tmp_dict_key_352 == NULL )) { tmp_dict_key_352 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_out ); } if ( tmp_dict_key_352 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_351 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124107 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 826; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_351, tmp_dict_key_352, tmp_dict_value_352 ); tmp_dict_key_351 = const_str_plain_return; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_351, tmp_dict_value_351 ); Py_DECREF( tmp_dict_value_351 ); tmp_called_125 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_125 == NULL )) { tmp_called_125 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_125 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 827; goto frame_exception_exit_1; } tmp_call_arg_element_181 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isscalar ); if (unlikely( tmp_call_arg_element_181 == NULL )) { tmp_call_arg_element_181 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isscalar ); } if ( tmp_call_arg_element_181 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 72345 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 827; goto frame_exception_exit_1; } tmp_called_126 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_126 == NULL )) { tmp_called_126 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_126 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 827; goto frame_exception_exit_1; } tmp_call_arg_element_183 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_call_arg_element_183 == NULL )) { tmp_call_arg_element_183 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_call_arg_element_183 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 827; goto frame_exception_exit_1; } frame_module->f_lineno = 827; tmp_call_arg_element_182 = CALL_FUNCTION_WITH_ARGS1( tmp_called_126, tmp_call_arg_element_183 ); if ( tmp_call_arg_element_182 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 827; goto frame_exception_exit_1; } frame_module->f_lineno = 827; tmp_dict_value_353 = CALL_FUNCTION_WITH_ARGS2( tmp_called_125, tmp_call_arg_element_181, tmp_call_arg_element_182 ); Py_DECREF( tmp_call_arg_element_182 ); if ( tmp_dict_value_353 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 827; goto frame_exception_exit_1; } tmp_dict_key_353 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_353, tmp_dict_value_353 ); Py_DECREF( tmp_dict_value_353 ); PyList_SET_ITEM( tmp_assign_source_33, 8, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 2 ); tmp_dict_value_354 = _PyDict_NewPresized( 1 ); tmp_dict_value_355 = const_str_digest_890854844f87190b1c6e74a24b3f6e6e; tmp_dict_key_355 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); if (unlikely( tmp_dict_key_355 == NULL )) { tmp_dict_key_355 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); } if ( tmp_dict_key_355 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_354 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125444 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 829; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_354, tmp_dict_key_355, tmp_dict_value_355 ); tmp_dict_key_354 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_354, tmp_dict_value_354 ); Py_DECREF( tmp_dict_value_354 ); tmp_called_127 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_127 == NULL )) { tmp_called_127 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_127 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 830; goto frame_exception_exit_1; } tmp_call_arg_element_184 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isscalar ); if (unlikely( tmp_call_arg_element_184 == NULL )) { tmp_call_arg_element_184 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isscalar ); } if ( tmp_call_arg_element_184 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 72345 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 830; goto frame_exception_exit_1; } tmp_called_128 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_128 == NULL )) { tmp_called_128 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_128 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 830; goto frame_exception_exit_1; } tmp_call_arg_element_186 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_call_arg_element_186 == NULL )) { tmp_call_arg_element_186 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_call_arg_element_186 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 830; goto frame_exception_exit_1; } frame_module->f_lineno = 830; tmp_call_arg_element_185 = CALL_FUNCTION_WITH_ARGS1( tmp_called_128, tmp_call_arg_element_186 ); if ( tmp_call_arg_element_185 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 830; goto frame_exception_exit_1; } frame_module->f_lineno = 830; tmp_dict_value_356 = CALL_FUNCTION_WITH_ARGS2( tmp_called_127, tmp_call_arg_element_184, tmp_call_arg_element_185 ); Py_DECREF( tmp_call_arg_element_185 ); if ( tmp_dict_value_356 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 830; goto frame_exception_exit_1; } tmp_dict_key_356 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_356, tmp_dict_value_356 ); Py_DECREF( tmp_dict_value_356 ); PyList_SET_ITEM( tmp_assign_source_33, 9, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 9 ); tmp_dict_value_357 = const_str_digest_94bcdde9f91533758026d6169c99b194; tmp_dict_key_357 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_357, tmp_dict_value_357 ); tmp_dict_value_358 = _PyDict_NewPresized( 1 ); tmp_dict_value_359 = const_str_plain_O; tmp_dict_key_359 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isrequired ); if (unlikely( tmp_dict_key_359 == NULL )) { tmp_dict_key_359 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isrequired ); } if ( tmp_dict_key_359 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_358 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128672 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 834; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_358, tmp_dict_key_359, tmp_dict_value_359 ); tmp_dict_key_358 = const_str_plain_argformat; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_358, tmp_dict_value_358 ); Py_DECREF( tmp_dict_value_358 ); tmp_dict_value_360 = _PyDict_NewPresized( 1 ); tmp_dict_value_361 = const_str_plain_O; tmp_dict_key_361 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_dict_key_361 == NULL )) { tmp_dict_key_361 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_dict_key_361 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_360 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124244 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 835; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_360, tmp_dict_key_361, tmp_dict_value_361 ); tmp_dict_key_360 = const_str_plain_keyformat; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_360, tmp_dict_value_360 ); Py_DECREF( tmp_dict_value_360 ); tmp_dict_value_362 = _PyDict_NewPresized( 1 ); tmp_dict_value_363 = const_str_digest_74327d7eb38e858582fe177e885d2475; tmp_dict_key_363 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isrequired ); if (unlikely( tmp_dict_key_363 == NULL )) { tmp_dict_key_363 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isrequired ); } if ( tmp_dict_key_363 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_362 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128672 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 836; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_362, tmp_dict_key_363, tmp_dict_value_363 ); tmp_dict_key_362 = const_str_plain_args_capi; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_362, tmp_dict_value_362 ); Py_DECREF( tmp_dict_value_362 ); tmp_dict_value_364 = _PyDict_NewPresized( 1 ); tmp_dict_value_365 = const_str_digest_74327d7eb38e858582fe177e885d2475; tmp_dict_key_365 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_dict_key_365 == NULL )) { tmp_dict_key_365 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_dict_key_365 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_364 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124244 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 837; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_364, tmp_dict_key_365, tmp_dict_value_365 ); tmp_dict_key_364 = const_str_plain_keys_capi; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_364, tmp_dict_value_364 ); Py_DECREF( tmp_dict_value_364 ); tmp_dict_value_366 = _PyDict_NewPresized( 1 ); tmp_dict_value_367 = const_str_digest_9d495ac14a55bbb4c048faa1dd9740c4; tmp_dict_key_367 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_inout ); if (unlikely( tmp_dict_key_367 == NULL )) { tmp_dict_key_367 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_inout ); } if ( tmp_dict_key_367 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_366 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124071 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 838; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_366, tmp_dict_key_367, tmp_dict_value_367 ); tmp_dict_key_366 = const_str_plain_pyobjfrom; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_366, tmp_dict_value_366 ); Py_DECREF( tmp_dict_value_366 ); tmp_dict_value_368 = _PyDict_NewPresized( 1 ); tmp_dict_value_369 = const_str_digest_3ff9b48b64cdbdd8b296b61508af401a; tmp_dict_key_369 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_inout ); if (unlikely( tmp_dict_key_369 == NULL )) { tmp_dict_key_369 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_inout ); } if ( tmp_dict_key_369 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_368 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124071 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 841; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_368, tmp_dict_key_369, tmp_dict_value_369 ); tmp_dict_key_368 = const_str_plain_closepyobjfrom; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_368, tmp_dict_value_368 ); Py_DECREF( tmp_dict_value_368 ); tmp_dict_value_370 = _PyDict_NewPresized( 1 ); tmp_dict_value_371 = const_str_digest_ec9c6dcde4931b9286e950f1e97757e1; tmp_dict_key_371 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_inout ); if (unlikely( tmp_dict_key_371 == NULL )) { tmp_dict_key_371 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_inout ); } if ( tmp_dict_key_371 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_370 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124071 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 842; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_370, tmp_dict_key_371, tmp_dict_value_371 ); tmp_dict_key_370 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_370, tmp_dict_value_370 ); Py_DECREF( tmp_dict_value_370 ); tmp_called_129 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_129 == NULL )) { tmp_called_129 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_129 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 843; goto frame_exception_exit_1; } tmp_call_arg_element_187 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isscalar ); if (unlikely( tmp_call_arg_element_187 == NULL )) { tmp_call_arg_element_187 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isscalar ); } if ( tmp_call_arg_element_187 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 72345 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 843; goto frame_exception_exit_1; } tmp_called_130 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_130 == NULL )) { tmp_called_130 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_130 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 843; goto frame_exception_exit_1; } tmp_call_arg_element_189 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_call_arg_element_189 == NULL )) { tmp_call_arg_element_189 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_call_arg_element_189 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 843; goto frame_exception_exit_1; } frame_module->f_lineno = 843; tmp_call_arg_element_188 = CALL_FUNCTION_WITH_ARGS1( tmp_called_130, tmp_call_arg_element_189 ); if ( tmp_call_arg_element_188 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 843; goto frame_exception_exit_1; } tmp_call_arg_element_190 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_call_arg_element_190 == NULL )) { tmp_call_arg_element_190 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_call_arg_element_190 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_call_arg_element_188 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 843; goto frame_exception_exit_1; } frame_module->f_lineno = 843; tmp_dict_value_372 = CALL_FUNCTION_WITH_ARGS3( tmp_called_129, tmp_call_arg_element_187, tmp_call_arg_element_188, tmp_call_arg_element_190 ); Py_DECREF( tmp_call_arg_element_188 ); if ( tmp_dict_value_372 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 843; goto frame_exception_exit_1; } tmp_dict_key_372 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_372, tmp_dict_value_372 ); Py_DECREF( tmp_dict_value_372 ); PyList_SET_ITEM( tmp_assign_source_33, 10, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 5 ); tmp_dict_value_373 = PyList_New( 4 ); tmp_list_element_23 = _PyDict_NewPresized( 2 ); tmp_dict_value_374 = const_str_digest_1957922661d0ebb79028a2cdcfc623e3; tmp_dict_key_374 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); if (unlikely( tmp_dict_key_374 == NULL )) { tmp_dict_key_374 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); } if ( tmp_dict_key_374 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_373 ); Py_DECREF( tmp_list_element_23 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125444 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 861; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_23, tmp_dict_key_374, tmp_dict_value_374 ); tmp_dict_value_375 = const_str_empty; tmp_dict_key_375 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_23, tmp_dict_key_375, tmp_dict_value_375 ); PyList_SET_ITEM( tmp_dict_value_373, 0, tmp_list_element_23 ); tmp_list_element_23 = _PyDict_NewPresized( 2 ); tmp_dict_value_376 = const_str_digest_5c182b7cc989dc414beab715240ecd25; tmp_called_131 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_131 == NULL )) { tmp_called_131 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_131 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_373 ); Py_DECREF( tmp_list_element_23 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 863; goto frame_exception_exit_1; } tmp_call_arg_element_191 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_call_arg_element_191 == NULL )) { tmp_call_arg_element_191 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_call_arg_element_191 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_373 ); Py_DECREF( tmp_list_element_23 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124244 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 863; goto frame_exception_exit_1; } tmp_called_132 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_132 == NULL )) { tmp_called_132 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_132 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_373 ); Py_DECREF( tmp_list_element_23 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 863; goto frame_exception_exit_1; } tmp_call_arg_element_193 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); if (unlikely( tmp_call_arg_element_193 == NULL )) { tmp_call_arg_element_193 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); } if ( tmp_call_arg_element_193 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_373 ); Py_DECREF( tmp_list_element_23 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125444 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 863; goto frame_exception_exit_1; } frame_module->f_lineno = 863; tmp_call_arg_element_192 = CALL_FUNCTION_WITH_ARGS1( tmp_called_132, tmp_call_arg_element_193 ); if ( tmp_call_arg_element_192 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_373 ); Py_DECREF( tmp_list_element_23 ); frame_module->f_lineno = 863; goto frame_exception_exit_1; } frame_module->f_lineno = 863; tmp_dict_key_376 = CALL_FUNCTION_WITH_ARGS2( tmp_called_131, tmp_call_arg_element_191, tmp_call_arg_element_192 ); Py_DECREF( tmp_call_arg_element_192 ); if ( tmp_dict_key_376 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_373 ); Py_DECREF( tmp_list_element_23 ); frame_module->f_lineno = 863; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_23, tmp_dict_key_376, tmp_dict_value_376 ); Py_DECREF( tmp_dict_key_376 ); tmp_dict_value_377 = const_str_empty; tmp_dict_key_377 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_23, tmp_dict_key_377, tmp_dict_value_377 ); PyList_SET_ITEM( tmp_dict_value_373, 1, tmp_list_element_23 ); tmp_list_element_23 = _PyDict_NewPresized( 1 ); tmp_dict_value_378 = const_str_digest_af413396ce224ead18aef866d1998f25; tmp_called_133 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_133 == NULL )) { tmp_called_133 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_133 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_373 ); Py_DECREF( tmp_list_element_23 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 865; goto frame_exception_exit_1; } tmp_call_arg_element_194 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_islogical ); if (unlikely( tmp_call_arg_element_194 == NULL )) { tmp_call_arg_element_194 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_islogical ); } if ( tmp_call_arg_element_194 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_373 ); Py_DECREF( tmp_list_element_23 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124995 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 865; goto frame_exception_exit_1; } frame_module->f_lineno = 865; tmp_dict_key_378 = CALL_FUNCTION_WITH_ARGS1( tmp_called_133, tmp_call_arg_element_194 ); if ( tmp_dict_key_378 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_373 ); Py_DECREF( tmp_list_element_23 ); frame_module->f_lineno = 865; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_23, tmp_dict_key_378, tmp_dict_value_378 ); Py_DECREF( tmp_dict_key_378 ); PyList_SET_ITEM( tmp_dict_value_373, 2, tmp_list_element_23 ); tmp_list_element_23 = _PyDict_NewPresized( 1 ); tmp_dict_value_379 = const_str_digest_2936888493c6440f01314e5ae776f3e1; tmp_dict_key_379 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_islogical ); if (unlikely( tmp_dict_key_379 == NULL )) { tmp_dict_key_379 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_islogical ); } if ( tmp_dict_key_379 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_373 ); Py_DECREF( tmp_list_element_23 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124995 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 868; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_23, tmp_dict_key_379, tmp_dict_value_379 ); PyList_SET_ITEM( tmp_dict_value_373, 3, tmp_list_element_23 ); tmp_dict_key_373 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_373, tmp_dict_value_373 ); Py_DECREF( tmp_dict_value_373 ); tmp_dict_value_380 = const_str_digest_5739445260bb4ab7a7bde7699d67e1b0; tmp_dict_key_380 = const_str_plain_cleanupfrompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_380, tmp_dict_value_380 ); tmp_dict_value_381 = _PyDict_NewPresized( 1 ); tmp_dict_value_382 = const_str_digest_aef332a279fc26992d9b07f03b37a7b7; tmp_called_134 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_134 == NULL )) { tmp_called_134 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_134 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_381 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 874; goto frame_exception_exit_1; } tmp_call_arg_element_195 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_islogical ); if (unlikely( tmp_call_arg_element_195 == NULL )) { tmp_call_arg_element_195 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_islogical ); } if ( tmp_call_arg_element_195 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_381 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124995 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 874; goto frame_exception_exit_1; } frame_module->f_lineno = 874; tmp_dict_key_382 = CALL_FUNCTION_WITH_ARGS1( tmp_called_134, tmp_call_arg_element_195 ); if ( tmp_dict_key_382 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_381 ); frame_module->f_lineno = 874; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_381, tmp_dict_key_382, tmp_dict_value_382 ); Py_DECREF( tmp_dict_key_382 ); tmp_dict_key_381 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_381, tmp_dict_value_381 ); Py_DECREF( tmp_dict_value_381 ); tmp_called_135 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_135 == NULL )) { tmp_called_135 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_135 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 875; goto frame_exception_exit_1; } tmp_call_arg_element_196 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isscalar ); if (unlikely( tmp_call_arg_element_196 == NULL )) { tmp_call_arg_element_196 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isscalar ); } if ( tmp_call_arg_element_196 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 72345 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 875; goto frame_exception_exit_1; } tmp_called_136 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_136 == NULL )) { tmp_called_136 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_136 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 875; goto frame_exception_exit_1; } tmp_call_arg_element_198 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_call_arg_element_198 == NULL )) { tmp_call_arg_element_198 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_call_arg_element_198 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 875; goto frame_exception_exit_1; } frame_module->f_lineno = 875; tmp_call_arg_element_197 = CALL_FUNCTION_WITH_ARGS1( tmp_called_136, tmp_call_arg_element_198 ); if ( tmp_call_arg_element_197 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 875; goto frame_exception_exit_1; } tmp_call_arg_element_199 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_call_arg_element_199 == NULL )) { tmp_call_arg_element_199 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_call_arg_element_199 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_call_arg_element_197 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 875; goto frame_exception_exit_1; } frame_module->f_lineno = 875; tmp_dict_value_383 = CALL_FUNCTION_WITH_ARGS3( tmp_called_135, tmp_call_arg_element_196, tmp_call_arg_element_197, tmp_call_arg_element_199 ); Py_DECREF( tmp_call_arg_element_197 ); if ( tmp_dict_value_383 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 875; goto frame_exception_exit_1; } tmp_dict_key_383 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_383, tmp_dict_value_383 ); Py_DECREF( tmp_dict_value_383 ); tmp_dict_value_384 = const_str_empty; tmp_dict_key_384 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_384, tmp_dict_value_384 ); PyList_SET_ITEM( tmp_assign_source_33, 11, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 4 ); tmp_dict_value_385 = _PyDict_NewPresized( 1 ); tmp_dict_value_386 = const_str_digest_3661f078f2728e5304b2e950f133b5c4; tmp_dict_key_386 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); if (unlikely( tmp_dict_key_386 == NULL )) { tmp_dict_key_386 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); } if ( tmp_dict_key_386 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_385 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125444 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 880; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_385, tmp_dict_key_386, tmp_dict_value_386 ); tmp_dict_key_385 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_385, tmp_dict_value_385 ); Py_DECREF( tmp_dict_value_385 ); tmp_dict_value_387 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_typedef_need_dict ); if (unlikely( tmp_dict_value_387 == NULL )) { tmp_dict_value_387 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_typedef_need_dict ); } if ( tmp_dict_value_387 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151376 ], 39, 0 ); exception_tb = NULL; frame_module->f_lineno = 881; goto frame_exception_exit_1; } tmp_dict_key_387 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_387, tmp_dict_value_387 ); tmp_called_137 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_137 == NULL )) { tmp_called_137 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_137 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 882; goto frame_exception_exit_1; } tmp_call_arg_element_200 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isscalar ); if (unlikely( tmp_call_arg_element_200 == NULL )) { tmp_call_arg_element_200 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isscalar ); } if ( tmp_call_arg_element_200 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 72345 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 882; goto frame_exception_exit_1; } tmp_called_138 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_138 == NULL )) { tmp_called_138 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_138 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 882; goto frame_exception_exit_1; } tmp_call_arg_element_202 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_call_arg_element_202 == NULL )) { tmp_call_arg_element_202 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_call_arg_element_202 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 882; goto frame_exception_exit_1; } frame_module->f_lineno = 882; tmp_call_arg_element_201 = CALL_FUNCTION_WITH_ARGS1( tmp_called_138, tmp_call_arg_element_202 ); if ( tmp_call_arg_element_201 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 882; goto frame_exception_exit_1; } tmp_call_arg_element_203 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_hide ); if (unlikely( tmp_call_arg_element_203 == NULL )) { tmp_call_arg_element_203 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_hide ); } if ( tmp_call_arg_element_203 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_call_arg_element_201 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124141 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 882; goto frame_exception_exit_1; } frame_module->f_lineno = 882; tmp_dict_value_388 = CALL_FUNCTION_WITH_ARGS3( tmp_called_137, tmp_call_arg_element_200, tmp_call_arg_element_201, tmp_call_arg_element_203 ); Py_DECREF( tmp_call_arg_element_201 ); if ( tmp_dict_value_388 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 882; goto frame_exception_exit_1; } tmp_dict_key_388 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_388, tmp_dict_value_388 ); Py_DECREF( tmp_dict_value_388 ); tmp_dict_value_389 = const_str_empty; tmp_dict_key_389 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_389, tmp_dict_value_389 ); PyList_SET_ITEM( tmp_assign_source_33, 12, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 3 ); tmp_dict_value_390 = _PyDict_NewPresized( 1 ); tmp_dict_value_391 = const_str_digest_b0f41de0450f9223c04ee3ef6526d95f; tmp_dict_key_391 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_dict_key_391 == NULL )) { tmp_dict_key_391 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_dict_key_391 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_390 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 885; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_390, tmp_dict_key_391, tmp_dict_value_391 ); tmp_dict_key_390 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_390, tmp_dict_value_390 ); Py_DECREF( tmp_dict_value_390 ); tmp_called_139 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_139 == NULL )) { tmp_called_139 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_139 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 886; goto frame_exception_exit_1; } tmp_call_arg_element_204 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isscalar ); if (unlikely( tmp_call_arg_element_204 == NULL )) { tmp_call_arg_element_204 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isscalar ); } if ( tmp_call_arg_element_204 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 72345 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 886; goto frame_exception_exit_1; } tmp_called_140 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_140 == NULL )) { tmp_called_140 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_140 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 886; goto frame_exception_exit_1; } tmp_call_arg_element_206 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_call_arg_element_206 == NULL )) { tmp_call_arg_element_206 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_call_arg_element_206 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 886; goto frame_exception_exit_1; } frame_module->f_lineno = 886; tmp_call_arg_element_205 = CALL_FUNCTION_WITH_ARGS1( tmp_called_140, tmp_call_arg_element_206 ); if ( tmp_call_arg_element_205 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 886; goto frame_exception_exit_1; } frame_module->f_lineno = 886; tmp_dict_value_392 = CALL_FUNCTION_WITH_ARGS2( tmp_called_139, tmp_call_arg_element_204, tmp_call_arg_element_205 ); Py_DECREF( tmp_call_arg_element_205 ); if ( tmp_dict_value_392 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 886; goto frame_exception_exit_1; } tmp_dict_key_392 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_392, tmp_dict_value_392 ); Py_DECREF( tmp_dict_value_392 ); tmp_dict_value_393 = const_str_empty; tmp_dict_key_393 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_393, tmp_dict_value_393 ); PyList_SET_ITEM( tmp_assign_source_33, 13, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 5 ); tmp_dict_value_394 = const_str_digest_6f3504cf0f8ede84a5eacc957cd112c0; tmp_dict_key_394 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_394, tmp_dict_value_394 ); tmp_dict_value_395 = _PyDict_NewPresized( 2 ); tmp_dict_value_396 = const_str_digest_8a412c5a481127f099db01c171a0fb22; tmp_dict_key_396 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_c ); if (unlikely( tmp_dict_key_396 == NULL )) { tmp_dict_key_396 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_c ); } if ( tmp_dict_key_396 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_395 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124212 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 892; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_395, tmp_dict_key_396, tmp_dict_value_396 ); tmp_dict_value_397 = const_str_digest_2861f69496685cab3ecd9e5bb974c70d; tmp_called_141 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_141 == NULL )) { tmp_called_141 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_141 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_395 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 892; goto frame_exception_exit_1; } tmp_call_arg_element_207 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_c ); if (unlikely( tmp_call_arg_element_207 == NULL )) { tmp_call_arg_element_207 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_c ); } if ( tmp_call_arg_element_207 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_395 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124212 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 892; goto frame_exception_exit_1; } frame_module->f_lineno = 892; tmp_dict_key_397 = CALL_FUNCTION_WITH_ARGS1( tmp_called_141, tmp_call_arg_element_207 ); if ( tmp_dict_key_397 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_395 ); frame_module->f_lineno = 892; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_395, tmp_dict_key_397, tmp_dict_value_397 ); Py_DECREF( tmp_dict_key_397 ); tmp_dict_key_395 = const_str_plain_callfortran; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_395, tmp_dict_value_395 ); Py_DECREF( tmp_dict_value_395 ); tmp_dict_value_398 = _PyDict_NewPresized( 1 ); tmp_dict_value_399 = const_str_digest_8eaf9c6f13f0ea629b9b1feef1acea8a; tmp_dict_key_399 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_dict_key_399 == NULL )) { tmp_dict_key_399 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_dict_key_399 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_398 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 893; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_398, tmp_dict_key_399, tmp_dict_value_399 ); tmp_dict_key_398 = const_str_plain_pyobjfrom; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_398, tmp_dict_value_398 ); Py_DECREF( tmp_dict_value_398 ); tmp_dict_value_400 = _PyDict_NewPresized( 1 ); tmp_dict_value_401 = const_str_digest_89b6f674a8a140e56310bcfec0ed5012; tmp_dict_key_401 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_out ); if (unlikely( tmp_dict_key_401 == NULL )) { tmp_dict_key_401 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_out ); } if ( tmp_dict_key_401 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_400 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124107 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 894; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_400, tmp_dict_key_401, tmp_dict_value_401 ); tmp_dict_key_400 = const_str_plain_return; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_400, tmp_dict_value_400 ); Py_DECREF( tmp_dict_value_400 ); tmp_dict_value_402 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_dict_value_402 == NULL )) { tmp_dict_value_402 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_dict_value_402 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 895; goto frame_exception_exit_1; } tmp_dict_key_402 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_402, tmp_dict_value_402 ); PyList_SET_ITEM( tmp_assign_source_33, 14, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 9 ); tmp_dict_value_403 = const_str_digest_94bcdde9f91533758026d6169c99b194; tmp_dict_key_403 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_403, tmp_dict_value_403 ); tmp_dict_value_404 = _PyDict_NewPresized( 1 ); tmp_dict_value_405 = const_str_plain_O; tmp_dict_key_405 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isrequired ); if (unlikely( tmp_dict_key_405 == NULL )) { tmp_dict_key_405 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isrequired ); } if ( tmp_dict_key_405 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_404 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128672 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 898; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_404, tmp_dict_key_405, tmp_dict_value_405 ); tmp_dict_key_404 = const_str_plain_argformat; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_404, tmp_dict_value_404 ); Py_DECREF( tmp_dict_value_404 ); tmp_dict_value_406 = _PyDict_NewPresized( 1 ); tmp_dict_value_407 = const_str_plain_O; tmp_dict_key_407 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_dict_key_407 == NULL )) { tmp_dict_key_407 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_dict_key_407 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_406 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124244 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 899; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_406, tmp_dict_key_407, tmp_dict_value_407 ); tmp_dict_key_406 = const_str_plain_keyformat; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_406, tmp_dict_value_406 ); Py_DECREF( tmp_dict_value_406 ); tmp_dict_value_408 = _PyDict_NewPresized( 1 ); tmp_dict_value_409 = const_str_digest_74327d7eb38e858582fe177e885d2475; tmp_dict_key_409 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isrequired ); if (unlikely( tmp_dict_key_409 == NULL )) { tmp_dict_key_409 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isrequired ); } if ( tmp_dict_key_409 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_408 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128672 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 900; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_408, tmp_dict_key_409, tmp_dict_value_409 ); tmp_dict_key_408 = const_str_plain_args_capi; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_408, tmp_dict_value_408 ); Py_DECREF( tmp_dict_value_408 ); tmp_dict_value_410 = _PyDict_NewPresized( 1 ); tmp_dict_value_411 = const_str_digest_74327d7eb38e858582fe177e885d2475; tmp_dict_key_411 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_dict_key_411 == NULL )) { tmp_dict_key_411 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_dict_key_411 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_410 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124244 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 901; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_410, tmp_dict_key_411, tmp_dict_value_411 ); tmp_dict_key_410 = const_str_plain_keys_capi; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_410, tmp_dict_value_410 ); Py_DECREF( tmp_dict_value_410 ); tmp_dict_value_412 = _PyDict_NewPresized( 1 ); tmp_dict_value_413 = const_str_digest_ec9c6dcde4931b9286e950f1e97757e1; tmp_dict_key_413 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_inout ); if (unlikely( tmp_dict_key_413 == NULL )) { tmp_dict_key_413 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_inout ); } if ( tmp_dict_key_413 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_412 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124071 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 902; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_412, tmp_dict_key_413, tmp_dict_value_413 ); tmp_dict_key_412 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_412, tmp_dict_value_412 ); Py_DECREF( tmp_dict_value_412 ); tmp_dict_value_414 = _PyDict_NewPresized( 1 ); tmp_dict_value_415 = const_str_digest_e831352a8f095fac61be53d333f6cde5; tmp_dict_key_415 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_inout ); if (unlikely( tmp_dict_key_415 == NULL )) { tmp_dict_key_415 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_inout ); } if ( tmp_dict_key_415 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_414 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124071 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 903; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_414, tmp_dict_key_415, tmp_dict_value_415 ); tmp_dict_key_414 = const_str_plain_pyobjfrom; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_414, tmp_dict_value_414 ); Py_DECREF( tmp_dict_value_414 ); tmp_dict_value_416 = _PyDict_NewPresized( 1 ); tmp_dict_value_417 = const_str_digest_9269cde17a435135088bd15f2c77c487; tmp_dict_key_417 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_inout ); if (unlikely( tmp_dict_key_417 == NULL )) { tmp_dict_key_417 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_inout ); } if ( tmp_dict_key_417 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_416 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124071 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 906; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_416, tmp_dict_key_417, tmp_dict_value_417 ); tmp_dict_key_416 = const_str_plain_closepyobjfrom; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_416, tmp_dict_value_416 ); Py_DECREF( tmp_dict_value_416 ); tmp_called_142 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_142 == NULL )) { tmp_called_142 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_142 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 907; goto frame_exception_exit_1; } tmp_call_arg_element_208 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_call_arg_element_208 == NULL )) { tmp_call_arg_element_208 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_call_arg_element_208 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 907; goto frame_exception_exit_1; } tmp_call_arg_element_209 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_call_arg_element_209 == NULL )) { tmp_call_arg_element_209 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_call_arg_element_209 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 907; goto frame_exception_exit_1; } frame_module->f_lineno = 907; tmp_dict_value_418 = CALL_FUNCTION_WITH_ARGS2( tmp_called_142, tmp_call_arg_element_208, tmp_call_arg_element_209 ); if ( tmp_dict_value_418 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 907; goto frame_exception_exit_1; } tmp_dict_key_418 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_418, tmp_dict_value_418 ); Py_DECREF( tmp_dict_value_418 ); PyList_SET_ITEM( tmp_assign_source_33, 15, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 5 ); tmp_dict_value_419 = PyList_New( 3 ); tmp_list_element_24 = _PyDict_NewPresized( 1 ); tmp_dict_value_420 = const_str_digest_1632bec27e568661b517322c67a7aa13; tmp_dict_key_420 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); if (unlikely( tmp_dict_key_420 == NULL )) { tmp_dict_key_420 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); } if ( tmp_dict_key_420 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_419 ); Py_DECREF( tmp_list_element_24 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125444 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 909; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_24, tmp_dict_key_420, tmp_dict_value_420 ); PyList_SET_ITEM( tmp_dict_value_419, 0, tmp_list_element_24 ); tmp_list_element_24 = _PyDict_NewPresized( 1 ); tmp_dict_value_421 = const_str_digest_5c182b7cc989dc414beab715240ecd25; tmp_called_143 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_143 == NULL )) { tmp_called_143 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_143 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_419 ); Py_DECREF( tmp_list_element_24 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 910; goto frame_exception_exit_1; } tmp_call_arg_element_210 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_call_arg_element_210 == NULL )) { tmp_call_arg_element_210 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_call_arg_element_210 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_419 ); Py_DECREF( tmp_list_element_24 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124244 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 910; goto frame_exception_exit_1; } tmp_called_144 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_144 == NULL )) { tmp_called_144 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_144 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_419 ); Py_DECREF( tmp_list_element_24 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 910; goto frame_exception_exit_1; } tmp_call_arg_element_212 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); if (unlikely( tmp_call_arg_element_212 == NULL )) { tmp_call_arg_element_212 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); } if ( tmp_call_arg_element_212 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_419 ); Py_DECREF( tmp_list_element_24 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125444 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 910; goto frame_exception_exit_1; } frame_module->f_lineno = 910; tmp_call_arg_element_211 = CALL_FUNCTION_WITH_ARGS1( tmp_called_144, tmp_call_arg_element_212 ); if ( tmp_call_arg_element_211 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_419 ); Py_DECREF( tmp_list_element_24 ); frame_module->f_lineno = 910; goto frame_exception_exit_1; } frame_module->f_lineno = 910; tmp_dict_key_421 = CALL_FUNCTION_WITH_ARGS2( tmp_called_143, tmp_call_arg_element_210, tmp_call_arg_element_211 ); Py_DECREF( tmp_call_arg_element_211 ); if ( tmp_dict_key_421 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_419 ); Py_DECREF( tmp_list_element_24 ); frame_module->f_lineno = 910; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_24, tmp_dict_key_421, tmp_dict_value_421 ); Py_DECREF( tmp_dict_key_421 ); PyList_SET_ITEM( tmp_dict_value_419, 1, tmp_list_element_24 ); tmp_list_element_24 = const_str_digest_af413396ce224ead18aef866d1998f25; Py_INCREF( tmp_list_element_24 ); PyList_SET_ITEM( tmp_dict_value_419, 2, tmp_list_element_24 ); tmp_dict_key_419 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_419, tmp_dict_value_419 ); Py_DECREF( tmp_dict_value_419 ); tmp_dict_value_422 = const_str_digest_3f6cd6988d5cc425c4d00868999a9c0b; tmp_dict_key_422 = const_str_plain_cleanupfrompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_422, tmp_dict_value_422 ); tmp_dict_value_423 = LIST_COPY( const_list_str_digest_aef332a279fc26992d9b07f03b37a7b7_list ); tmp_dict_key_423 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_423, tmp_dict_value_423 ); Py_DECREF( tmp_dict_value_423 ); tmp_called_145 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_145 == NULL )) { tmp_called_145 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_145 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 916; goto frame_exception_exit_1; } tmp_call_arg_element_213 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_call_arg_element_213 == NULL )) { tmp_call_arg_element_213 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_call_arg_element_213 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 916; goto frame_exception_exit_1; } tmp_call_arg_element_214 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_call_arg_element_214 == NULL )) { tmp_call_arg_element_214 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_call_arg_element_214 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 916; goto frame_exception_exit_1; } frame_module->f_lineno = 916; tmp_dict_value_424 = CALL_FUNCTION_WITH_ARGS2( tmp_called_145, tmp_call_arg_element_213, tmp_call_arg_element_214 ); if ( tmp_dict_value_424 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 916; goto frame_exception_exit_1; } tmp_dict_key_424 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_424, tmp_dict_value_424 ); Py_DECREF( tmp_dict_value_424 ); tmp_dict_value_425 = const_str_empty; tmp_dict_key_425 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_425, tmp_dict_value_425 ); PyList_SET_ITEM( tmp_assign_source_33, 16, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 2 ); tmp_dict_value_426 = _PyDict_NewPresized( 1 ); tmp_dict_value_427 = const_str_digest_94bcdde9f91533758026d6169c99b194; tmp_dict_key_427 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_out ); if (unlikely( tmp_dict_key_427 == NULL )) { tmp_dict_key_427 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_out ); } if ( tmp_dict_key_427 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_426 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124107 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 919; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_426, tmp_dict_key_427, tmp_dict_value_427 ); tmp_dict_key_426 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_426, tmp_dict_value_426 ); Py_DECREF( tmp_dict_value_426 ); tmp_called_146 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_146 == NULL )) { tmp_called_146 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_146 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 920; goto frame_exception_exit_1; } tmp_call_arg_element_215 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_call_arg_element_215 == NULL )) { tmp_call_arg_element_215 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_call_arg_element_215 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 920; goto frame_exception_exit_1; } tmp_call_arg_element_216 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_hide ); if (unlikely( tmp_call_arg_element_216 == NULL )) { tmp_call_arg_element_216 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_hide ); } if ( tmp_call_arg_element_216 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124141 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 920; goto frame_exception_exit_1; } frame_module->f_lineno = 920; tmp_dict_value_428 = CALL_FUNCTION_WITH_ARGS2( tmp_called_146, tmp_call_arg_element_215, tmp_call_arg_element_216 ); if ( tmp_dict_value_428 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 920; goto frame_exception_exit_1; } tmp_dict_key_428 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_428, tmp_dict_value_428 ); Py_DECREF( tmp_dict_value_428 ); PyList_SET_ITEM( tmp_assign_source_33, 17, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 3 ); tmp_dict_value_429 = _PyDict_NewPresized( 1 ); tmp_dict_value_430 = const_str_digest_b4d5fd0edbbdd276f1a0a17ef81e8860; tmp_dict_key_430 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); if (unlikely( tmp_dict_key_430 == NULL )) { tmp_dict_key_430 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); } if ( tmp_dict_key_430 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_429 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125444 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 922; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_429, tmp_dict_key_430, tmp_dict_value_430 ); tmp_dict_key_429 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_429, tmp_dict_value_429 ); Py_DECREF( tmp_dict_value_429 ); tmp_called_147 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_147 == NULL )) { tmp_called_147 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_147 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 923; goto frame_exception_exit_1; } tmp_call_arg_element_217 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_call_arg_element_217 == NULL )) { tmp_call_arg_element_217 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_call_arg_element_217 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 923; goto frame_exception_exit_1; } tmp_call_arg_element_218 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_hide ); if (unlikely( tmp_call_arg_element_218 == NULL )) { tmp_call_arg_element_218 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_hide ); } if ( tmp_call_arg_element_218 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124141 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 923; goto frame_exception_exit_1; } frame_module->f_lineno = 923; tmp_dict_value_431 = CALL_FUNCTION_WITH_ARGS2( tmp_called_147, tmp_call_arg_element_217, tmp_call_arg_element_218 ); if ( tmp_dict_value_431 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 923; goto frame_exception_exit_1; } tmp_dict_key_431 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_431, tmp_dict_value_431 ); Py_DECREF( tmp_dict_value_431 ); tmp_dict_value_432 = const_str_empty; tmp_dict_key_432 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_432, tmp_dict_value_432 ); PyList_SET_ITEM( tmp_assign_source_33, 18, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 3 ); tmp_dict_value_433 = _PyDict_NewPresized( 1 ); tmp_dict_value_434 = const_str_digest_196e1deb2a177ed3e9d78c2c4c6ca852; tmp_dict_key_434 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_out ); if (unlikely( tmp_dict_key_434 == NULL )) { tmp_dict_key_434 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_out ); } if ( tmp_dict_key_434 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_433 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124107 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 926; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_433, tmp_dict_key_434, tmp_dict_value_434 ); tmp_dict_key_433 = const_str_plain_pyobjfrom; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_433, tmp_dict_value_433 ); Py_DECREF( tmp_dict_value_433 ); tmp_dict_value_435 = LIST_COPY( const_list_str_digest_e94bac8f3260b056e46d869b06fc3df5_list ); tmp_dict_key_435 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_435, tmp_dict_value_435 ); Py_DECREF( tmp_dict_value_435 ); tmp_dict_value_436 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_dict_value_436 == NULL )) { tmp_dict_value_436 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_dict_value_436 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 928; goto frame_exception_exit_1; } tmp_dict_key_436 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_436, tmp_dict_value_436 ); PyList_SET_ITEM( tmp_assign_source_33, 19, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 3 ); tmp_dict_value_437 = _PyDict_NewPresized( 1 ); tmp_dict_value_438 = const_str_digest_8eaf9c6f13f0ea629b9b1feef1acea8a; tmp_dict_key_438 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_dict_key_438 == NULL )) { tmp_dict_key_438 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_dict_key_438 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_437 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 930; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_437, tmp_dict_key_438, tmp_dict_value_438 ); tmp_dict_key_437 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_437, tmp_dict_value_437 ); Py_DECREF( tmp_dict_value_437 ); tmp_dict_value_439 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_dict_value_439 == NULL )) { tmp_dict_value_439 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_dict_value_439 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 931; goto frame_exception_exit_1; } tmp_dict_key_439 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_439, tmp_dict_value_439 ); tmp_dict_value_440 = const_str_empty; tmp_dict_key_440 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_440, tmp_dict_value_440 ); PyList_SET_ITEM( tmp_assign_source_33, 20, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 7 ); tmp_dict_value_441 = LIST_COPY( const_list_83502bc928309bee706fd67dc708d8b5_list ); tmp_dict_key_441 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_441, tmp_dict_value_441 ); Py_DECREF( tmp_dict_value_441 ); tmp_dict_value_442 = const_str_digest_8a412c5a481127f099db01c171a0fb22; tmp_dict_key_442 = const_str_plain_callfortran; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_442, tmp_dict_value_442 ); tmp_dict_value_443 = const_str_digest_17650eb00d01333f79fd06fb9c61cd9d; tmp_dict_key_443 = const_str_plain_callfortranappend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_443, tmp_dict_value_443 ); tmp_dict_value_444 = _PyDict_NewPresized( 1 ); tmp_dict_value_445 = const_str_digest_11a75f7b161c1a48991f1986e1eab885; tmp_dict_key_445 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_dict_key_445 == NULL )) { tmp_dict_key_445 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_dict_key_445 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_444 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 941; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_444, tmp_dict_key_445, tmp_dict_value_445 ); tmp_dict_key_444 = const_str_plain_pyobjfrom; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_444, tmp_dict_value_444 ); Py_DECREF( tmp_dict_value_444 ); tmp_dict_value_446 = _PyDict_NewPresized( 1 ); tmp_dict_value_447 = const_str_digest_09de792d93cc23e6cd4f80b6fa458fd3; tmp_dict_key_447 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_out ); if (unlikely( tmp_dict_key_447 == NULL )) { tmp_dict_key_447 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_out ); } if ( tmp_dict_key_447 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_446 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124107 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 943; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_446, tmp_dict_key_447, tmp_dict_value_447 ); tmp_dict_key_446 = const_str_plain_return; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_446, tmp_dict_value_446 ); Py_DECREF( tmp_dict_value_446 ); tmp_dict_value_448 = LIST_COPY( const_list_str_digest_901a22001a0c7f25add446a5f68900d0_list ); tmp_dict_key_448 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_448, tmp_dict_value_448 ); Py_DECREF( tmp_dict_value_448 ); tmp_dict_value_449 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isstring ); if (unlikely( tmp_dict_value_449 == NULL )) { tmp_dict_value_449 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isstring ); } if ( tmp_dict_value_449 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124629 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 945; goto frame_exception_exit_1; } tmp_dict_key_449 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_449, tmp_dict_value_449 ); PyList_SET_ITEM( tmp_assign_source_33, 21, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 5 ); tmp_dict_value_450 = const_str_digest_07686c6fa7631f753789a51e91f8665c; tmp_dict_key_450 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_450, tmp_dict_value_450 ); tmp_dict_value_451 = const_str_digest_87d6d4bda621123152af053c0dde833f; tmp_dict_key_451 = const_str_plain_cleanupfrompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_451, tmp_dict_value_451 ); tmp_dict_value_452 = LIST_COPY( const_list_0a418c59c89f9fccd0e4ae0f11838976_list ); tmp_dict_key_452 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_452, tmp_dict_value_452 ); Py_DECREF( tmp_dict_value_452 ); tmp_dict_value_453 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isstring ); if (unlikely( tmp_dict_value_453 == NULL )) { tmp_dict_value_453 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isstring ); } if ( tmp_dict_value_453 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124629 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 955; goto frame_exception_exit_1; } tmp_dict_key_453 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_453, tmp_dict_value_453 ); tmp_dict_value_454 = const_str_empty; tmp_dict_key_454 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_454, tmp_dict_value_454 ); PyList_SET_ITEM( tmp_assign_source_33, 22, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 8 ); tmp_dict_value_455 = _PyDict_NewPresized( 1 ); tmp_dict_value_456 = const_str_plain_O; tmp_dict_key_456 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isrequired ); if (unlikely( tmp_dict_key_456 == NULL )) { tmp_dict_key_456 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isrequired ); } if ( tmp_dict_key_456 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_455 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128672 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 958; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_455, tmp_dict_key_456, tmp_dict_value_456 ); tmp_dict_key_455 = const_str_plain_argformat; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_455, tmp_dict_value_455 ); Py_DECREF( tmp_dict_value_455 ); tmp_dict_value_457 = _PyDict_NewPresized( 1 ); tmp_dict_value_458 = const_str_plain_O; tmp_dict_key_458 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_dict_key_458 == NULL )) { tmp_dict_key_458 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_dict_key_458 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_457 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124244 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 959; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_457, tmp_dict_key_458, tmp_dict_value_458 ); tmp_dict_key_457 = const_str_plain_keyformat; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_457, tmp_dict_value_457 ); Py_DECREF( tmp_dict_value_457 ); tmp_dict_value_459 = _PyDict_NewPresized( 1 ); tmp_dict_value_460 = const_str_digest_74327d7eb38e858582fe177e885d2475; tmp_dict_key_460 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isrequired ); if (unlikely( tmp_dict_key_460 == NULL )) { tmp_dict_key_460 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isrequired ); } if ( tmp_dict_key_460 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_459 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128672 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 960; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_459, tmp_dict_key_460, tmp_dict_value_460 ); tmp_dict_key_459 = const_str_plain_args_capi; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_459, tmp_dict_value_459 ); Py_DECREF( tmp_dict_value_459 ); tmp_dict_value_461 = _PyDict_NewPresized( 1 ); tmp_dict_value_462 = const_str_digest_74327d7eb38e858582fe177e885d2475; tmp_dict_key_462 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_dict_key_462 == NULL )) { tmp_dict_key_462 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_dict_key_462 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_461 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124244 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 961; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_461, tmp_dict_key_462, tmp_dict_value_462 ); tmp_dict_key_461 = const_str_plain_keys_capi; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_461, tmp_dict_value_461 ); Py_DECREF( tmp_dict_value_461 ); tmp_dict_value_463 = _PyDict_NewPresized( 1 ); tmp_dict_value_464 = const_str_digest_dbea79683d26f1311c1d73725d1126c6; tmp_dict_key_464 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_inout ); if (unlikely( tmp_dict_key_464 == NULL )) { tmp_dict_key_464 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_inout ); } if ( tmp_dict_key_464 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_463 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124071 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 962; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_463, tmp_dict_key_464, tmp_dict_value_464 ); tmp_dict_key_463 = const_str_plain_pyobjfrom; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_463, tmp_dict_value_463 ); Py_DECREF( tmp_dict_value_463 ); tmp_dict_value_465 = _PyDict_NewPresized( 1 ); tmp_dict_value_466 = const_str_digest_3ff9b48b64cdbdd8b296b61508af401a; tmp_dict_key_466 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_inout ); if (unlikely( tmp_dict_key_466 == NULL )) { tmp_dict_key_466 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_inout ); } if ( tmp_dict_key_466 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_465 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124071 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 965; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_465, tmp_dict_key_466, tmp_dict_value_466 ); tmp_dict_key_465 = const_str_plain_closepyobjfrom; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_465, tmp_dict_value_465 ); Py_DECREF( tmp_dict_value_465 ); tmp_dict_value_467 = _PyDict_NewPresized( 1 ); tmp_dict_value_468 = const_str_digest_ec9c6dcde4931b9286e950f1e97757e1; tmp_dict_key_468 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_inout ); if (unlikely( tmp_dict_key_468 == NULL )) { tmp_dict_key_468 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_inout ); } if ( tmp_dict_key_468 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_467 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124071 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 966; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_467, tmp_dict_key_468, tmp_dict_value_468 ); tmp_dict_key_467 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_467, tmp_dict_value_467 ); Py_DECREF( tmp_dict_value_467 ); tmp_called_148 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_148 == NULL )) { tmp_called_148 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_148 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 967; goto frame_exception_exit_1; } tmp_call_arg_element_219 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isstring ); if (unlikely( tmp_call_arg_element_219 == NULL )) { tmp_call_arg_element_219 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isstring ); } if ( tmp_call_arg_element_219 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124629 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 967; goto frame_exception_exit_1; } tmp_call_arg_element_220 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_call_arg_element_220 == NULL )) { tmp_call_arg_element_220 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_call_arg_element_220 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 967; goto frame_exception_exit_1; } frame_module->f_lineno = 967; tmp_dict_value_469 = CALL_FUNCTION_WITH_ARGS2( tmp_called_148, tmp_call_arg_element_219, tmp_call_arg_element_220 ); if ( tmp_dict_value_469 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 967; goto frame_exception_exit_1; } tmp_dict_key_469 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_469, tmp_dict_value_469 ); Py_DECREF( tmp_dict_value_469 ); PyList_SET_ITEM( tmp_assign_source_33, 23, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 1 ); tmp_called_149 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_149 == NULL )) { tmp_called_149 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_149 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 969; goto frame_exception_exit_1; } tmp_call_arg_element_221 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isstring ); if (unlikely( tmp_call_arg_element_221 == NULL )) { tmp_call_arg_element_221 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isstring ); } if ( tmp_call_arg_element_221 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124629 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 969; goto frame_exception_exit_1; } tmp_call_arg_element_222 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_hide ); if (unlikely( tmp_call_arg_element_222 == NULL )) { tmp_call_arg_element_222 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_hide ); } if ( tmp_call_arg_element_222 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124141 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 969; goto frame_exception_exit_1; } frame_module->f_lineno = 969; tmp_dict_value_470 = CALL_FUNCTION_WITH_ARGS2( tmp_called_149, tmp_call_arg_element_221, tmp_call_arg_element_222 ); if ( tmp_dict_value_470 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 969; goto frame_exception_exit_1; } tmp_dict_key_470 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_470, tmp_dict_value_470 ); Py_DECREF( tmp_dict_value_470 ); PyList_SET_ITEM( tmp_assign_source_33, 24, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 3 ); tmp_dict_value_471 = _PyDict_NewPresized( 1 ); tmp_dict_value_472 = const_str_digest_11a75f7b161c1a48991f1986e1eab885; tmp_dict_key_472 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_dict_key_472 == NULL )) { tmp_dict_key_472 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_dict_key_472 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_471 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 971; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_471, tmp_dict_key_472, tmp_dict_value_472 ); tmp_dict_key_471 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_471, tmp_dict_value_471 ); Py_DECREF( tmp_dict_value_471 ); tmp_dict_value_473 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isstring ); if (unlikely( tmp_dict_value_473 == NULL )) { tmp_dict_value_473 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isstring ); } if ( tmp_dict_value_473 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124629 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 972; goto frame_exception_exit_1; } tmp_dict_key_473 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_473, tmp_dict_value_473 ); tmp_dict_value_474 = const_str_empty; tmp_dict_key_474 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_474, tmp_dict_value_474 ); PyList_SET_ITEM( tmp_assign_source_33, 25, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 5 ); tmp_dict_value_475 = LIST_COPY( const_list_a6fb55f787096d197a68d518259f030c_list ); tmp_dict_key_475 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_475, tmp_dict_value_475 ); Py_DECREF( tmp_dict_value_475 ); tmp_dict_value_476 = const_str_digest_8a412c5a481127f099db01c171a0fb22; tmp_dict_key_476 = const_str_plain_callfortran; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_476, tmp_dict_value_476 ); tmp_dict_value_477 = _PyDict_NewPresized( 1 ); tmp_dict_value_478 = const_str_digest_0250bf479570e6e650f305dc350be4a1; tmp_dict_key_478 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_out ); if (unlikely( tmp_dict_key_478 == NULL )) { tmp_dict_key_478 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_out ); } if ( tmp_dict_key_478 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_477 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124107 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 984; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_477, tmp_dict_key_478, tmp_dict_value_478 ); tmp_dict_key_477 = const_str_plain_return; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_477, tmp_dict_value_477 ); Py_DECREF( tmp_dict_value_477 ); tmp_dict_value_479 = const_str_digest_901a22001a0c7f25add446a5f68900d0; tmp_dict_key_479 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_479, tmp_dict_value_479 ); tmp_dict_value_480 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isarray ); if (unlikely( tmp_dict_value_480 == NULL )) { tmp_dict_value_480 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isarray ); } if ( tmp_dict_value_480 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124593 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 986; goto frame_exception_exit_1; } tmp_dict_key_480 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_480, tmp_dict_value_480 ); PyList_SET_ITEM( tmp_assign_source_33, 26, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 8 ); tmp_dict_value_481 = const_str_digest_a23ad65f708fe0ccf3375a05edaf137f; tmp_dict_key_481 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_481, tmp_dict_value_481 ); tmp_dict_value_482 = const_str_digest_484347358833d2d05d8fc69e7493f100; tmp_dict_key_482 = const_str_plain_kwlistxa; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_482, tmp_dict_value_482 ); tmp_dict_value_483 = const_str_plain_i; tmp_dict_key_483 = const_str_plain_xaformat; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_483, tmp_dict_value_483 ); tmp_dict_value_484 = const_str_digest_fa2c4b951468a9631db264c5434a4c6d; tmp_dict_key_484 = const_str_plain_keys_xa; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_484, tmp_dict_value_484 ); tmp_dict_value_485 = const_str_digest_b8c204bcd104359163fd2e01f36173c7; tmp_dict_key_485 = const_str_plain_docsignxa; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_485, tmp_dict_value_485 ); tmp_dict_value_486 = const_str_digest_152c5ee2b2e7dc93bd9f827427a9f43c; tmp_dict_key_486 = const_str_plain_docsignxashort; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_486, tmp_dict_value_486 ); tmp_dict_value_487 = const_str_digest_773353192e877182884c50a8d0c0486a; tmp_dict_key_487 = const_str_plain_docstropt; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_487, tmp_dict_value_487 ); tmp_called_150 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_150 == NULL )) { tmp_called_150 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_150 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 995; goto frame_exception_exit_1; } tmp_call_arg_element_223 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isarray ); if (unlikely( tmp_call_arg_element_223 == NULL )) { tmp_call_arg_element_223 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isarray ); } if ( tmp_call_arg_element_223 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124593 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 995; goto frame_exception_exit_1; } tmp_call_arg_element_224 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_overwrite ); if (unlikely( tmp_call_arg_element_224 == NULL )) { tmp_call_arg_element_224 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_overwrite ); } if ( tmp_call_arg_element_224 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151448 ], 40, 0 ); exception_tb = NULL; frame_module->f_lineno = 995; goto frame_exception_exit_1; } frame_module->f_lineno = 995; tmp_dict_value_488 = CALL_FUNCTION_WITH_ARGS2( tmp_called_150, tmp_call_arg_element_223, tmp_call_arg_element_224 ); if ( tmp_dict_value_488 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 995; goto frame_exception_exit_1; } tmp_dict_key_488 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_488, tmp_dict_value_488 ); Py_DECREF( tmp_dict_value_488 ); PyList_SET_ITEM( tmp_assign_source_33, 27, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 3 ); tmp_dict_value_489 = const_str_digest_e1e3e29ea125920cd2f7a3b6ae5e81aa; tmp_dict_key_489 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_489, tmp_dict_value_489 ); tmp_called_151 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_151 == NULL )) { tmp_called_151 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_151 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 998; goto frame_exception_exit_1; } tmp_call_arg_element_225 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isarray ); if (unlikely( tmp_call_arg_element_225 == NULL )) { tmp_call_arg_element_225 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isarray ); } if ( tmp_call_arg_element_225 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124593 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 998; goto frame_exception_exit_1; } tmp_call_arg_element_226 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_overwrite ); if (unlikely( tmp_call_arg_element_226 == NULL )) { tmp_call_arg_element_226 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_overwrite ); } if ( tmp_call_arg_element_226 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151448 ], 40, 0 ); exception_tb = NULL; frame_module->f_lineno = 998; goto frame_exception_exit_1; } frame_module->f_lineno = 998; tmp_dict_value_490 = CALL_FUNCTION_WITH_ARGS2( tmp_called_151, tmp_call_arg_element_225, tmp_call_arg_element_226 ); if ( tmp_dict_value_490 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 998; goto frame_exception_exit_1; } tmp_dict_key_490 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_490, tmp_dict_value_490 ); Py_DECREF( tmp_dict_value_490 ); tmp_dict_value_491 = const_str_empty; tmp_dict_key_491 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_491, tmp_dict_value_491 ); PyList_SET_ITEM( tmp_assign_source_33, 28, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 8 ); tmp_dict_value_492 = const_str_digest_ca50e6177ec63039f0422a4797375d0f; tmp_dict_key_492 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_492, tmp_dict_value_492 ); tmp_dict_value_493 = const_str_digest_484347358833d2d05d8fc69e7493f100; tmp_dict_key_493 = const_str_plain_kwlistxa; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_493, tmp_dict_value_493 ); tmp_dict_value_494 = const_str_plain_i; tmp_dict_key_494 = const_str_plain_xaformat; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_494, tmp_dict_value_494 ); tmp_dict_value_495 = const_str_digest_fa2c4b951468a9631db264c5434a4c6d; tmp_dict_key_495 = const_str_plain_keys_xa; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_495, tmp_dict_value_495 ); tmp_dict_value_496 = const_str_digest_617134fe87fb293497d3503a48221184; tmp_dict_key_496 = const_str_plain_docsignxa; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_496, tmp_dict_value_496 ); tmp_dict_value_497 = const_str_digest_152c5ee2b2e7dc93bd9f827427a9f43c; tmp_dict_key_497 = const_str_plain_docsignxashort; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_497, tmp_dict_value_497 ); tmp_dict_value_498 = const_str_digest_ac6a99e739693f272ebb761c3b4a46d8; tmp_dict_key_498 = const_str_plain_docstropt; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_498, tmp_dict_value_498 ); tmp_called_152 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_152 == NULL )) { tmp_called_152 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_152 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 1009; goto frame_exception_exit_1; } tmp_call_arg_element_227 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isarray ); if (unlikely( tmp_call_arg_element_227 == NULL )) { tmp_call_arg_element_227 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isarray ); } if ( tmp_call_arg_element_227 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124593 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 1009; goto frame_exception_exit_1; } tmp_call_arg_element_228 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_copy ); if (unlikely( tmp_call_arg_element_228 == NULL )) { tmp_call_arg_element_228 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_copy ); } if ( tmp_call_arg_element_228 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151488 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 1009; goto frame_exception_exit_1; } frame_module->f_lineno = 1009; tmp_dict_value_499 = CALL_FUNCTION_WITH_ARGS2( tmp_called_152, tmp_call_arg_element_227, tmp_call_arg_element_228 ); if ( tmp_dict_value_499 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 1009; goto frame_exception_exit_1; } tmp_dict_key_499 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_499, tmp_dict_value_499 ); Py_DECREF( tmp_dict_value_499 ); PyList_SET_ITEM( tmp_assign_source_33, 29, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 3 ); tmp_dict_value_500 = const_str_digest_e1e3e29ea125920cd2f7a3b6ae5e81aa; tmp_dict_key_500 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_500, tmp_dict_value_500 ); tmp_called_153 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_153 == NULL )) { tmp_called_153 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_153 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 1012; goto frame_exception_exit_1; } tmp_call_arg_element_229 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isarray ); if (unlikely( tmp_call_arg_element_229 == NULL )) { tmp_call_arg_element_229 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isarray ); } if ( tmp_call_arg_element_229 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124593 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 1012; goto frame_exception_exit_1; } tmp_call_arg_element_230 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_copy ); if (unlikely( tmp_call_arg_element_230 == NULL )) { tmp_call_arg_element_230 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_copy ); } if ( tmp_call_arg_element_230 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151488 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 1012; goto frame_exception_exit_1; } frame_module->f_lineno = 1012; tmp_dict_value_501 = CALL_FUNCTION_WITH_ARGS2( tmp_called_153, tmp_call_arg_element_229, tmp_call_arg_element_230 ); if ( tmp_dict_value_501 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 1012; goto frame_exception_exit_1; } tmp_dict_key_501 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_501, tmp_dict_value_501 ); Py_DECREF( tmp_dict_value_501 ); tmp_dict_value_502 = const_str_empty; tmp_dict_key_502 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_502, tmp_dict_value_502 ); PyList_SET_ITEM( tmp_assign_source_33, 30, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 3 ); tmp_dict_value_503 = PyList_New( 2 ); tmp_list_element_25 = _PyDict_NewPresized( 1 ); tmp_dict_value_504 = const_str_plain_forcomb; tmp_dict_key_504 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); if (unlikely( tmp_dict_key_504 == NULL )) { tmp_dict_key_504 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); } if ( tmp_dict_key_504 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_503 ); Py_DECREF( tmp_list_element_25 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125444 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 1015; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_25, tmp_dict_key_504, tmp_dict_value_504 ); PyList_SET_ITEM( tmp_dict_value_503, 0, tmp_list_element_25 ); tmp_list_element_25 = _PyDict_NewPresized( 1 ); tmp_dict_value_505 = const_str_plain_CFUNCSMESS; tmp_dict_key_505 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); if (unlikely( tmp_dict_key_505 == NULL )) { tmp_dict_key_505 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); } if ( tmp_dict_key_505 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_503 ); Py_DECREF( tmp_list_element_25 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125444 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 1015; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_25, tmp_dict_key_505, tmp_dict_value_505 ); PyList_SET_ITEM( tmp_dict_value_503, 1, tmp_list_element_25 ); tmp_dict_key_503 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_503, tmp_dict_value_503 ); Py_DECREF( tmp_dict_value_503 ); tmp_dict_value_506 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isarray ); if (unlikely( tmp_dict_value_506 == NULL )) { tmp_dict_value_506 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isarray ); } if ( tmp_dict_value_506 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124593 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 1016; goto frame_exception_exit_1; } tmp_dict_key_506 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_506, tmp_dict_value_506 ); tmp_dict_value_507 = const_str_empty; tmp_dict_key_507 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_507, tmp_dict_value_507 ); PyList_SET_ITEM( tmp_assign_source_33, 31, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 6 ); tmp_dict_value_508 = const_str_digest_94bcdde9f91533758026d6169c99b194; tmp_dict_key_508 = const_str_plain_decl; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_508, tmp_dict_value_508 ); tmp_dict_value_509 = _PyDict_NewPresized( 1 ); tmp_dict_value_510 = const_str_plain_O; tmp_dict_key_510 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isrequired ); if (unlikely( tmp_dict_key_510 == NULL )) { tmp_dict_key_510 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isrequired ); } if ( tmp_dict_key_510 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_509 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128672 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 1020; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_509, tmp_dict_key_510, tmp_dict_value_510 ); tmp_dict_key_509 = const_str_plain_argformat; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_509, tmp_dict_value_509 ); Py_DECREF( tmp_dict_value_509 ); tmp_dict_value_511 = _PyDict_NewPresized( 1 ); tmp_dict_value_512 = const_str_plain_O; tmp_dict_key_512 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_dict_key_512 == NULL )) { tmp_dict_key_512 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_dict_key_512 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_511 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124244 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 1021; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_511, tmp_dict_key_512, tmp_dict_value_512 ); tmp_dict_key_511 = const_str_plain_keyformat; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_511, tmp_dict_value_511 ); Py_DECREF( tmp_dict_value_511 ); tmp_dict_value_513 = _PyDict_NewPresized( 1 ); tmp_dict_value_514 = const_str_digest_74327d7eb38e858582fe177e885d2475; tmp_dict_key_514 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isrequired ); if (unlikely( tmp_dict_key_514 == NULL )) { tmp_dict_key_514 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isrequired ); } if ( tmp_dict_key_514 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_513 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128672 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 1022; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_513, tmp_dict_key_514, tmp_dict_value_514 ); tmp_dict_key_513 = const_str_plain_args_capi; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_513, tmp_dict_value_513 ); Py_DECREF( tmp_dict_value_513 ); tmp_dict_value_515 = _PyDict_NewPresized( 1 ); tmp_dict_value_516 = const_str_digest_74327d7eb38e858582fe177e885d2475; tmp_dict_key_516 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isoptional ); if (unlikely( tmp_dict_key_516 == NULL )) { tmp_dict_key_516 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isoptional ); } if ( tmp_dict_key_516 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_515 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124244 ], 32, 0 ); exception_tb = NULL; frame_module->f_lineno = 1023; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_515, tmp_dict_key_516, tmp_dict_value_516 ); tmp_dict_key_515 = const_str_plain_keys_capi; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_515, tmp_dict_value_515 ); Py_DECREF( tmp_dict_value_515 ); tmp_called_154 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_154 == NULL )) { tmp_called_154 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_154 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 1039; goto frame_exception_exit_1; } tmp_call_arg_element_231 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isarray ); if (unlikely( tmp_call_arg_element_231 == NULL )) { tmp_call_arg_element_231 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isarray ); } if ( tmp_call_arg_element_231 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124593 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 1039; goto frame_exception_exit_1; } tmp_call_arg_element_232 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_call_arg_element_232 == NULL )) { tmp_call_arg_element_232 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_call_arg_element_232 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 1039; goto frame_exception_exit_1; } frame_module->f_lineno = 1039; tmp_dict_value_517 = CALL_FUNCTION_WITH_ARGS2( tmp_called_154, tmp_call_arg_element_231, tmp_call_arg_element_232 ); if ( tmp_dict_value_517 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 1039; goto frame_exception_exit_1; } tmp_dict_key_517 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_517, tmp_dict_value_517 ); Py_DECREF( tmp_dict_value_517 ); PyList_SET_ITEM( tmp_assign_source_33, 32, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 4 ); tmp_dict_value_518 = PyList_New( 6 ); tmp_list_element_26 = const_str_digest_140b8c5286854407f508a0dae9b51bd0; Py_INCREF( tmp_list_element_26 ); PyList_SET_ITEM( tmp_dict_value_518, 0, tmp_list_element_26 ); tmp_list_element_26 = const_str_digest_4085e6150841584387baceb03e192208; Py_INCREF( tmp_list_element_26 ); PyList_SET_ITEM( tmp_dict_value_518, 1, tmp_list_element_26 ); tmp_list_element_26 = _PyDict_NewPresized( 1 ); tmp_dict_value_519 = const_str_digest_3dc156e6a2d607058ba86c8c0498e4f7; tmp_dict_key_519 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_hide ); if (unlikely( tmp_dict_key_519 == NULL )) { tmp_dict_key_519 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_hide ); } if ( tmp_dict_key_519 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_518 ); Py_DECREF( tmp_list_element_26 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124141 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 1043; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_26, tmp_dict_key_519, tmp_dict_value_519 ); PyList_SET_ITEM( tmp_dict_value_518, 2, tmp_list_element_26 ); tmp_list_element_26 = _PyDict_NewPresized( 1 ); tmp_dict_value_520 = const_str_digest_d88eb99589aadec9018c5dcfb35c3d1b; tmp_dict_key_520 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_dict_key_520 == NULL )) { tmp_dict_key_520 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_dict_key_520 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_518 ); Py_DECREF( tmp_list_element_26 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 1044; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_26, tmp_dict_key_520, tmp_dict_value_520 ); PyList_SET_ITEM( tmp_dict_value_518, 3, tmp_list_element_26 ); tmp_list_element_26 = const_str_digest_e6393a97f5d5446e3f140f696e680264; Py_INCREF( tmp_list_element_26 ); PyList_SET_ITEM( tmp_dict_value_518, 4, tmp_list_element_26 ); tmp_list_element_26 = _PyDict_NewPresized( 1 ); tmp_dict_value_521 = PyList_New( 4 ); tmp_list_element_27 = _PyDict_NewPresized( 1 ); tmp_dict_value_522 = const_str_digest_99db67e2828ac2898b82b9bee5044782; tmp_dict_key_522 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_dict_key_522 == NULL )) { tmp_dict_key_522 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_dict_key_522 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_518 ); Py_DECREF( tmp_list_element_26 ); Py_DECREF( tmp_dict_value_521 ); Py_DECREF( tmp_list_element_27 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 1053; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_27, tmp_dict_key_522, tmp_dict_value_522 ); PyList_SET_ITEM( tmp_dict_value_521, 0, tmp_list_element_27 ); tmp_list_element_27 = _PyDict_NewPresized( 1 ); tmp_dict_value_523 = const_str_digest_9bfe93836a7a4bca28d53503f73d529f; tmp_dict_key_523 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_hide ); if (unlikely( tmp_dict_key_523 == NULL )) { tmp_dict_key_523 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_hide ); } if ( tmp_dict_key_523 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_518 ); Py_DECREF( tmp_list_element_26 ); Py_DECREF( tmp_dict_value_521 ); Py_DECREF( tmp_list_element_27 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124141 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 1054; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_27, tmp_dict_key_523, tmp_dict_value_523 ); PyList_SET_ITEM( tmp_dict_value_521, 1, tmp_list_element_27 ); tmp_list_element_27 = _PyDict_NewPresized( 1 ); tmp_dict_value_524 = const_str_digest_18c508c400e195b421fc11655c7a57b2; tmp_dict_key_524 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplexarray ); if (unlikely( tmp_dict_key_524 == NULL )) { tmp_dict_key_524 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplexarray ); } if ( tmp_dict_key_524 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_518 ); Py_DECREF( tmp_list_element_26 ); Py_DECREF( tmp_dict_value_521 ); Py_DECREF( tmp_list_element_27 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128275 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 1055; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_27, tmp_dict_key_524, tmp_dict_value_524 ); PyList_SET_ITEM( tmp_dict_value_521, 2, tmp_list_element_27 ); tmp_list_element_27 = const_str_digest_1177440af11d75a5bc642deb1185d476; Py_INCREF( tmp_list_element_27 ); PyList_SET_ITEM( tmp_dict_value_521, 3, tmp_list_element_27 ); tmp_dict_key_521 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); if (unlikely( tmp_dict_key_521 == NULL )) { tmp_dict_key_521 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); } if ( tmp_dict_key_521 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_518 ); Py_DECREF( tmp_list_element_26 ); Py_DECREF( tmp_dict_value_521 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125444 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 1052; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_26, tmp_dict_key_521, tmp_dict_value_521 ); Py_DECREF( tmp_dict_value_521 ); PyList_SET_ITEM( tmp_dict_value_518, 5, tmp_list_element_26 ); tmp_dict_key_518 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_518, tmp_dict_value_518 ); Py_DECREF( tmp_dict_value_518 ); tmp_dict_value_525 = PyList_New( 4 ); tmp_list_element_28 = const_str_digest_c008d08b40f62830643d6e456c174f44; Py_INCREF( tmp_list_element_28 ); PyList_SET_ITEM( tmp_dict_value_525, 0, tmp_list_element_28 ); tmp_list_element_28 = _PyDict_NewPresized( 1 ); tmp_dict_value_526 = const_str_digest_ba96e1b0745354ebb9ebbd896eef2382; tmp_called_155 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_155 == NULL )) { tmp_called_155 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_155 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_525 ); Py_DECREF( tmp_list_element_28 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 1072; goto frame_exception_exit_1; } tmp_called_156 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_or ); if (unlikely( tmp_called_156 == NULL )) { tmp_called_156 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_or ); } if ( tmp_called_156 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_525 ); Py_DECREF( tmp_list_element_28 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125281 ], 26, 0 ); exception_tb = NULL; frame_module->f_lineno = 1072; goto frame_exception_exit_1; } tmp_call_arg_element_234 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_out ); if (unlikely( tmp_call_arg_element_234 == NULL )) { tmp_call_arg_element_234 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_out ); } if ( tmp_call_arg_element_234 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_525 ); Py_DECREF( tmp_list_element_28 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124107 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 1072; goto frame_exception_exit_1; } tmp_call_arg_element_235 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_hide ); if (unlikely( tmp_call_arg_element_235 == NULL )) { tmp_call_arg_element_235 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_hide ); } if ( tmp_call_arg_element_235 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_525 ); Py_DECREF( tmp_list_element_28 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124141 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 1072; goto frame_exception_exit_1; } frame_module->f_lineno = 1072; tmp_call_arg_element_233 = CALL_FUNCTION_WITH_ARGS2( tmp_called_156, tmp_call_arg_element_234, tmp_call_arg_element_235 ); if ( tmp_call_arg_element_233 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_525 ); Py_DECREF( tmp_list_element_28 ); frame_module->f_lineno = 1072; goto frame_exception_exit_1; } frame_module->f_lineno = 1072; tmp_dict_key_526 = CALL_FUNCTION_WITH_ARGS1( tmp_called_155, tmp_call_arg_element_233 ); Py_DECREF( tmp_call_arg_element_233 ); if ( tmp_dict_key_526 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_525 ); Py_DECREF( tmp_list_element_28 ); frame_module->f_lineno = 1072; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_28, tmp_dict_key_526, tmp_dict_value_526 ); Py_DECREF( tmp_dict_key_526 ); PyList_SET_ITEM( tmp_dict_value_525, 1, tmp_list_element_28 ); tmp_list_element_28 = _PyDict_NewPresized( 1 ); tmp_dict_value_527 = const_str_digest_428b1f0db6614bc681cf8230e37e4727; tmp_called_157 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_157 == NULL )) { tmp_called_157 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_157 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_525 ); Py_DECREF( tmp_list_element_28 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 1075; goto frame_exception_exit_1; } tmp_call_arg_element_236 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_hide ); if (unlikely( tmp_call_arg_element_236 == NULL )) { tmp_call_arg_element_236 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_hide ); } if ( tmp_call_arg_element_236 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_525 ); Py_DECREF( tmp_list_element_28 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124141 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 1075; goto frame_exception_exit_1; } tmp_called_158 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_158 == NULL )) { tmp_called_158 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_158 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_525 ); Py_DECREF( tmp_list_element_28 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 1075; goto frame_exception_exit_1; } tmp_call_arg_element_238 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_out ); if (unlikely( tmp_call_arg_element_238 == NULL )) { tmp_call_arg_element_238 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_out ); } if ( tmp_call_arg_element_238 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_525 ); Py_DECREF( tmp_list_element_28 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124107 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 1075; goto frame_exception_exit_1; } frame_module->f_lineno = 1075; tmp_call_arg_element_237 = CALL_FUNCTION_WITH_ARGS1( tmp_called_158, tmp_call_arg_element_238 ); if ( tmp_call_arg_element_237 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_525 ); Py_DECREF( tmp_list_element_28 ); frame_module->f_lineno = 1075; goto frame_exception_exit_1; } frame_module->f_lineno = 1075; tmp_dict_key_527 = CALL_FUNCTION_WITH_ARGS2( tmp_called_157, tmp_call_arg_element_236, tmp_call_arg_element_237 ); Py_DECREF( tmp_call_arg_element_237 ); if ( tmp_dict_key_527 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_525 ); Py_DECREF( tmp_list_element_28 ); frame_module->f_lineno = 1075; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_28, tmp_dict_key_527, tmp_dict_value_527 ); Py_DECREF( tmp_dict_key_527 ); PyList_SET_ITEM( tmp_dict_value_525, 2, tmp_list_element_28 ); tmp_list_element_28 = _PyDict_NewPresized( 1 ); tmp_dict_value_528 = const_str_digest_681c035c971246c828024e1eb1a024c7; tmp_dict_key_528 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); if (unlikely( tmp_dict_key_528 == NULL )) { tmp_dict_key_528 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_hasinitvalue ); } if ( tmp_dict_key_528 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_525 ); Py_DECREF( tmp_list_element_28 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125444 ], 34, 0 ); exception_tb = NULL; frame_module->f_lineno = 1076; goto frame_exception_exit_1; } PyDict_SetItem( tmp_list_element_28, tmp_dict_key_528, tmp_dict_value_528 ); PyList_SET_ITEM( tmp_dict_value_525, 3, tmp_list_element_28 ); tmp_dict_key_525 = const_str_plain_cleanupfrompyobj; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_525, tmp_dict_value_525 ); Py_DECREF( tmp_dict_value_525 ); tmp_dict_value_529 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isarray ); if (unlikely( tmp_dict_value_529 == NULL )) { tmp_dict_value_529 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isarray ); } if ( tmp_dict_value_529 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124593 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 1078; goto frame_exception_exit_1; } tmp_dict_key_529 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_529, tmp_dict_value_529 ); tmp_dict_value_530 = const_str_empty; tmp_dict_key_530 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_530, tmp_dict_value_530 ); PyList_SET_ITEM( tmp_assign_source_33, 33, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 1 ); tmp_called_159 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_159 == NULL )) { tmp_called_159 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_159 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 1087; goto frame_exception_exit_1; } tmp_call_arg_element_239 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isarray ); if (unlikely( tmp_call_arg_element_239 == NULL )) { tmp_call_arg_element_239 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isarray ); } if ( tmp_call_arg_element_239 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124593 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 1087; goto frame_exception_exit_1; } tmp_called_160 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_160 == NULL )) { tmp_called_160 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_160 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 1087; goto frame_exception_exit_1; } tmp_call_arg_element_241 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplexarray ); if (unlikely( tmp_call_arg_element_241 == NULL )) { tmp_call_arg_element_241 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplexarray ); } if ( tmp_call_arg_element_241 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128275 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 1087; goto frame_exception_exit_1; } frame_module->f_lineno = 1087; tmp_call_arg_element_240 = CALL_FUNCTION_WITH_ARGS1( tmp_called_160, tmp_call_arg_element_241 ); if ( tmp_call_arg_element_240 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 1087; goto frame_exception_exit_1; } frame_module->f_lineno = 1087; tmp_dict_value_531 = CALL_FUNCTION_WITH_ARGS2( tmp_called_159, tmp_call_arg_element_239, tmp_call_arg_element_240 ); Py_DECREF( tmp_call_arg_element_240 ); if ( tmp_dict_value_531 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 1087; goto frame_exception_exit_1; } tmp_dict_key_531 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_531, tmp_dict_value_531 ); Py_DECREF( tmp_dict_value_531 ); PyList_SET_ITEM( tmp_assign_source_33, 34, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 1 ); tmp_called_161 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_161 == NULL )) { tmp_called_161 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_161 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 1089; goto frame_exception_exit_1; } tmp_call_arg_element_242 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isarray ); if (unlikely( tmp_call_arg_element_242 == NULL )) { tmp_call_arg_element_242 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isarray ); } if ( tmp_call_arg_element_242 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124593 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 1089; goto frame_exception_exit_1; } tmp_called_162 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_162 == NULL )) { tmp_called_162 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_162 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 1089; goto frame_exception_exit_1; } tmp_call_arg_element_244 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplexarray ); if (unlikely( tmp_call_arg_element_244 == NULL )) { tmp_call_arg_element_244 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplexarray ); } if ( tmp_call_arg_element_244 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128275 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 1089; goto frame_exception_exit_1; } frame_module->f_lineno = 1089; tmp_call_arg_element_243 = CALL_FUNCTION_WITH_ARGS1( tmp_called_162, tmp_call_arg_element_244 ); if ( tmp_call_arg_element_243 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 1089; goto frame_exception_exit_1; } tmp_call_arg_element_245 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); if (unlikely( tmp_call_arg_element_245 == NULL )) { tmp_call_arg_element_245 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintent_nothide ); } if ( tmp_call_arg_element_245 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_call_arg_element_243 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 125197 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 1089; goto frame_exception_exit_1; } frame_module->f_lineno = 1089; tmp_dict_value_532 = CALL_FUNCTION_WITH_ARGS3( tmp_called_161, tmp_call_arg_element_242, tmp_call_arg_element_243, tmp_call_arg_element_245 ); Py_DECREF( tmp_call_arg_element_243 ); if ( tmp_dict_value_532 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); frame_module->f_lineno = 1089; goto frame_exception_exit_1; } tmp_dict_key_532 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_532, tmp_dict_value_532 ); Py_DECREF( tmp_dict_value_532 ); PyList_SET_ITEM( tmp_assign_source_33, 35, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 3 ); tmp_dict_value_533 = const_str_digest_034683ceccce831b3c4724622e7c61e0; tmp_dict_key_533 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_533, tmp_dict_value_533 ); tmp_dict_value_534 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isint1array ); if (unlikely( tmp_dict_value_534 == NULL )) { tmp_dict_value_534 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isint1array ); } if ( tmp_dict_value_534 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151415 ], 33, 0 ); exception_tb = NULL; frame_module->f_lineno = 1093; goto frame_exception_exit_1; } tmp_dict_key_534 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_534, tmp_dict_value_534 ); tmp_dict_value_535 = const_str_empty; tmp_dict_key_535 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_535, tmp_dict_value_535 ); PyList_SET_ITEM( tmp_assign_source_33, 36, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 3 ); tmp_dict_value_536 = const_str_digest_034683ceccce831b3c4724622e7c61e0; tmp_dict_key_536 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_536, tmp_dict_value_536 ); tmp_dict_value_537 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isunsigned_chararray ); if (unlikely( tmp_dict_value_537 == NULL )) { tmp_dict_value_537 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isunsigned_chararray ); } if ( tmp_dict_value_537 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151199 ], 42, 0 ); exception_tb = NULL; frame_module->f_lineno = 1098; goto frame_exception_exit_1; } tmp_dict_key_537 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_537, tmp_dict_value_537 ); tmp_dict_value_538 = const_str_empty; tmp_dict_key_538 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_538, tmp_dict_value_538 ); PyList_SET_ITEM( tmp_assign_source_33, 37, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 3 ); tmp_dict_value_539 = const_str_digest_034683ceccce831b3c4724622e7c61e0; tmp_dict_key_539 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_539, tmp_dict_value_539 ); tmp_dict_value_540 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isunsigned_shortarray ); if (unlikely( tmp_dict_value_540 == NULL )) { tmp_dict_value_540 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isunsigned_shortarray ); } if ( tmp_dict_value_540 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151241 ], 43, 0 ); exception_tb = NULL; frame_module->f_lineno = 1103; goto frame_exception_exit_1; } tmp_dict_key_540 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_540, tmp_dict_value_540 ); tmp_dict_value_541 = const_str_empty; tmp_dict_key_541 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_541, tmp_dict_value_541 ); PyList_SET_ITEM( tmp_assign_source_33, 38, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 3 ); tmp_dict_value_542 = const_str_digest_034683ceccce831b3c4724622e7c61e0; tmp_dict_key_542 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_542, tmp_dict_value_542 ); tmp_dict_value_543 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isunsigned_long_longarray ); if (unlikely( tmp_dict_value_543 == NULL )) { tmp_dict_value_543 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isunsigned_long_longarray ); } if ( tmp_dict_value_543 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 151284 ], 47, 0 ); exception_tb = NULL; frame_module->f_lineno = 1108; goto frame_exception_exit_1; } tmp_dict_key_543 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_543, tmp_dict_value_543 ); tmp_dict_value_544 = const_str_empty; tmp_dict_key_544 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_544, tmp_dict_value_544 ); PyList_SET_ITEM( tmp_assign_source_33, 39, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 3 ); tmp_dict_value_545 = const_str_digest_034683ceccce831b3c4724622e7c61e0; tmp_dict_key_545 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_545, tmp_dict_value_545 ); tmp_dict_value_546 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplexarray ); if (unlikely( tmp_dict_value_546 == NULL )) { tmp_dict_value_546 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplexarray ); } if ( tmp_dict_value_546 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128275 ], 36, 0 ); exception_tb = NULL; frame_module->f_lineno = 1113; goto frame_exception_exit_1; } tmp_dict_key_546 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_546, tmp_dict_value_546 ); tmp_dict_value_547 = const_str_empty; tmp_dict_key_547 = const_str_plain__depend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_547, tmp_dict_value_547 ); PyList_SET_ITEM( tmp_assign_source_33, 40, tmp_list_element_15 ); tmp_list_element_15 = _PyDict_NewPresized( 3 ); tmp_dict_value_548 = _PyDict_NewPresized( 1 ); tmp_dict_value_549 = const_str_digest_fa68c6dda4f168588cd3f272b7e3b4fb; tmp_dict_key_549 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isarrayofstrings ); if (unlikely( tmp_dict_key_549 == NULL )) { tmp_dict_key_549 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isarrayofstrings ); } if ( tmp_dict_key_549 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); Py_DECREF( tmp_dict_value_548 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126501 ], 38, 0 ); exception_tb = NULL; frame_module->f_lineno = 1118; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_548, tmp_dict_key_549, tmp_dict_value_549 ); tmp_dict_key_548 = const_str_plain_callfortranappend; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_548, tmp_dict_value_548 ); Py_DECREF( tmp_dict_value_548 ); tmp_dict_value_550 = const_str_plain_string; tmp_dict_key_550 = const_str_plain_need; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_550, tmp_dict_value_550 ); tmp_dict_value_551 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isstringarray ); if (unlikely( tmp_dict_value_551 == NULL )) { tmp_dict_value_551 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isstringarray ); } if ( tmp_dict_value_551 == NULL ) { Py_DECREF( tmp_assign_source_33 ); Py_DECREF( tmp_list_element_15 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124666 ], 35, 0 ); exception_tb = NULL; frame_module->f_lineno = 1120; goto frame_exception_exit_1; } tmp_dict_key_551 = const_str_plain__check; PyDict_SetItem( tmp_list_element_15, tmp_dict_key_551, tmp_dict_value_551 ); PyList_SET_ITEM( tmp_assign_source_33, 41, tmp_list_element_15 ); UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_arg_rules, tmp_assign_source_33 ); tmp_assign_source_34 = PyList_New( 5 ); tmp_list_element_29 = _PyDict_NewPresized( 2 ); tmp_dict_value_552 = _PyDict_NewPresized( 1 ); tmp_dict_value_553 = const_str_digest_ba6e2734a4c4b33dd16fd510fc59eb6f; tmp_dict_key_553 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_debugcapi ); if (unlikely( tmp_dict_key_553 == NULL )) { tmp_dict_key_553 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_debugcapi ); } if ( tmp_dict_key_553 == NULL ) { Py_DECREF( tmp_assign_source_34 ); Py_DECREF( tmp_list_element_29 ); Py_DECREF( tmp_dict_value_552 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 128634 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 1128; goto frame_exception_exit_1; } PyDict_SetItem( tmp_dict_value_552, tmp_dict_key_553, tmp_dict_value_553 ); tmp_dict_key_552 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_552, tmp_dict_value_552 ); Py_DECREF( tmp_dict_value_552 ); tmp_dict_value_554 = const_str_digest_901a22001a0c7f25add446a5f68900d0; tmp_dict_key_554 = const_str_plain_need; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_554, tmp_dict_value_554 ); PyList_SET_ITEM( tmp_assign_source_34, 0, tmp_list_element_29 ); tmp_list_element_29 = _PyDict_NewPresized( 5 ); tmp_dict_value_555 = const_str_digest_a32269879300b041fd441d576a971aa4; tmp_dict_key_555 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_555, tmp_dict_value_555 ); tmp_dict_value_556 = const_str_digest_2f4f3f7d23ec8a68ccbc66a579aca6d2; tmp_dict_key_556 = const_str_plain_cleanupfrompyobj; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_556, tmp_dict_value_556 ); tmp_dict_value_557 = const_str_plain_CHECKSCALAR; tmp_dict_key_557 = const_str_plain_need; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_557, tmp_dict_value_557 ); tmp_called_163 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_and ); if (unlikely( tmp_called_163 == NULL )) { tmp_called_163 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_and ); } if ( tmp_called_163 == NULL ) { Py_DECREF( tmp_assign_source_34 ); Py_DECREF( tmp_list_element_29 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126137 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 1134; goto frame_exception_exit_1; } tmp_call_arg_element_246 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isscalar ); if (unlikely( tmp_call_arg_element_246 == NULL )) { tmp_call_arg_element_246 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isscalar ); } if ( tmp_call_arg_element_246 == NULL ) { Py_DECREF( tmp_assign_source_34 ); Py_DECREF( tmp_list_element_29 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 72345 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 1134; goto frame_exception_exit_1; } tmp_called_164 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_l_not ); if (unlikely( tmp_called_164 == NULL )) { tmp_called_164 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_l_not ); } if ( tmp_called_164 == NULL ) { Py_DECREF( tmp_assign_source_34 ); Py_DECREF( tmp_list_element_29 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 126216 ], 27, 0 ); exception_tb = NULL; frame_module->f_lineno = 1134; goto frame_exception_exit_1; } tmp_call_arg_element_248 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_iscomplex ); if (unlikely( tmp_call_arg_element_248 == NULL )) { tmp_call_arg_element_248 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iscomplex ); } if ( tmp_call_arg_element_248 == NULL ) { Py_DECREF( tmp_assign_source_34 ); Py_DECREF( tmp_list_element_29 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124745 ], 31, 0 ); exception_tb = NULL; frame_module->f_lineno = 1134; goto frame_exception_exit_1; } frame_module->f_lineno = 1134; tmp_call_arg_element_247 = CALL_FUNCTION_WITH_ARGS1( tmp_called_164, tmp_call_arg_element_248 ); if ( tmp_call_arg_element_247 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_34 ); Py_DECREF( tmp_list_element_29 ); frame_module->f_lineno = 1134; goto frame_exception_exit_1; } frame_module->f_lineno = 1134; tmp_dict_value_558 = CALL_FUNCTION_WITH_ARGS2( tmp_called_163, tmp_call_arg_element_246, tmp_call_arg_element_247 ); Py_DECREF( tmp_call_arg_element_247 ); if ( tmp_dict_value_558 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_34 ); Py_DECREF( tmp_list_element_29 ); frame_module->f_lineno = 1134; goto frame_exception_exit_1; } tmp_dict_key_558 = const_str_plain__check; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_558, tmp_dict_value_558 ); Py_DECREF( tmp_dict_value_558 ); tmp_dict_value_559 = const_str_empty; tmp_dict_key_559 = const_str_plain__break; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_559, tmp_dict_value_559 ); PyList_SET_ITEM( tmp_assign_source_34, 1, tmp_list_element_29 ); tmp_list_element_29 = _PyDict_NewPresized( 5 ); tmp_dict_value_560 = const_str_digest_163dc3507d0a117b14a81f27113a31a1; tmp_dict_key_560 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_560, tmp_dict_value_560 ); tmp_dict_value_561 = const_str_digest_ef99bdd7a9eb43f15832f068e2ea06fc; tmp_dict_key_561 = const_str_plain_cleanupfrompyobj; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_561, tmp_dict_value_561 ); tmp_dict_value_562 = const_str_plain_CHECKSTRING; tmp_dict_key_562 = const_str_plain_need; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_562, tmp_dict_value_562 ); tmp_dict_value_563 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isstring ); if (unlikely( tmp_dict_value_563 == NULL )) { tmp_dict_value_563 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isstring ); } if ( tmp_dict_value_563 == NULL ) { Py_DECREF( tmp_assign_source_34 ); Py_DECREF( tmp_list_element_29 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124629 ], 30, 0 ); exception_tb = NULL; frame_module->f_lineno = 1140; goto frame_exception_exit_1; } tmp_dict_key_563 = const_str_plain__check; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_563, tmp_dict_value_563 ); tmp_dict_value_564 = const_str_empty; tmp_dict_key_564 = const_str_plain__break; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_564, tmp_dict_value_564 ); PyList_SET_ITEM( tmp_assign_source_34, 2, tmp_list_element_29 ); tmp_list_element_29 = _PyDict_NewPresized( 5 ); tmp_dict_value_565 = const_str_plain_CHECKARRAY; tmp_dict_key_565 = const_str_plain_need; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_565, tmp_dict_value_565 ); tmp_dict_value_566 = const_str_digest_95b6249137a7d93810a38eee006bae9d; tmp_dict_key_566 = const_str_plain_frompyobj; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_566, tmp_dict_value_566 ); tmp_dict_value_567 = const_str_digest_533c951d823b6e57c80e5d5b1a9091f9; tmp_dict_key_567 = const_str_plain_cleanupfrompyobj; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_567, tmp_dict_value_567 ); tmp_dict_value_568 = GET_STRING_DICT_VALUE( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_isarray ); if (unlikely( tmp_dict_value_568 == NULL )) { tmp_dict_value_568 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isarray ); } if ( tmp_dict_value_568 == NULL ) { Py_DECREF( tmp_assign_source_34 ); Py_DECREF( tmp_list_element_29 ); exception_type = INCREASE_REFCOUNT( PyExc_NameError ); exception_value = UNSTREAM_STRING( &constant_bin[ 124593 ], 29, 0 ); exception_tb = NULL; frame_module->f_lineno = 1146; goto frame_exception_exit_1; } tmp_dict_key_568 = const_str_plain__check; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_568, tmp_dict_value_568 ); tmp_dict_value_569 = const_str_empty; tmp_dict_key_569 = const_str_plain__break; PyDict_SetItem( tmp_list_element_29, tmp_dict_key_569, tmp_dict_value_569 ); PyList_SET_ITEM( tmp_assign_source_34, 3, tmp_list_element_29 ); tmp_list_element_29 = PyDict_Copy( const_dict_c3b8e398c8954454fba85f0a68a2b3f2 ); PyList_SET_ITEM( tmp_assign_source_34, 4, tmp_list_element_29 ); UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_check_rules, tmp_assign_source_34 ); tmp_assign_source_35 = MAKE_FUNCTION_function_1_buildmodule_of_module_numpy$f2py$rules( ); if ( tmp_assign_source_35 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_35 ); frame_module->f_lineno = 1159; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_buildmodule, tmp_assign_source_35 ); tmp_assign_source_36 = PyDict_Copy( const_dict_055a5e2e8d3048ab4922e8d2791b57c7 ); UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_stnd, tmp_assign_source_36 ); tmp_assign_source_37 = MAKE_FUNCTION_function_2_buildapi_of_module_numpy$f2py$rules( ); if ( tmp_assign_source_37 == NULL ) { assert( ERROR_OCCURED() ); PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb ); Py_DECREF( tmp_assign_source_37 ); frame_module->f_lineno = 1327; goto frame_exception_exit_1; } UPDATE_STRING_DICT1( moduledict_numpy$f2py$rules, (Nuitka_StringObject *)const_str_plain_buildapi, tmp_assign_source_37 ); // Restore frame exception if necessary. #if 0 RESTORE_FRAME_EXCEPTION( frame_module ); #endif popFrameStack(); assertFrameObject( frame_module ); Py_DECREF( frame_module ); goto frame_no_exception_1; frame_exception_exit_1:; #if 0 RESTORE_FRAME_EXCEPTION( frame_module ); #endif if ( exception_tb == NULL ) { exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_module ) ); } else if ( exception_tb->tb_frame != frame_module ) { PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_module ) ); traceback_new->tb_next = exception_tb; exception_tb = traceback_new; } // Put the previous frame back on top. popFrameStack(); #if PYTHON_VERSION >= 340 frame_module->f_executing -= 1; #endif Py_DECREF( frame_module ); // Return the error. goto module_exception_exit; frame_no_exception_1:; return MOD_RETURN_VALUE( module_numpy$f2py$rules ); module_exception_exit: PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb ); return MOD_RETURN_VALUE( NULL ); }
dcbc8025067b01c1bb9262e876977fcb4d292268
0d339e5583bcefe610634e28bd77d0e60986167d
/core/Tau.h
3f5c8893929f2f6ad7deacf2e0c433dd6bfa340b
[]
no_license
perhansson/hps-apana
a528d3bcaf3fe2f2aed054d3e4974c16f753d22a
cfd34e84951aadb98c46fbb5e1f5f9cb486cc219
refs/heads/master
2020-05-30T18:23:24.318246
2014-02-06T01:39:36
2014-02-06T01:39:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,477
h
Tau.h
/************************************************************************** ** ** File: Tau.h ** ** Description: Generic analysis tau ** ** Author: J. Sjolin ** ** Created: Mon Sep 19 16:20:04 CEST 2005 ** Modified: ** **************************************************************************/ #ifndef __TAU_H #define __TAU_H #include "Particle.h" class Tau : public Particle { public: enum TAU_CUTS {ET=(1<<0), ETA1=(1<<1), ETA2=(1<<2), LL=(1<<3), ISO=(1<<4), EMRAD=(1<<5),EMF=(1<<6)}; Tau(void) {}; Tau(const Particle &p) : Particle(p), m_loglikelihood(0), m_emf(0), m_iso(0), m_emradius(0) {}; void loglikelihood(const float ll) {m_loglikelihood=ll;}; float loglikelihood(void) const {return m_loglikelihood;}; void emf(const float emf) {m_emf=emf;}; float emf(void) const {return m_emf;}; void iso(const float iso) {m_iso=iso;}; float iso(void) const {return m_iso;}; void emradius(const float emradius) {m_emradius=emradius;}; float emradius(void) const {return m_emradius;}; void print(void) const { std::cout << " Tau" << std::endl; print_particle(); std::cout << " LL = " << loglikelihood() << std::endl; std::cout << " EMF = " << emf() << std::endl; std::cout << " EMRAD = " << emradius() << std::endl; std::cout << " ISO = " << iso() << std::endl; } private: float m_loglikelihood, m_emf, m_iso, m_emradius; }; #endif /* __TAU_H */
6a1411c258a64c25161a1b116a3f29e2d5ce4905
4eaab46d2ae7395ca8c273e80bdae779368d68c3
/Contest 6/E_xep_hang.cpp
f0df7743f38ba16d24e40407142493313a036bb8
[]
no_license
ngoquanghuy99/Data-structures-Algorithms-problems-and-solutions
b96f15f2245d66f8914ebb1552e7540cd610c400
95bb1dba201f94b23ff6a45344ada2b9f64597aa
refs/heads/master
2022-12-25T04:49:39.605637
2020-10-06T15:48:45
2020-10-06T15:48:45
272,522,675
4
0
null
null
null
null
UTF-8
C++
false
false
716
cpp
E_xep_hang.cpp
#include<iostream> using namespace std; int N, K; int partition(int l, int r, int a[], int B[]){ int x = a[l], i = l+1, j = r; do{ while(i<=j&&a[i]<=x) i++; while(i<=j&&a[j]>x) j--; if(i<j){ swap(a[i],a[j]); swap(B[i],B[j]); i++; j--; } }while(i<=j); swap(a[l],a[j]); swap(B[l],B[j]); return j; } void qsort(int a[], int l, int r, int B[]){ int k; if(l<r){ k = partition(l,r,a,B); qsort(a,l,k-1,B); qsort(a,k+1,r,B); } } main(){ ios::sync_with_stdio(false); cin.tie(); cin>>N; int T[N+1], D[N+1]; for(int i = 1;i<=N;i++) cin>>T[i]>>D[i]; qsort(T,1,N,D); int kq = T[1]+D[1]; for(int i = 2;i<=N;i++){ if(kq < T[i]) kq = T[i]+D[i]; else kq +=D[i]; } cout<<kq<<endl; }
24d2c8a7110af986d353f924d6e3eda65f3b6bf9
005ead270fdff9ad85513d0b2e345dea11e2fbb4
/Q026_删除排序数组中的重复项.cpp
86e02482a0bca95ff6fdf4416dbd4df8e0dc7c24
[]
no_license
wangqinghe95/Code-Leetcode
222d5d50e5f81b25549d61810618a50849fc3269
3cdcdf2047e0c41485817e04c8e23853e9332c63
refs/heads/master
2023-04-29T20:44:22.764343
2021-05-16T05:40:27
2021-05-16T05:40:27
274,806,554
0
0
null
null
null
null
UTF-8
C++
false
false
1,246
cpp
Q026_删除排序数组中的重复项.cpp
/* C */ int removeDuplicates(int* nums, int numsSize){ int removeNums = 0; for(int i = 1; i < numsSize; i++) { if(nums[i] == nums[i-1]) { removeNums++; } else { nums[i-removeNums] = nums[i]; } } return numsSize-removeNums; } /* C++ */ class Solution { public: int removeDuplicates(vector<int>& nums) { if (nums.empty()) { return 0; } int i = 0; int j = 0; while (j < nums.size()) { # if 1 if (nums[i] == nums[j]) { ++j; } else { ++i; nums[i] = nums[j]; ++j; } #else if (nums[i] != nums[j]) { nums[++i] = nums[j]; } ++j; #endif } return i+1; } }; /*使用STL*/ //unique 函数会去掉排序容器中的重复元素,并返回尾地址,所以再减掉首地址就得到长度了。 class Solution { public: int removeDuplicates(vector<int>& nums) { return unique(nums.begin(), nums.end()) - nums.begin(); };
1b1408082a7a5a8859c52dfb6f80ecd0b435eef4
b930461f8fdb65c6f6ea1a0c8fbe1032e23c4d60
/D3D Game Demo/main.cpp
264d53633b069c41e3d6d3fd9ca5b6fc658a35a2
[]
no_license
AkasLiu/D3D-Game-Demo
6029fbcb4b5a80d898a23b1e07888dfa46f00cfa
3acb933bb2056440827ef546ed1209b04c8c4fc4
refs/heads/master
2020-03-23T09:47:14.086464
2018-07-28T00:25:17
2018-07-28T00:25:17
141,407,517
0
0
null
null
null
null
GB18030
C++
false
false
23,873
cpp
main.cpp
#include "d3dUtility.h" #include "gameObject.h" #include "vertex.h" #include "plane.h" #include "DirectInputClass.h" #include "camera.h" #include "cube.h" #include "font.h" #include "skyBox.h" #include "character.h" #include "terrain.h" #include "pSystem.h" #include <ctime> //-----------------------------------【宏定义部分】-------------------------------------------- // 描述:定义一些辅助宏 //------------------------------------------------------------------------------------------------ #define WINDOW_WIDTH 800 //为窗口宽度定义的宏,以方便在此处修改窗口宽度 #define WINDOW_HEIGHT 600 //为窗口高度定义的宏,以方便在此处修改窗口高度 #pragma comment(lib,"d3d9.lib") #pragma comment(lib,"d3dx9.lib") #pragma comment(lib, "dinput8.lib") // 使用DirectInput必须包含的头文件,注意这里有8 #pragma comment(lib,"dxguid.lib") #pragma comment(lib, "winmm.lib") //-----------------------------------【全局变量声明部分】------------------------------------- // 描述:全局变量的声明 //------------------------------------------------------------------------------------------------ ID3DXFont* g_pFont = NULL; //字体COM接口 float g_FPS = 0.0f; //一个浮点型的变量,代表帧速率 wchar_t g_strFPS[50]; //包含帧速率的字符数组 D3DMATRIX matTest; Cube* cubeTest; ID3DXEffect* FogEffect = 0; D3DXHANDLE FogTechHandle = 0; LPDIRECT3DDEVICE9 g_pd3dDevice = NULL; //Direct3D设备对象 Plane* floorPlane; //地面 DInputClass* g_pDInput = NULL; //一个DInputClass类的指针 Cube* cube[4]; //边界的围墙 SkyBox* skyBox; Font* blackFont; Character* player; Terrain* TheTerrain; psys::PSystem* Sno = 0; Camera TheCamera(Camera::LANDOBJECT); const DWORD Vertex::FVF = D3DFVF_XYZ | D3DFVF_NORMAL | D3DFVF_TEX1; //-----------------------------------【全局函数声明部分】---------------------------------------- // 描述:全局函数声明,防止“未声明的标识”系列错误 //------------------------------------------------------------------------------------------------ LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);//窗口过程函数 HRESULT Direct3D_Init(HWND hwnd); //在这个函数中进行Direct3D的初始化 HRESULT Objects_Init(HWND hwnd); //在这个函数中进行要绘制的物体的资源初始化 VOID Direct3D_Render(HWND hwnd); //在这个函数中进行Direct3D渲染代码的书写 VOID Direct3D_CleanUp(); //在这个函数中清理COM资源以及其他资源 void Direct3D_Update(HWND hwnd,float deltaTime); //-----------------------------------【WinMain( )函数】------------------------------------------ // 描述:Windows应用程序的入口函数,我们的程序从这里开始 //------------------------------------------------------------------------------------------------ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd) { //【1】窗口创建四步曲之一:开始设计一个完整的窗口类 WNDCLASSEX wndClass = { 0 }; //用WINDCLASSEX定义了一个窗口类 wndClass.cbSize = sizeof(WNDCLASSEX); //设置结构体的字节数大小 wndClass.style = CS_HREDRAW | CS_VREDRAW; //设置窗口的样式 wndClass.lpfnWndProc = WndProc; //设置指向窗口过程函数的指针 wndClass.cbClsExtra = 0; //窗口类的附加内存,取0就可以了 wndClass.cbWndExtra = 0; //窗口的附加内存,依然取0就行了 wndClass.hInstance = hInstance; //指定包含窗口过程的程序的实例句柄。 wndClass.hIcon = (HICON)::LoadImage(NULL, L"icon.ico", IMAGE_ICON, 0, 0, LR_DEFAULTSIZE | LR_LOADFROMFILE); //本地加载自定义ico图标 wndClass.hCursor = LoadCursor(NULL, IDC_ARROW); //指定窗口类的光标句柄。 wndClass.hbrBackground = (HBRUSH)GetStockObject(GRAY_BRUSH); //为hbrBackground成员指定一个白色画刷句柄 wndClass.lpszMenuName = NULL; //用一个以空终止的字符串,指定菜单资源的名字。 wndClass.lpszClassName = L"D3DGame"; //用一个以空终止的字符串,指定窗口类的名字。 //【2】窗口创建四步曲之二:注册窗口类 if (!RegisterClassEx(&wndClass)) //设计完窗口后,需要对窗口类进行注册,这样才能创建该类型的窗口 return -1; //【3】窗口创建四步曲之三:正式创建窗口 HWND hwnd = CreateWindow(L"D3DGame", L"D3D Game Demo", //喜闻乐见的创建窗口函数CreateWindow WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, WINDOW_WIDTH, WINDOW_HEIGHT, NULL, NULL, hInstance, NULL); //Direct3D资源的初始化,调用失败用messagebox予以显示 if (!(S_OK == Direct3D_Init(hwnd))) { MessageBox(hwnd, _T("Direct3D初始化失败~!"), _T("浅墨的消息窗口"), 0); //使用MessageBox函数,创建一个消息窗口 } //【4】窗口创建四步曲之四:窗口的移动、显示与更新 MoveWindow(hwnd, 250, 80, WINDOW_WIDTH, WINDOW_HEIGHT, true); //调整窗口显示时的位置,使窗口左上角位于(250,80)处 ShowWindow(hwnd, nShowCmd); //调用ShowWindow函数来显示窗口 UpdateWindow(hwnd); //对窗口进行更新,就像我们买了新房子要装修一样 //PlaySound(L"War3XMainScreen.wav", NULL, SND_FILENAME | SND_ASYNC | SND_LOOP); //循环播放背景音乐 //MessageBox(hwnd, L"DirectX,等着瞧吧,我们来降服你了~!", L"浅墨的消息窗口", 0); //使用MessageBox函数,显示一个消息窗口 //进行DirectInput类的初始化 g_pDInput = new DInputClass(); g_pDInput->Init(hwnd, hInstance, DISCL_FOREGROUND | DISCL_NONEXCLUSIVE, DISCL_FOREGROUND | DISCL_NONEXCLUSIVE); //【5】消息循环过程 MSG msg = { 0 }; //初始化msg while (msg.message != WM_QUIT) //使用while循环 { if (PeekMessage(&msg, 0, 0, 0, PM_REMOVE)) //查看应用程序消息队列,有消息时将队列中的消息派发出去。 { TranslateMessage(&msg); //将虚拟键消息转换为字符消息 DispatchMessage(&msg); //该函数分发一个消息给窗口程序。 } else { static float currentTime = 0.0f;//当前时间 static float lastTime = 0.0f;//持续时间 static float deltaTime = 0.0f;//时间间隔 currentTime = (float)timeGetTime(); deltaTime = (currentTime - lastTime)*0.001f; lastTime = currentTime; Direct3D_Update(hwnd,deltaTime); Direct3D_Render(hwnd); //进行渲染 } } //【6】窗口类的注销 UnregisterClass(L"D3DGame", wndClass.hInstance); //程序准备结束,注销窗口类 return 0; } //-----------------------------------【WndProc( )函数】-------------------------------------- // 描述:窗口过程函数WndProc,对窗口消息进行处理 //------------------------------------------------------------------------------------------------ LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) //switch语句开始 { case WM_PAINT: // 若是客户区重绘消息 Direct3D_Render(hwnd); //调用Direct3D渲染函数 ValidateRect(hwnd, NULL); // 更新客户区的显示 break; //跳出该switch语句 case WM_KEYDOWN: // 若是键盘按下消息 if (wParam == VK_ESCAPE) // 如果被按下的键是ESC DestroyWindow(hwnd); // 销毁窗口, 并发送一条WM_DESTROY消息 break; //跳出该switch语句 case WM_DESTROY: //若是窗口销毁消息 Direct3D_CleanUp(); //调用自定义的资源清理函数Game_CleanUp()进行退出前的资源清理 PostQuitMessage(0); //向系统表明有个线程有终止请求。用来响应WM_DESTROY消息 break; //跳出该switch语句 default: //若上述case条件都不符合,则执行该default语句 return DefWindowProc(hwnd, message, wParam, lParam); //调用缺省的窗口过程 } return 0; //正常退出 } //-----------------------------------【Direct3D_Init( )函数】-------------------------------------- // 描述:Direct3D初始化函数,进行Direct3D的初始化 //------------------------------------------------------------------------------------------------ HRESULT Direct3D_Init(HWND hwnd) { //-------------------------------------------------------------------------------------- // 【Direct3D初始化四步曲之一,创接口】:创建Direct3D接口对象, 以便用该Direct3D对象创建Direct3D设备对象 //-------------------------------------------------------------------------------------- LPDIRECT3D9 pD3D = NULL; //Direct3D接口对象的创建 if (NULL == (pD3D = Direct3DCreate9(D3D_SDK_VERSION))) //初始化Direct3D接口对象,并进行DirectX版本协商 return E_FAIL; //-------------------------------------------------------------------------------------- // 【Direct3D初始化四步曲之二,取信息】:获取硬件设备信息 //-------------------------------------------------------------------------------------- D3DCAPS9 caps; int vp = 0; if (FAILED(pD3D->GetDeviceCaps(D3DADAPTER_DEFAULT, D3DDEVTYPE_HAL, &caps))) { return E_FAIL; } if (caps.DevCaps & D3DDEVCAPS_HWTRANSFORMANDLIGHT) vp = D3DCREATE_HARDWARE_VERTEXPROCESSING; //支持硬件顶点运算,我们就采用硬件顶点运算,妥妥的 else vp = D3DCREATE_SOFTWARE_VERTEXPROCESSING; //不支持硬件顶点运算,无奈只好采用软件顶点运算 //-------------------------------------------------------------------------------------- // 【Direct3D初始化四步曲之三,填内容】:填充D3DPRESENT_PARAMETERS结构体 //-------------------------------------------------------------------------------------- D3DPRESENT_PARAMETERS d3dpp; ZeroMemory(&d3dpp, sizeof(d3dpp)); d3dpp.BackBufferWidth = WINDOW_WIDTH; d3dpp.BackBufferHeight = WINDOW_HEIGHT; d3dpp.BackBufferFormat = D3DFMT_A8R8G8B8; d3dpp.BackBufferCount = 1; d3dpp.MultiSampleType = D3DMULTISAMPLE_NONE; d3dpp.MultiSampleQuality = 0; d3dpp.SwapEffect = D3DSWAPEFFECT_DISCARD; d3dpp.hDeviceWindow = hwnd; d3dpp.Windowed = true; d3dpp.EnableAutoDepthStencil = true; d3dpp.AutoDepthStencilFormat = D3DFMT_D24S8; d3dpp.Flags = 0; d3dpp.FullScreen_RefreshRateInHz = 0; d3dpp.PresentationInterval = D3DPRESENT_INTERVAL_IMMEDIATE; //-------------------------------------------------------------------------------------- // 【Direct3D初始化四步曲之四,创设备】:创建Direct3D设备接口 //-------------------------------------------------------------------------------------- if (FAILED(pD3D->CreateDevice(D3DADAPTER_DEFAULT, D3DDEVTYPE_HAL, hwnd, vp, &d3dpp, &g_pd3dDevice))) return E_FAIL; d3d::Release<LPDIRECT3D9>(pD3D); //LPDIRECT3D9接口对象的使命完成,我们将其释放掉 if (!(S_OK == Objects_Init(hwnd))) return E_FAIL; //调用一次Objects_Init,进行渲染资源的初始化 return S_OK; } //-----------------------------------【Object_Init( )函数】-------------------------------------- // 描述:渲染资源初始化函数,在此函数中进行要被渲染的物体的资源的初始化 //-------------------------------------------------------------------------------------------------- HRESULT Objects_Init(HWND hwnd) { // //创建字体 // blackFont = new Font(36, g_pd3dDevice, hwnd); blackFont->createFont(); // //设置光照 // D3DXVECTOR3 lightPos(0.0f, 30.0f, 0.0f); D3DXCOLOR col(1.0f, 1.0f, 1.0f, 1.0f); D3DLIGHT9 light = d3d::InitPointLight(&lightPos, &col); g_pd3dDevice->SetLight(0, &light); g_pd3dDevice->LightEnable(0, true); g_pd3dDevice->SetRenderState(D3DRS_NORMALIZENORMALS, true); g_pd3dDevice->SetRenderState(D3DRS_SPECULARENABLE, true); // //创建天空 // skyBox = new SkyBox(g_pd3dDevice); skyBox->LoadSkyTextureFromFile(L"Texture\\SkyBox\\frontsnow1.jpg", L"Texture\\SkyBox\\backsnow1.jpg", L"Texture\\SkyBox\\leftsnow1.jpg", L"Texture\\SkyBox\\rightsnow1.jpg", L"Texture\\SkyBox\\topsnow1.jpg");//从文件加载前、后、左、右、顶面5个面的纹理图 skyBox->InitSkyBox(1000); //设置天空盒的边长 // //初始化地面 // D3DXVECTOR3 floorPostion = { 0,0,0 }; floorPlane = new Plane(500, 500, floorPostion, g_pd3dDevice); floorPlane->loadTexture(L"Texture\\desert.bmp"); floorPlane->init(); // //初始化cube构造四个边界的柱子 // /*----初始化cube的位置---*/ D3DXVECTOR3 cubePos[4]; D3DXVECTOR3 cubeSize[4]; cubePos[0] = D3DXVECTOR3{0,50,275}; cubeSize[0] = D3DXVECTOR3{ 500,100,50 }; cubePos[1] = D3DXVECTOR3{ 0,50,-275 }; cubeSize[1] = D3DXVECTOR3{ 500,100,50 }; cubePos[2] = D3DXVECTOR3{ 275,50,0 }; cubeSize[2] = D3DXVECTOR3{ 50,100,500 }; cubePos[3] = D3DXVECTOR3{ -275,50,0 }; cubeSize[3] = D3DXVECTOR3{ 50,100,500 }; for (int i = 0; i < 4; ++i) { cube[i] = new Cube(cubePos[i], cubeSize[i], g_pd3dDevice); cube[i]->setMaterial(d3d::GRAY_MTRL); cube[i]->init(); } //TheCamera.SetTargetPosition(&cube->getPosition()); // //Test cube // D3DXVECTOR3 cubepos = { 0,0,0 }; D3DXVECTOR3 szie = { 500,500,500 }; cubeTest= new Cube(cubepos, szie, g_pd3dDevice); cubeTest->setMaterial(d3d::GRAY_MTRL); cubeTest->init(); // //载入X文件,作为主角 // Transform playerTransform; playerTransform.position = { 0,80,0 }; playerTransform.scale = { 0.1f,0.1f,0.1f }; player = new Character(playerTransform,g_pd3dDevice); player->loadXFile(L"XFile\\Player\\miki.X"); player->init(); // //创建一个摄像机跟随的物体,暂时用cube代替 // /*D3DXVECTOR3 size = { 10,10,10 }; D3DXVECTOR3 cubePos = { 0,0,30 }; cubeTest = new Cube(cubePos, size, cubeMesh, Device); cubeTest->InitCube(); TheCamera.SetTargetPosition(&cubePos);*/ // //初始化地形 // D3DXVECTOR3 lightDirection(0.0f, 1.0f, 0.0f); TheTerrain = new Terrain(g_pd3dDevice, L"Terrain\\coastMountain64.raw", 64, 64, 5, 0.5f); TheTerrain->genTexture(&lightDirection); // seed random number generator srand((unsigned int)time(0)); // // Create Snow System. // BoundingBox boundingBox; *boundingBox.getBoudingBoxMin() = D3DXVECTOR3(-50.0f, 0.0f, -50.0f); *boundingBox.getBoudingBoxMax() = D3DXVECTOR3(50.0f, 150.0f, 50.0f); Sno = new psys::Snow(&boundingBox, 5000); Sno->init(g_pd3dDevice, "snowflake.dds"); // //创建雾化效果 // ID3DXBuffer* errorBuffer = 0; HRESULT hr = D3DXCreateEffectFromFile( g_pd3dDevice, L"fog.txt", 0, // no preprocessor definitions 0, // no ID3DXInclude interface D3DXSHADER_DEBUG, // compile flags 0, // don't share parameters &FogEffect, &errorBuffer); // output any error messages if (errorBuffer) { ::MessageBox(0, (LPCWSTR)errorBuffer->GetBufferPointer(), 0, 0); d3d::Release<ID3DXBuffer*>(errorBuffer); } if (FAILED(hr)) { ::MessageBox(0, L"D3DXCreateEffectFromFile() - FAILED", 0, 0); return false; } // // Save Frequently Accessed Parameter Handles // FogTechHandle = FogEffect->GetTechniqueByName("Fog"); // // 设置投影矩阵 // D3DXMATRIX proj; D3DXMatrixPerspectiveFovLH( &proj, D3DX_PI * 0.5f, // 90 - degree (float)WINDOW_WIDTH / (float)WINDOW_HEIGHT, 1.0f, 1000.0f); g_pd3dDevice->SetTransform(D3DTS_PROJECTION, &proj); return S_OK; } //-----------------------------------【Direct3D_Update( )函数】-------------------------------- // 描述:不是即时渲染代码但是需要即时调用的,如按键后的坐标的更改,都放在这里 //-------------------------------------------------------------------------------------------------- void Direct3D_Update(HWND hwnd, float deltaTime) { //使用DirectInput类读取数据 g_pDInput->GetInput(); //碰撞检测失败。。。。。 // 沿摄像机各分量移动视角 if (g_pDInput->IsKeyDown(DIK_A)) { //计算移动的距离 /*D3DXVECTOR3 cameraRightVec; TheCamera.getRight(&cameraRightVec); static D3DXVECTOR3 dist = D3DXVECTOR3(cameraRightVec.x, 0.0f, cameraRightVec.z) * (-20.0f)*deltaTime; BoundingBox *collision = player->getBoundingBox(); BoundingBox collisionCopy = *collision; collisionCopy.boudingBoxMove(dist); for (int i = 0; i < 4; ++i) { if (collisionCopy.isCollided(cube[i]->getBoundingBox())) { player->getBoundingBox()->boudingBoxMove(dist); break; } else { TheCamera.strafe(-20.0f*deltaTime, player); } }*/ TheCamera.strafe(-200.0f*deltaTime); } if (g_pDInput->IsKeyDown(DIK_D)) { //计算移动的距离 /*D3DXVECTOR3 cameraRightVec; TheCamera.getRight(&cameraRightVec); static D3DXVECTOR3 dist = D3DXVECTOR3(cameraRightVec.x, 0.0f, cameraRightVec.z) * 20.0f*deltaTime; BoundingBox *collision = player->getBoundingBox(); BoundingBox collisionCopy = *collision; collisionCopy.boudingBoxMove(dist); for (int i = 0; i < 4; ++i) { if (collisionCopy.isCollided(cube[i]->getBoundingBox())) { player->getBoundingBox()->boudingBoxMove(dist); break; } else { TheCamera.strafe(20.0f*deltaTime, player); } }*/ TheCamera.strafe(200.0f*deltaTime); } if (g_pDInput->IsKeyDown(DIK_W)) { //计算移动的距离 /*D3DXVECTOR3 cameraLookVec; TheCamera.getLook(&cameraLookVec); static D3DXVECTOR3 dist = D3DXVECTOR3(cameraLookVec.x, 0.0f, cameraLookVec.z) * 20.0f*deltaTime; BoundingBox *collision = player->getBoundingBox(); BoundingBox collisionCopy = *collision; collisionCopy.boudingBoxMove(dist); for (int i = 0; i < 4; ++i) { if (collisionCopy.isCollided(cube[i]->getBoundingBox())) { player->getBoundingBox()->boudingBoxMove(dist); break; } else { TheCamera.walk(20.0f*deltaTime, player); } } */ TheCamera.walk(200.0f*deltaTime); } if (g_pDInput->IsKeyDown(DIK_S)) { //计算移动的距离 /*D3DXVECTOR3 cameraLookVec; TheCamera.getLook(&cameraLookVec); static D3DXVECTOR3 dist = D3DXVECTOR3(cameraLookVec.x, 0.0f, cameraLookVec.z) * (-20.0f*deltaTime); BoundingBox *collision = player->getBoundingBox(); BoundingBox collisionCopy = *collision; collisionCopy.boudingBoxMove(dist); for (int i = 0; i < 4; ++i) { if (collisionCopy.isCollided(cube[i]->getBoundingBox())) { player->getBoundingBox()->boudingBoxMove(dist); break; } else { TheCamera.walk(-20.0f*deltaTime, player); } }*/ TheCamera.walk(-200.0f*deltaTime); } if (g_pDInput->IsKeyDown(DIK_R)) TheCamera.fly(100.0f*deltaTime); if (g_pDInput->IsKeyDown(DIK_F)) TheCamera.fly(-100.0f*deltaTime); //沿摄像机各分量旋转视角 if (g_pDInput->IsKeyDown(DIK_LEFT)) TheCamera.yaw(-1.0f*deltaTime); if (g_pDInput->IsKeyDown(DIK_RIGHT)) TheCamera.yaw(1.0f*deltaTime); if (g_pDInput->IsKeyDown(DIK_UP)) TheCamera.pitch(1.0f*deltaTime); if (g_pDInput->IsKeyDown(DIK_DOWN)) TheCamera.pitch(-1.0f*deltaTime); /*if (g_pDInput->IsKeyDown(DIK_Q)) TheCamera->RotationLookVec(0.001f); if (g_pDInput->IsKeyDown(DIK_E)) TheCamera->RotationLookVec(-0.001f);*/ //自己加一个键 if (g_pDInput->IsKeyDown(DIK_I)) { } if (g_pDInput->IsKeyDown(DIK_K)) { } if (g_pDInput->IsKeyDown(DIK_J)) { } if (g_pDInput->IsKeyDown(DIK_L)) { } // //为了随山地的高度变化而变化 // D3DXVECTOR3 pos; TheCamera.getCameraPosition(&pos); if (pos.x <= -150.0f || pos.x >= 150.0f || pos.z <= -150.0f || pos.z >= 150.0f) { pos.y = 10.0f; } else { float height = TheTerrain->getHeight(pos.x, pos.z); pos.y = height + 5.0f; // add height because we're standing up } TheCamera.setCameraPosition(&pos); D3DXMATRIX V; TheCamera.getViewMatrix(&V); g_pd3dDevice->SetTransform(D3DTS_VIEW, &V); Sno->update(deltaTime); //鼠标控制右向量和上向量的旋转 //TheCamera->RotationUpVec(g_pDInput->MouseDX()* 0.001f); //TheCamera->RotationRightVec(g_pDInput->MouseDY() * 0.001f); ////鼠标滚轮控制观察点收缩操作 //static FLOAT fPosZ = 0.0f; //fPosZ += g_pDInput->MouseDZ()*0.03f; ////计算并设置取景变换矩阵 //D3DXMATRIX matView; //TheCamera->CalculateViewMatrix(&matView); //g_pd3dDevice->SetTransform(D3DTS_VIEW, &matView); ////把正确的世界变换矩阵存到g_matWorld中 //D3DXMatrixTranslation(&g_matWorld, 0.0f, 0.0f, fPosZ); ////以下这段代码用于限制鼠标光标移动区域 //POINT lt, rb; //RECT rect; //GetClientRect(hwnd, &rect); //取得窗口内部矩形 // //将矩形左上点坐标存入lt中 //lt.x = rect.left; //lt.y = rect.top; ////将矩形右下坐标存入rb中 //rb.x = rect.right; //rb.y = rect.bottom; ////将lt和rb的窗口坐标转换为屏幕坐标 //ClientToScreen(hwnd, &lt); //ClientToScreen(hwnd, &rb); ////以屏幕坐标重新设定矩形区域 //rect.left = lt.x; //rect.top = lt.y; //rect.right = rb.x; //rect.bottom = rb.y; ////限制鼠标光标移动区域 //ClipCursor(&rect); //ShowCursor(false); //隐藏鼠标光标 } //-----------------------------------【Direct3D_Render( )函数】-------------------------------------- // 描述:使用Direct3D进行渲染 //-------------------------------------------------------------------------------------------------- void Direct3D_Render(HWND hwnd) { g_pd3dDevice->Clear(0, 0, D3DCLEAR_TARGET | D3DCLEAR_ZBUFFER | D3DCLEAR_STENCIL, 0xffffffff, 1.0f, 0); g_pd3dDevice->BeginScene(); // //绘制字体,用于测试 // D3DXVECTOR3 cameraPos; TheCamera.getCameraPosition(&cameraPos); static wchar_t strInfo[256] = { 0 }; swprintf_s(strInfo, -1, L"摄像机坐标: (%.2f, %.2f, %.2f)", player->getTransform()->position.x, player->getTransform()->position.y, player->getTransform()->position.z); blackFont->drawText(50, 0, strInfo, d3d::BLACK); // //绘制天空 // D3DXMATRIX matSky, matTransSky, matRotSky; D3DXMatrixTranslation(&matTransSky, 0.0f, 0.0f, 0.0f); D3DXMatrixRotationY(&matRotSky, -0.000005f*timeGetTime()); //旋转天空网格, 简单模拟云彩运动效果 matSky = matTransSky*matRotSky; skyBox->RenderSkyBox(&matSky, false); // //绘制地面 // floorPlane->draw(); // //绘制边界 // for (int i = 0; i < 4; ++i) { cube[i]->draw(); } // //绘制主角 // player->draw(); // //绘制地形 // D3DXMATRIX I; D3DXMatrixIdentity(&I); D3DXMATRIX matTerrain; D3DXMatrixTranslation(&matTerrain, 300.0f, 0.0f, 300.0f); D3DXMATRIX S; D3DXMatrixScaling(&S, 0.4f, 1.0f, 0.4f); matTerrain = matTerrain * S; /*if (TheTerrain) TheTerrain->draw(&I, false);*/ // //draw snow // /*D3DXMATRIX I; D3DXMatrixIdentity(&I);*/ g_pd3dDevice->SetTransform(D3DTS_WORLD, &I); Sno->render(); // //绘制雾化效果 // // set the technique to use FogEffect->SetTechnique(FogTechHandle); UINT numPasses = 0; FogEffect->Begin(&numPasses, 0); /*D3DXMATRIX I; D3DXMatrixIdentity(&I);*/ for (int i = 0; i < numPasses; i++) { FogEffect->BeginPass(i); if (TheTerrain) TheTerrain->draw(&I, false); FogEffect->EndPass(); } FogEffect->End(); // //测试 // //cube[0]->draw(); g_pd3dDevice->EndScene(); g_pd3dDevice->Present(0, 0, 0, 0); } //-----------------------------------【Direct3D_CleanUp( )函数】-------------------------------- // 描述:资源清理函数,在此函数中进行程序退出前资源的清理工作 //--------------------------------------------------------------------------------------------------- void Direct3D_CleanUp() { d3d::Delete<Terrain*>(TheTerrain); d3d::Delete<Character*>(player); for (int i = 0; i < 4; ++i) { d3d::Delete<Cube*>(cube[i]); } d3d::Delete<Plane*>(floorPlane); d3d::Delete<SkyBox*>(skyBox); d3d::Delete<Font*>(blackFont); d3d::Release<LPDIRECT3DDEVICE9>(g_pd3dDevice); }
462368019f94e078f4722fd6965c068dbd49dc3f
e3546637f968fb38e382ca06573d3c84c6af9e32
/3.Basic_Sorting_algorithms/0.Selection_sort/main.cpp
e32363414d12585c424bb01f46b049814ee27de6
[]
no_license
abhilashkakumanu1/DSA-CPP
02526786d35569c040b7530f087b21a2221acf3b
a0362ee0ab33b6f46653913aca0022325853131f
refs/heads/main
2023-05-13T16:30:24.297811
2021-05-31T06:28:33
2021-05-31T06:28:33
370,658,434
0
0
null
null
null
null
UTF-8
C++
false
false
675
cpp
main.cpp
/* Two sub arrays - sorted and unsorted. First find the minimum element in unsorted subarray and then push it into sorted subarray */ #include <iostream> using namespace std; void selectionSort(int arr[], int size) { int minIndex; // traverse the entire array for (int i = 0; i < size - 1; i++) { minIndex = i; // traverse the unsorted sub array for (int j = i + 1; j < size; j++) { if (arr[j] < arr[minIndex]) { minIndex = j; } } swap(&arr[i], &arr[minIndex]); } } // Utils void swap(int *a, int *b) { int temp = *a; *a = *b; *b = temp; }
0a23f9ed1eecc91af8335070af199b249c9938ce
6b96a11195094a0023a059ba7d5df95ce58c56f1
/466C.cpp
5b3b13064134c7b796691a54c01993f96da8abbb
[]
no_license
ldfdev/CodeForces-Div2-Problems
d932b09ee14a430fd0054d5b295f6016553be2b7
d18824a4330a4593099d249496ae22f3f69d5f44
refs/heads/master
2021-08-11T03:29:18.772870
2021-07-25T07:21:09
2021-07-29T20:09:43
72,371,376
1
0
null
null
null
null
UTF-8
C++
false
false
1,166
cpp
466C.cpp
#include <iostream> #include <vector> #define vi vector<long long int> #define tr(container,it) \ for(decltype(container.begin()) it=container.begin();it!=container.end();++it) using namespace std; long long int summy(const vi &v){ long long int ss=0; tr(v,it) ss+=*it; return ss;} int main(){ long long int n,sol,sum,ze=0,ze2=0,ze3=0,s1=0,s2=0,s3=0; vi v; vi::iterator i1,i11,i12; cin>>n; if(n<3){cout<<"0\n"; return 0;} for(auto i=0;i<n;i++){ int a; cin>>a, v.push_back(a);} sum=summy(v); if((sum/3)*3==sum){sum=sum/3; if(sum==0){ i1=v.begin(); while(i1!=v.end()){ sum+=*i1; if(sum==0) ze+=1;++i1;} if(ze<3){cout<<"0\n"; return 0;} else cout<<((ze-1)*(ze-2))/2<<"\n"; } else{ i1=v.begin(); while(s1!=sum){ s1+=*i1, ++i1; if(i1==v.end()){printf("0\n"); return 0;}} while(s2!=sum){ s2+=*i1, ++i1; if(s2==0){ze2+=1;} if(i1==v.end()){printf("0\n"); return 0;}} while(s3!=sum){ s3+=*i1, ++i1; if(s3==0){ze3+=1;} if(s3==sum && i1!=v.end()){printf("0\n");return 0;}} sol=(ze2+1)*(ze3+1); cout<<sol; } } else printf("0\n"); return 0; }
3f740a24c41dbffbd35997b789d50daaef250239
16963110722dd745c52354c0af01a9d6e4d748d6
/Algoritmos y Estructura de datos/ejerciciosN2/ejercicio9.cpp
85ef2bd33cae76d04f8e5dcf5c73162541d99857
[]
no_license
Yuniorcr/curso_progrmacion
1bb9cc8dd5515925b65c2176b78367cd6d13235b
1f22eb0d458a451eb450ae6b6ce2a24b87d5b699
refs/heads/master
2022-01-09T04:49:12.125227
2019-05-08T22:26:26
2019-05-08T22:26:26
185,687,193
0
0
null
null
null
null
UTF-8
C++
false
false
468
cpp
ejercicio9.cpp
#include <iostream> int main(int argc, char const *argv[]) { int suma1=0,suma2=0; int matriz[3][3]={{-2,56,50},{44,-12,-42},{70,57,-86}}; for (size_t i = 0; i <3; i++) { for (size_t j = 0; j <3; j++) { if (matriz[i][j]<0) { suma1=suma1+matriz[i][j]; }else{ suma2=suma2+matriz[i][j]; } } } std::cout << "la suma negativa es: " <<suma1; std::cout << "\nla suma positiva es: " <<suma2; return 0; }
66ce82a5b349948bc54f9ee1b158a65677f10535
7e48d392300fbc123396c6a517dfe8ed1ea7179f
/RodentVR/Intermediate/Build/Win64/RodentVR/Inc/MovieSceneTracks/MovieSceneMaterialTrack.gen.cpp
976c065f4488a00dfb2e8e00b678111bdd645a1a
[]
no_license
WestRyanK/Rodent-VR
f4920071b716df6a006b15c132bc72d3b0cba002
2033946f197a07b8c851b9a5075f0cb276033af6
refs/heads/master
2021-06-14T18:33:22.141793
2020-10-27T03:25:33
2020-10-27T03:25:33
154,956,842
1
1
null
2018-11-29T09:56:21
2018-10-27T11:23:11
C++
UTF-8
C++
false
false
10,801
cpp
MovieSceneMaterialTrack.gen.cpp
// Copyright Epic Games, Inc. All Rights Reserved. /*=========================================================================== Generated code exported from UnrealHeaderTool. DO NOT modify this manually! Edit the corresponding .h files instead! ===========================================================================*/ #include "UObject/GeneratedCppIncludes.h" #include "MovieSceneTracks/Public/Tracks/MovieSceneMaterialTrack.h" #ifdef _MSC_VER #pragma warning (push) #pragma warning (disable : 4883) #endif PRAGMA_DISABLE_DEPRECATION_WARNINGS void EmptyLinkFunctionForGeneratedCodeMovieSceneMaterialTrack() {} // Cross Module References MOVIESCENETRACKS_API UClass* Z_Construct_UClass_UMovieSceneMaterialTrack_NoRegister(); MOVIESCENETRACKS_API UClass* Z_Construct_UClass_UMovieSceneMaterialTrack(); MOVIESCENE_API UClass* Z_Construct_UClass_UMovieSceneNameableTrack(); UPackage* Z_Construct_UPackage__Script_MovieSceneTracks(); MOVIESCENE_API UClass* Z_Construct_UClass_UMovieSceneSection_NoRegister(); MOVIESCENETRACKS_API UClass* Z_Construct_UClass_UMovieSceneComponentMaterialTrack_NoRegister(); MOVIESCENETRACKS_API UClass* Z_Construct_UClass_UMovieSceneComponentMaterialTrack(); // End Cross Module References void UMovieSceneMaterialTrack::StaticRegisterNativesUMovieSceneMaterialTrack() { } UClass* Z_Construct_UClass_UMovieSceneMaterialTrack_NoRegister() { return UMovieSceneMaterialTrack::StaticClass(); } struct Z_Construct_UClass_UMovieSceneMaterialTrack_Statics { static UObject* (*const DependentSingletons[])(); #if WITH_METADATA static const UE4CodeGen_Private::FMetaDataPairParam Class_MetaDataParams[]; #endif #if WITH_METADATA static const UE4CodeGen_Private::FMetaDataPairParam NewProp_Sections_MetaData[]; #endif static const UE4CodeGen_Private::FArrayPropertyParams NewProp_Sections; static const UE4CodeGen_Private::FObjectPropertyParams NewProp_Sections_Inner; static const UE4CodeGen_Private::FPropertyParamsBase* const PropPointers[]; static const FCppClassTypeInfoStatic StaticCppClassTypeInfo; static const UE4CodeGen_Private::FClassParams ClassParams; }; UObject* (*const Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::DependentSingletons[])() = { (UObject* (*)())Z_Construct_UClass_UMovieSceneNameableTrack, (UObject* (*)())Z_Construct_UPackage__Script_MovieSceneTracks, }; #if WITH_METADATA const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::Class_MetaDataParams[] = { { "Comment", "/**\n * Handles manipulation of material parameters in a movie scene.\n */" }, { "IncludePath", "Tracks/MovieSceneMaterialTrack.h" }, { "ModuleRelativePath", "Public/Tracks/MovieSceneMaterialTrack.h" }, { "ToolTip", "Handles manipulation of material parameters in a movie scene." }, }; #endif #if WITH_METADATA const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::NewProp_Sections_MetaData[] = { { "Comment", "/** The sections owned by this track .*/" }, { "EditInline", "true" }, { "ModuleRelativePath", "Public/Tracks/MovieSceneMaterialTrack.h" }, { "ToolTip", "The sections owned by this track ." }, }; #endif const UE4CodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::NewProp_Sections = { "Sections", nullptr, (EPropertyFlags)0x0040008000000008, UE4CodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, 1, STRUCT_OFFSET(UMovieSceneMaterialTrack, Sections), EArrayPropertyFlags::None, METADATA_PARAMS(Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::NewProp_Sections_MetaData, UE_ARRAY_COUNT(Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::NewProp_Sections_MetaData)) }; const UE4CodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::NewProp_Sections_Inner = { "Sections", nullptr, (EPropertyFlags)0x0000000000080008, UE4CodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, 1, 0, Z_Construct_UClass_UMovieSceneSection_NoRegister, METADATA_PARAMS(nullptr, 0) }; const UE4CodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::PropPointers[] = { (const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::NewProp_Sections, (const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::NewProp_Sections_Inner, }; const FCppClassTypeInfoStatic Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::StaticCppClassTypeInfo = { TCppClassTypeTraits<UMovieSceneMaterialTrack>::IsAbstract, }; const UE4CodeGen_Private::FClassParams Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::ClassParams = { &UMovieSceneMaterialTrack::StaticClass, nullptr, &StaticCppClassTypeInfo, DependentSingletons, nullptr, Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::PropPointers, nullptr, UE_ARRAY_COUNT(DependentSingletons), 0, UE_ARRAY_COUNT(Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::PropPointers), 0, 0x00B000A0u, METADATA_PARAMS(Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::Class_MetaDataParams, UE_ARRAY_COUNT(Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::Class_MetaDataParams)) }; UClass* Z_Construct_UClass_UMovieSceneMaterialTrack() { static UClass* OuterClass = nullptr; if (!OuterClass) { UE4CodeGen_Private::ConstructUClass(OuterClass, Z_Construct_UClass_UMovieSceneMaterialTrack_Statics::ClassParams); } return OuterClass; } IMPLEMENT_CLASS(UMovieSceneMaterialTrack, 3488900906); template<> MOVIESCENETRACKS_API UClass* StaticClass<UMovieSceneMaterialTrack>() { return UMovieSceneMaterialTrack::StaticClass(); } static FCompiledInDefer Z_CompiledInDefer_UClass_UMovieSceneMaterialTrack(Z_Construct_UClass_UMovieSceneMaterialTrack, &UMovieSceneMaterialTrack::StaticClass, TEXT("/Script/MovieSceneTracks"), TEXT("UMovieSceneMaterialTrack"), false, nullptr, nullptr, nullptr); DEFINE_VTABLE_PTR_HELPER_CTOR(UMovieSceneMaterialTrack); void UMovieSceneComponentMaterialTrack::StaticRegisterNativesUMovieSceneComponentMaterialTrack() { } UClass* Z_Construct_UClass_UMovieSceneComponentMaterialTrack_NoRegister() { return UMovieSceneComponentMaterialTrack::StaticClass(); } struct Z_Construct_UClass_UMovieSceneComponentMaterialTrack_Statics { static UObject* (*const DependentSingletons[])(); #if WITH_METADATA static const UE4CodeGen_Private::FMetaDataPairParam Class_MetaDataParams[]; #endif #if WITH_METADATA static const UE4CodeGen_Private::FMetaDataPairParam NewProp_MaterialIndex_MetaData[]; #endif static const UE4CodeGen_Private::FIntPropertyParams NewProp_MaterialIndex; static const UE4CodeGen_Private::FPropertyParamsBase* const PropPointers[]; static const FCppClassTypeInfoStatic StaticCppClassTypeInfo; static const UE4CodeGen_Private::FClassParams ClassParams; }; UObject* (*const Z_Construct_UClass_UMovieSceneComponentMaterialTrack_Statics::DependentSingletons[])() = { (UObject* (*)())Z_Construct_UClass_UMovieSceneMaterialTrack, (UObject* (*)())Z_Construct_UPackage__Script_MovieSceneTracks, }; #if WITH_METADATA const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_UMovieSceneComponentMaterialTrack_Statics::Class_MetaDataParams[] = { { "Comment", "/**\n * A material track which is specialized for animation materials which are owned by actor components.\n */" }, { "IncludePath", "Tracks/MovieSceneMaterialTrack.h" }, { "ModuleRelativePath", "Public/Tracks/MovieSceneMaterialTrack.h" }, { "ToolTip", "A material track which is specialized for animation materials which are owned by actor components." }, }; #endif #if WITH_METADATA const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_UMovieSceneComponentMaterialTrack_Statics::NewProp_MaterialIndex_MetaData[] = { { "Comment", "/** The index of this material this track is animating. */" }, { "ModuleRelativePath", "Public/Tracks/MovieSceneMaterialTrack.h" }, { "ToolTip", "The index of this material this track is animating." }, }; #endif const UE4CodeGen_Private::FIntPropertyParams Z_Construct_UClass_UMovieSceneComponentMaterialTrack_Statics::NewProp_MaterialIndex = { "MaterialIndex", nullptr, (EPropertyFlags)0x0040000000000000, UE4CodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, 1, STRUCT_OFFSET(UMovieSceneComponentMaterialTrack, MaterialIndex), METADATA_PARAMS(Z_Construct_UClass_UMovieSceneComponentMaterialTrack_Statics::NewProp_MaterialIndex_MetaData, UE_ARRAY_COUNT(Z_Construct_UClass_UMovieSceneComponentMaterialTrack_Statics::NewProp_MaterialIndex_MetaData)) }; const UE4CodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UMovieSceneComponentMaterialTrack_Statics::PropPointers[] = { (const UE4CodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMovieSceneComponentMaterialTrack_Statics::NewProp_MaterialIndex, }; const FCppClassTypeInfoStatic Z_Construct_UClass_UMovieSceneComponentMaterialTrack_Statics::StaticCppClassTypeInfo = { TCppClassTypeTraits<UMovieSceneComponentMaterialTrack>::IsAbstract, }; const UE4CodeGen_Private::FClassParams Z_Construct_UClass_UMovieSceneComponentMaterialTrack_Statics::ClassParams = { &UMovieSceneComponentMaterialTrack::StaticClass, nullptr, &StaticCppClassTypeInfo, DependentSingletons, nullptr, Z_Construct_UClass_UMovieSceneComponentMaterialTrack_Statics::PropPointers, nullptr, UE_ARRAY_COUNT(DependentSingletons), 0, UE_ARRAY_COUNT(Z_Construct_UClass_UMovieSceneComponentMaterialTrack_Statics::PropPointers), 0, 0x002800A0u, METADATA_PARAMS(Z_Construct_UClass_UMovieSceneComponentMaterialTrack_Statics::Class_MetaDataParams, UE_ARRAY_COUNT(Z_Construct_UClass_UMovieSceneComponentMaterialTrack_Statics::Class_MetaDataParams)) }; UClass* Z_Construct_UClass_UMovieSceneComponentMaterialTrack() { static UClass* OuterClass = nullptr; if (!OuterClass) { UE4CodeGen_Private::ConstructUClass(OuterClass, Z_Construct_UClass_UMovieSceneComponentMaterialTrack_Statics::ClassParams); } return OuterClass; } IMPLEMENT_CLASS(UMovieSceneComponentMaterialTrack, 107321316); template<> MOVIESCENETRACKS_API UClass* StaticClass<UMovieSceneComponentMaterialTrack>() { return UMovieSceneComponentMaterialTrack::StaticClass(); } static FCompiledInDefer Z_CompiledInDefer_UClass_UMovieSceneComponentMaterialTrack(Z_Construct_UClass_UMovieSceneComponentMaterialTrack, &UMovieSceneComponentMaterialTrack::StaticClass, TEXT("/Script/MovieSceneTracks"), TEXT("UMovieSceneComponentMaterialTrack"), false, nullptr, nullptr, nullptr); DEFINE_VTABLE_PTR_HELPER_CTOR(UMovieSceneComponentMaterialTrack); PRAGMA_ENABLE_DEPRECATION_WARNINGS #ifdef _MSC_VER #pragma warning (pop) #endif
81e8ab4a875f102acb9dcd41101979b67d83212b
ee03828b086648064e6ec1f50c3233045b3ea422
/Win32Project3/SceneMode.h
c466088f6d0c33972d9dd19ba49c5821f1253351
[]
no_license
MandaiRyuta/StrayForest
d2779881e586b57174e3ff3b618fc9f47d768a40
b63a71b5d1a882e72e6afaeb05d96e8eeb731d1a
refs/heads/master
2020-04-19T09:36:39.370475
2019-01-29T08:23:54
2019-01-29T08:23:54
168,116,119
0
0
null
null
null
null
UTF-8
C++
false
false
298
h
SceneMode.h
#pragma once constexpr int MeshFiled_X = 100; constexpr int MeshFiled_Z = 100; constexpr float MeshFiled_XSize = 20.0f; constexpr float MeshFiled_ZSize = 20.0f; class CMode { public: virtual void Init() = 0; virtual void Uninit() = 0; virtual void Update() = 0; virtual void Draw() = 0; };
077a38b71850e8805cd3ecaa15301894fe040d77
2d01228d25ff09011608e1ae4132dd494f4b6b3c
/src/ANN_class.cpp
298c1d7c104659284efdfbceac93683673c7df8f
[ "Apache-2.0" ]
permissive
ArashMassoudieh/ANNplusplus
76b5b7f6326ba336595a6929826514ad64947f84
ca9cc10f013165462ea4767f0590baa3ec60d689
refs/heads/master
2020-08-06T06:50:33.705095
2020-06-29T03:14:10
2020-06-29T03:14:10
212,877,149
0
0
null
null
null
null
UTF-8
C++
false
false
10,933
cpp
ANN_class.cpp
#include "ANN_class.h" #include "ML.h" #include "utils.h" #include <vector> using namespace std; ANN_class::ANN_class() { } ANN_class::~ANN_class() { } CNode* ANN_class::node(string id) { for (unsigned int i = 0; i < Nodes.size(); i++) if (Nodes[i].GetID() == id) return &Nodes[i]; return nullptr; } Link* ANN_class::link(string id) { for (unsigned int i = 0; i < Links.size(); i++) if (Links[i].GetID() == id) return &Links[i]; return nullptr; } CNode* ANN_class::node(int layer, int num) { for (unsigned int i = 0; i < Nodes.size(); i++) { if (Nodes[i].layerno == layer && Nodes[i].numinlayer == num) return &Nodes[i]; } return nullptr; } ANN_class& ANN_class::operator=(const ANN_class &m) { Links = m.Links; Nodes = m.Nodes; input = m.input; return *this; } ANN_class::ANN_class(const ANN_class &m) { Links = m.Links; Nodes = m.Nodes; input = m.input; } ANN_class::ANN_class(vector<int> n_nodes, CNode::activationfunc act) { unsigned long n_layers = n_nodes.size(); layers.resize(n_layers); for (unsigned int i = 0; i < n_layers; i++) { CNode::activationfunc actfun; if (i == 0) actfun = CNode::activationfunc::one; else actfun = act; for (unsigned int j = 0; j < n_nodes[i]; j++) { CNode n = CNode(aquiutils::numbertostring(int(i)) + "," + aquiutils::numbertostring(int(j)), actfun); n.layerno = i; n.numinlayer = j; Append(n); } } for (unsigned int i = 0; i < n_layers; i++) for (unsigned int j = 0; j < n_nodes[i]; j++) layers[i].push_back(node(aquiutils::numbertostring(int(i)) + "," + aquiutils::numbertostring(int(j)))); for (unsigned int i = 0; i < n_layers - 1; i++) { for (unsigned int j = 0; j < n_nodes[i]; j++) { for (unsigned int k = 0; k < n_nodes[i + 1]; k++) { Link l = Link(aquiutils::numbertostring(int(i)) + "," + aquiutils::numbertostring(int(j)) + "-" + aquiutils::numbertostring(int(i + 1)) + "," + aquiutils::numbertostring(int(k)), node(i, j)->GetID(), node(i+1, k)->GetID()); Append(l); } } for (unsigned int k = 0; k < n_nodes[i + 1]; k++) { Link l = Link("intercept-" + aquiutils::numbertostring(int(i + 1)) + "," + aquiutils::numbertostring(int(k)), "", node(i+1, k)->GetID()); Append(l); } } SetLinkNodeParents(); SetPointers(); RMSGradient = CVector(Links.size()); } double ANN_class::calc_error(CTimeSeriesSet *input,CTimeSeriesSet *output) { double sum=0; if (input->BTC[0].n != output->BTC[0].n) { errorhandler.AppendError(string("calc_error"),1001,"The number of data points in the input [" + aquiutils::numbertostring(input->BTC[0].n) + "] is not equal to the number of datapoints in the output dataset [" + aquiutils::numbertostring(output->BTC[0].n)); return 0; } for (int i=0; i<input->BTC[0].n; i++) { vector<double> input_vec = input->getrow(i); CVector predicted = CVector(calc_output(input_vec)); CVector measured = CVector(output->getrow(i)); sum += (predicted-measured).norm2(); } return sum; } CVector ANN_class::Gradient_error_direct(CTimeSeriesSet *input,CTimeSeriesSet *output) { Vector w0 = weights_to_vector(); CVector gradient; double base_error = calc_error(input,output); for (unsigned int i=0; i<w0.num; i++) { Vector w = w0; w[i] += derivative_purturbation; ApplyWeights(w); double purturbed_error = calc_error(input,output); gradient.append((purturbed_error-base_error)/derivative_purturbation); } ApplyWeights(w0); gradient = gradient/gradient.norm2(); RMSGradient = twicking_params.gamma*RMSGradient + (1.0-twicking_params.gamma)*gradient.Pow(2); return gradient; } vector<double> ANN_class::calc_output(const vector<double> &input) { for (unsigned int j = 0; j < layers[0].size(); j++) { layers[0][j]->input_val = input[j]; layers[0][j]->out(); } for (unsigned int i = 1; i < layers.size(); i++) { for (unsigned int j = 0; j < layers[i].size(); j++) { double sum = 0; for (unsigned int k = 0; k < layers[i][j]->linksto.size(); k++) { if (layers[i][j]->linksto[k]->GetSource()==nullptr) sum += layers[i][j]->linksto[k]->GetWeight(); else sum += layers[i][j]->linksto[k]->GetWeight() * layers[i][j]->linksto[k]->GetSource()->output_val; } layers[i][j]->input_val = sum; layers[i][j]->out(); } } vector<double> X(layers[layers.size() - 1].size()); for (unsigned int i = 0; i < layers[layers.size() - 1].size(); i++) X[i] = layers[layers.size() - 1][i]->output_val; return X; } bool ANN_class::applyinput(CBTCSet* _input) { if (layers[0].size() != _input->nvars) { errorhandler.AppendError("applyinput",1002, "Number of inputs should be equal to the number of nodes in the first layer!"); return false; } else for (unsigned int i = 0; i < layers[0].size(); i++) layers[0][i]->input = &_input->BTC[i]; } bool ANN_class::setparams(const CVector &X) { if (X.num != Links.size()) { errorhandler.AppendError("setparams",1003, "Vector size must be the same as the number of links!"); return false; } for (int i = 0; i<Links.size(); i++) Links[i].SetWeight(X[i]); return true; } CVector ANN_class::weights_to_vector() { CVector X; for (unsigned int i = 0; i < Links.size(); i++) X.append(Links[i].GetWeight()); return X; } bool ANN_class::ApplyWeights(const CVector &weights) { if (weights.num != int(Links.size())) { errorhandler.AppendError("ApplyWeights",1004, "The size of the weight vector is different than the number of links"); return false; } else { for (unsigned int i = 0; i < Links.size(); i++) Links[i].SetWeight(weights[i]); return true; } } CVector ANN_class::train(const double &tol) { CML ML; ML.epsilon = 1e-6; ML.tol = tol; ML.Obs = CVector(training_data.toBTC().C); ML.func_ann = &ANN_class::calc_output_v; CVector optimized_parameters = ML.optimize(weights_to_vector(),this); return optimized_parameters; } bool ANN_class::Append(CNode& _node) { if (node(_node.GetID()) != nullptr) { errorhandler.AppendError("Append",1005, "Node " + _node.GetID() + " Already exists!"); return false; } else { Nodes.push_back(_node); node(_node.GetID())->SetParent(this); return true; } } bool ANN_class::Append(Link& _link) { if (link(_link.GetID()) != nullptr) { errorhandler.AppendError("Append",1006, "Link " + _link.GetID() + " Already exists!"); return false; } else { Links.push_back(_link); link(_link.GetID())->SetParent(this); return true; } } bool ANN_class::SetPointers() { for (unsigned int i = 0; i < Links.size(); i++) { if (node(Links[i].SourceID) != nullptr) { node(Links[i].SourceID)->linksfrom.push_back(&Links[i]); Links[i].SetSource(node(Links[i].SourceID)); } else Links[i].SetSource(nullptr); if (node(Links[i].TargetID) != nullptr) { node(Links[i].TargetID)->linksto.push_back(&Links[i]); Links[i].SetTarget(node(Links[i].TargetID)); } else Links[i].SetTarget(nullptr); } return true; } double ANN_class::PerformSingleStepStochasticSteepestDescent(unsigned int batch_size) { vector<int> selecteddatapoints = aquiutils::random_vector(0,input->BTC[0].n, batch_size); CTimeSeriesSet sampled_input = input->random_draw_plus_last(selecteddatapoints); CTimeSeriesSet sampled_output = training_data.random_draw_plus_last(selecteddatapoints); CVector weights = weights_to_vector(); double err0 = calc_error(&sampled_input,&sampled_output); AppendErrVal(err0); CVector gradient = Gradient_error_direct(&sampled_input,&sampled_output); weights -= twicking_params.learning_rate*(gradient/((RMSGradient+twicking_params.epsilon).Sqrt())); ApplyWeights(weights); double err1 = calc_error(&sampled_input,&sampled_output); return err1; } double ANN_class::PerformSingleStepSteepestDescent() { CVector weights = weights_to_vector(); double err0 = calc_error(input,&training_data); AppendErrVal(err0); CVector gradient = Gradient_error_direct(input,&training_data); weights -= twicking_params.learning_rate*(gradient/((RMSGradient+twicking_params.epsilon).Sqrt())); ApplyWeights(weights); double err1 = calc_error(input,&training_data); return err1; } CMatrix ANN_class::Gradient(const CVector& input) { CMatrix M(num_outputs(), num_weights()); for (unsigned int i = 0; i < num_layers(); i++) { } return M; } CMatrix ANN_class::Gradient_direct(const CVector& input) { CVector weights_0 = weights_to_vector(); CVector weights_purt = weights_0; ApplyWeights(weights_0); CVector F0 = calc_output(input.vec); CMatrix M(num_weights(),num_outputs()); for (int i = 0; i < weights_0.getsize(); i++) { weights_purt[i] = weights_0[i] + epsilon; ApplyWeights(weights_purt); CVector F1 = calc_output(input.vec); M[i] = (F1 - F0) / epsilon; } ApplyWeights(weights_0); return Transpose(M); } CMatrix ANN_class::UpdateDerivatives(const CVector &input) { SetNodeDerivates(input); CMatrix Gradient(layers[layers.size() - 1].size(), Links.size()); for (int i = 0; i < layers.size(); i++) { for (int j = 0; j < layers[i].size(); j++) layers[i][j]->derivatives_vs_weights(true); } for (int i = 0; i < layers[layers.size() - 1].size(); i++) Gradient[i] = layers[layers.size() - 1][i]->derivatives_vs_weights(true); return Gradient; } bool ANN_class::SetNodeDerivates(const CVector& input) { if (input.num != num_inputs()) { errorhandler.AppendError("SetNodeDerivates", 1007, "Input vector size (" + aquiutils::numbertostring(input.num) + ") is inconsistent with the number of nodes in the input layer (" + aquiutils::numbertostring(num_inputs()) + ")"); return false; } else { calc_output(input.vec); for (int i = 0; i < layers.size(); i++) for (int j = 0; j < layers[i].size(); j++) layers[i][j]->derivative(true); } return true; } void ANN_class::SetLinkNodeParents() { for (unsigned int i = 0; i < Nodes.size(); i++) Nodes[i].SetParent(this); for (unsigned int i = 0; i < Links.size(); i++) Links[i].SetParent(this); } CVector ANN_class::calc_output_v(const CVector &weights) { setparams(weights); CVector out; for (int i = 0; i < input->BTC[0].n; i++) { CVector out1 = calc_output(input->getrow(i)); out.append(out1); } return out; } int ANN_class::num_layers() { return layers.size(); } int ANN_class::num_inputs() { return layers[0].size(); } int ANN_class::num_outputs() { return layers[num_layers() - 1].size(); } int ANN_class::num_weights() { return Links.size(); } CBTCSet ANN_class::output() { CBTCSet outts(num_outputs()); for (int i = 0; i < input->BTC[0].n; i++) { CVector out(calc_output(input->getrow(i))); outts.append(input->BTC[0].t[i], out.vec); } return outts; }
a4f5bfb7968f4e31c9aa0de1811003332d6d591b
0577a46d8d28e1fd8636893bbdd2b18270bb8eb8
/chromium/ash/system/nearby_share/nearby_share_feature_pod_controller_unittest.cc
7466e065687c877c3968523ad40ea4baef78a7df
[ "BSD-3-Clause" ]
permissive
ric2b/Vivaldi-browser
388a328b4cb838a4c3822357a5529642f86316a5
87244f4ee50062e59667bf8b9ca4d5291b6818d7
refs/heads/master
2022-12-21T04:44:13.804535
2022-12-17T16:30:35
2022-12-17T16:30:35
86,637,416
166
41
BSD-3-Clause
2021-03-31T18:49:30
2017-03-29T23:09:05
null
UTF-8
C++
false
false
7,300
cc
nearby_share_feature_pod_controller_unittest.cc
// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ash/system/nearby_share/nearby_share_feature_pod_controller.h" #include "ash/constants/quick_settings_catalogs.h" #include "ash/public/cpp/test/test_nearby_share_delegate.h" #include "ash/shell.h" #include "ash/system/unified/feature_pod_button.h" #include "ash/system/unified/unified_system_tray.h" #include "ash/system/unified/unified_system_tray_bubble.h" #include "ash/system/unified/unified_system_tray_controller.h" #include "ash/test/ash_test_base.h" #include "base/memory/scoped_refptr.h" #include "base/test/metrics/histogram_tester.h" namespace ash { // Tests manually control their session state. class NearbyShareFeaturePodControllerTest : public NoSessionAshTestBase { public: NearbyShareFeaturePodControllerTest() = default; NearbyShareFeaturePodControllerTest(NearbyShareFeaturePodControllerTest&) = delete; NearbyShareFeaturePodControllerTest& operator=( NearbyShareFeaturePodControllerTest&) = delete; ~NearbyShareFeaturePodControllerTest() override = default; void SetUp() override { NoSessionAshTestBase::SetUp(); test_delegate_ = static_cast<TestNearbyShareDelegate*>( Shell::Get()->nearby_share_delegate()); nearby_share_controller_ = Shell::Get()->nearby_share_controller(); test_delegate_->set_is_pod_button_visible(true); GetPrimaryUnifiedSystemTray()->ShowBubble(); } void TearDown() override { button_.reset(); pod_controller_.reset(); NoSessionAshTestBase::TearDown(); } protected: void SetUpButton() { pod_controller_ = std::make_unique<NearbyShareFeaturePodController>(tray_controller()); button_.reset(pod_controller_->CreateButton()); } UnifiedSystemTrayController* tray_controller() { return GetPrimaryUnifiedSystemTray() ->bubble() ->unified_system_tray_controller(); } FeaturePodButton* button() { return button_.get(); } void PressIcon() { pod_controller_->OnIconPressed(); } void PressLabel() { pod_controller_->OnLabelPressed(); } std::unique_ptr<NearbyShareFeaturePodController> pod_controller_; std::unique_ptr<FeaturePodButton> button_; TestNearbyShareDelegate* test_delegate_ = nullptr; NearbyShareController* nearby_share_controller_ = nullptr; }; TEST_F(NearbyShareFeaturePodControllerTest, ButtonVisibilityNotLoggedIn) { SetUpButton(); // If not logged in, it should not be visible. EXPECT_FALSE(button()->GetVisible()); } TEST_F(NearbyShareFeaturePodControllerTest, ButtonVisibilityLoggedIn) { CreateUserSessions(1); SetUpButton(); // If logged in, it should be visible. EXPECT_TRUE(button()->GetVisible()); } TEST_F(NearbyShareFeaturePodControllerTest, ButtonVisibilityLocked) { CreateUserSessions(1); BlockUserSession(UserSessionBlockReason::BLOCKED_BY_LOCK_SCREEN); SetUpButton(); // If locked, it should not be visible. EXPECT_FALSE(button()->GetVisible()); } TEST_F(NearbyShareFeaturePodControllerTest, ButtonVisibilityLoginScreen) { CreateUserSessions(1); BlockUserSession(UserSessionBlockReason::BLOCKED_BY_LOGIN_SCREEN); SetUpButton(); // If the login screen is showing (e.g. multi-user signin), it should not be // visible, regardless of whether an active user is signed in. EXPECT_FALSE(button()->GetVisible()); } TEST_F(NearbyShareFeaturePodControllerTest, ButtonVisiblilityHiddenByDelegate) { CreateUserSessions(1); test_delegate_->set_is_pod_button_visible(false); SetUpButton(); // If NearbyShareDelegate::IsPodButtonVisible() returns false, it should // not be visible. EXPECT_FALSE(button()->GetVisible()); } TEST_F(NearbyShareFeaturePodControllerTest, ButtonToggledByHighVisibilityEnabledEvent) { CreateUserSessions(1); SetUpButton(); ASSERT_FALSE(button()->IsToggled()); nearby_share_controller_->HighVisibilityEnabledChanged(true); EXPECT_TRUE(button()->IsToggled()); nearby_share_controller_->HighVisibilityEnabledChanged(false); EXPECT_FALSE(button()->IsToggled()); } TEST_F(NearbyShareFeaturePodControllerTest, ButtonPressTogglesHighVisibility) { CreateUserSessions(1); SetUpButton(); test_delegate_->method_calls().clear(); test_delegate_->set_is_high_visibility_on(false); pod_controller_->OnIconPressed(); EXPECT_EQ(1u, test_delegate_->method_calls().size()); EXPECT_EQ(TestNearbyShareDelegate::Method::kEnableHighVisibility, test_delegate_->method_calls()[0]); test_delegate_->set_is_high_visibility_on(true); pod_controller_->OnIconPressed(); EXPECT_EQ(2u, test_delegate_->method_calls().size()); EXPECT_EQ(TestNearbyShareDelegate::Method::kDisableHighVisibility, test_delegate_->method_calls()[1]); } TEST_F(NearbyShareFeaturePodControllerTest, IconUMATracking) { CreateUserSessions(1); SetUpButton(); // No metrics logged before clicking on any views. auto histogram_tester = std::make_unique<base::HistogramTester>(); histogram_tester->ExpectTotalCount( "Ash.UnifiedSystemView.FeaturePod.ToggledOn", /*count=*/0); histogram_tester->ExpectTotalCount( "Ash.UnifiedSystemView.FeaturePod.ToggledOff", /*count=*/0); histogram_tester->ExpectTotalCount("Ash.UnifiedSystemView.FeaturePod.DiveIn", /*count=*/0); // Toggle on nearby share feature when pressing on the icon. PressIcon(); histogram_tester->ExpectTotalCount( "Ash.UnifiedSystemView.FeaturePod.ToggledOn", /*count=*/1); histogram_tester->ExpectTotalCount( "Ash.UnifiedSystemView.FeaturePod.ToggledOff", /*count=*/0); histogram_tester->ExpectTotalCount("Ash.UnifiedSystemView.FeaturePod.DiveIn", /*count=*/0); histogram_tester->ExpectBucketCount( "Ash.UnifiedSystemView.FeaturePod.ToggledOn", QsFeatureCatalogName::kNearbyShare, /*expected_count=*/1); } TEST_F(NearbyShareFeaturePodControllerTest, LabelUMATracking) { CreateUserSessions(1); SetUpButton(); nearby_share_controller_->HighVisibilityEnabledChanged(true); // No metrics logged before clicking on any views. auto histogram_tester = std::make_unique<base::HistogramTester>(); histogram_tester->ExpectTotalCount( "Ash.UnifiedSystemView.FeaturePod.ToggledOn", /*count=*/0); histogram_tester->ExpectTotalCount( "Ash.UnifiedSystemView.FeaturePod.ToggledOff", /*count=*/0); histogram_tester->ExpectTotalCount("Ash.UnifiedSystemView.FeaturePod.DiveIn", /*count=*/0); // Show nearby share detailed view (setting) when pressing on the label. PressLabel(); histogram_tester->ExpectTotalCount( "Ash.UnifiedSystemView.FeaturePod.ToggledOn", /*count=*/0); histogram_tester->ExpectTotalCount( "Ash.UnifiedSystemView.FeaturePod.ToggledOff", /*count=*/0); histogram_tester->ExpectTotalCount("Ash.UnifiedSystemView.FeaturePod.DiveIn", /*count=*/1); histogram_tester->ExpectBucketCount("Ash.UnifiedSystemView.FeaturePod.DiveIn", QsFeatureCatalogName::kNearbyShare, /*expected_count=*/1); } } // namespace ash
585feff142010f0ff779f8a41a4f498df1929121
0432bc96da8c4f0bb45a5ebf23c4a7c1a2a06a94
/Partmod/dllcall.cpp
27e12ffce7977ab5f569e8e0a60f5f5d757f3701
[ "BSD-2-Clause" ]
permissive
Null665/partmod
cb7c3c9569281cc9411680be36b930e7f034fbfc
11f2b90c745e27bdb47b105e0bf45834c62d3527
refs/heads/trunk
2021-01-17T13:03:33.919681
2016-06-04T14:07:55
2016-06-04T14:07:55
19,037,020
1
0
null
2014-10-02T18:28:00
2014-04-22T16:31:05
C++
UTF-8
C++
false
false
665
cpp
dllcall.cpp
#include "dllcall.hpp" DllCall::DllCall() { hInst=0; is_open=false; } DllCall::~DllCall() { Close(); } #if defined (_WIN32) || defined (WIN32) bool DllCall::Open(const char *dll, bool no_errmsg) { hInst=LoadLibrary(dll); if(hInst==0) { if(!no_errmsg) MessageBox(0,"Failed to load a DLL","Error",16); return false; } else { is_open=true; return true; } } void DllCall::Close() { if(is_open) FreeLibrary(hInst); } #else // Linux bool DllCall::Open(const char *dll, bool no_errmsg) { } void DllCall::Close() { } #endif
53446cf00f285456fda0861e666cdd6dfef513f3
5bf23ab63254806afe319bdc24af31423630d4ab
/include/camera/OV2640.cpp
a48494d3f92d96c223a2730b5caa701d230850df
[]
no_license
U5ER-N4ME/mbed_smartTraffic
46e42e4f8062b238c0e75b2f021759844aa14d81
3a47146225d59a61d096db4faef3ec1316ac8453
refs/heads/main
2023-08-07T12:35:13.003091
2021-09-30T05:52:31
2021-09-30T05:52:31
386,883,822
0
0
null
2021-09-30T05:50:43
2021-07-17T08:38:33
C++
UTF-8
C++
false
false
17,208
cpp
OV2640.cpp
#include "OV2640.hpp" #include "OV2640cfg.hpp" #include "stm32l4xx_ll_gpio.h" // namespace camera // { OV2640::OV2640( PinName HW_PWR, PinName HW_RST, PinName I2C_SDA, PinName I2C_SCL, PinName DCMI_VSYNC, PinName DCMI_HSYNC, PinName DCMI_PCLK, PinName DCMI_0, PinName DCMI_1, PinName DCMI_2, PinName DCMI_3, PinName DCMI_4, PinName DCMI_5, PinName DCMI_6, PinName DCMI_7 ) : cmd_pwr(HW_PWR), cmd_rst(HW_RST), cmd_i2c(I2C_SDA, I2C_SCL), sig_v(DCMI_VSYNC), sig_h(DCMI_HSYNC), sig_c(DCMI_PCLK), dat(DCMI_0, DCMI_1, DCMI_2, DCMI_3, DCMI_4, DCMI_5, DCMI_6, DCMI_7) { cmd_i2c.stop(); cmd_i2c.frequency(100000); } OV2640::~OV2640(){} cameraPowerStateTypeDef OV2640::powerStateGet(void) { if (cmd_pwr == 1) { return CAMERA_PWR_OFF; } else { return CAMERA_PWR_ON; } } cameraStatusTypeDef OV2640::powerStateSet(cameraPowerStateTypeDef state) { cameraStatusTypeDef rtn = CAMERA_ERROR; // return value if (state == CAMERA_PWR_ON) { cmd_pwr = 0; rtn = CAMERA_OK; } else if (state == CAMERA_PWR_OFF) { cmd_pwr = 1; rtn = CAMERA_OK; } else { // do nothing rtn = CAMERA_NOT_DETECTED; } ThisThread::sleep_for(3ms); return rtn; } cameraStatusTypeDef OV2640::hwReset(void) { cmd_rst = 0; ThisThread::sleep_for(10ms); cmd_rst = 1; ThisThread::sleep_for(10ms); return CAMERA_OK; } cameraStatusTypeDef OV2640::swReset(uint8_t devAddr) { cameraStatusTypeDef rtn = CAMERA_OK; // return value char cam_cmd_wrbuf_sensor[2] = {0xFF, 0x01}; if (cmd_i2c.write(devAddr, cam_cmd_wrbuf_sensor, 2, false) != 0) { rtn = CAMERA_ERROR; } ThisThread::sleep_for(200ms); char cam_cmd_wrbuf_reset[2] = {0x12, 0x80}; if (cmd_i2c.write(devAddr, cam_cmd_wrbuf_reset, 2, false) != 0) { rtn = CAMERA_ERROR; } ThisThread::sleep_for(200ms); return rtn; } uint16_t OV2640::midGet(uint8_t devAddr) { char midAddr[2] = {0x1C, 0x1D}, midBuffer[2]; cmd_i2c.write(devAddr, &midAddr[0], 1, false); cmd_i2c.read(devAddr|0x01, &midBuffer[0], 1, false); cmd_i2c.write(devAddr, &midAddr[1], 1, false); cmd_i2c.read(devAddr|0x01, &midBuffer[1], 1, false); return (midBuffer[0] << 8) + midBuffer[1]; } uint16_t OV2640::pidGet(uint8_t devAddr) { char pidAddr[2] = {0x0A, 0x0B}, pidBuffer[2]; cmd_i2c.write(devAddr, &pidAddr[0], 1, false); cmd_i2c.read(devAddr|0x01, &pidBuffer[0], 1, false); cmd_i2c.write(devAddr, &pidAddr[1], 1, false); cmd_i2c.read(devAddr|0x01, &pidBuffer[1], 1, false); return (pidBuffer[0] << 8) + pidBuffer[1]; } cameraStatusTypeDef OV2640::idCheck(uint8_t devAddr, uint16_t midExpected, uint16_t pidExpected) { uint16_t midObtained = 0, pidObtained = 0; midObtained = midGet(devAddr); pidObtained = pidGet(devAddr); // check mid and pid match if (midObtained != midExpected || pidObtained != pidExpected) { return CAMERA_NOT_SUPPORTED; } else { return CAMERA_OK; } } cameraStatusTypeDef OV2640::init(uint8_t devAddr, cameraResolutionTypeDef resolution) { uint32_t index; cameraStatusTypeDef rtn = CAMERA_OK; switch (resolution) { case CAMERA_RES_SXGA: for(index=0; index<(sizeof(ov2640_sxga_init_reg_tbl)/2); index++) { if (cmd_i2c.write(devAddr, ov2640_sxga_init_reg_tbl[index], 2, false) != 0) { rtn = CAMERA_ERROR; } ThisThread::sleep_for(2ms); } break; case CAMERA_RES_SVGA: for(index=0; index<(sizeof(ov2640_svga_init_reg_tbl)/2); index++) { if (cmd_i2c.write(devAddr, ov2640_svga_init_reg_tbl[index], 2, false) != 0) { rtn = CAMERA_ERROR; } ThisThread::sleep_for(2ms); } break; default: rtn = CAMERA_NOT_SUPPORTED; break; } return rtn; } cameraStatusTypeDef OV2640::captureFrameRateSet(uint8_t devAddr, uint8_t divider) { cameraStatusTypeDef rtn = CAMERA_OK; // return value char frameRateRegTbl[][2] = { 0xff, 0x01, // 0x11, (char) (divider&0x3F) 0x11, (char) divider }; for (int i=0; i<sizeof(frameRateRegTbl)/2; i++) { if (cmd_i2c.write(OV2640_ADDRESS, frameRateRegTbl[i], 2, false) != 0) { rtn = CAMERA_ERROR; break; } } return rtn; } cameraStatusTypeDef OV2640::outputFormatSet(uint8_t devAddr, cameraFormatTypeDef format) { cameraStatusTypeDef rtn = CAMERA_OK; // return value switch (format) { case CAMERA_FMT_RGB565: for (int i=0; i<sizeof(ov2640_rgb565_reg_tbl)/2; i++) { if (cmd_i2c.write(devAddr, ov2640_rgb565_reg_tbl[i], 2, false) != 0) { rtn = CAMERA_ERROR; break; } } for (int i=0; i<sizeof(ov2640_raw_reg_tbl)/2; i++) { if (cmd_i2c.write(devAddr, ov2640_raw_reg_tbl[i], 2, false) != 0) { rtn = CAMERA_ERROR; break; } } break; case CAMERA_FMT_YUV422: for (int i=0; i<sizeof(ov2640_yuv422_reg_tbl)/2; i++) { if (cmd_i2c.write(devAddr, ov2640_yuv422_reg_tbl[i], 2, false) != 0) { rtn = CAMERA_ERROR; break; } } for (int i=0; i<sizeof(ov2640_jpg_reg_tbl)/2; i++) { if (cmd_i2c.write(devAddr, ov2640_jpg_reg_tbl[i], 2, false) != 0) { rtn = CAMERA_ERROR; break; } } break; default: rtn = CAMERA_NOT_SUPPORTED; break; } return rtn; } //设置图像输出大小 //OV2640输出图像的大小(分辨率),完全由该函数确定 //width,height:宽度(对应:horizontal)和高度(对应:vertical),width和height必须是4的倍数 cameraStatusTypeDef OV2640::outputResolutionSet(uint8_t devAddr, uint16_t width, uint16_t height) { cameraStatusTypeDef rtn = CAMERA_OK; // return value uint16_t outh; uint16_t outw; uint8_t temp; if (width%4 == 0 && height%4 == 0) { outw=width/4; outh=height/4; SCCB_WR_Reg(0XFF,0X00); SCCB_WR_Reg(0XE0,0X04); SCCB_WR_Reg(0X5A,outw&0XFF); //设置OUTW的低八位 SCCB_WR_Reg(0X5B,outh&0XFF); //设置OUTH的低八位 temp=(outw>>8)&0X03; temp|=(outh>>6)&0X04; SCCB_WR_Reg(0X5C,temp); //设置OUTH/OUTW的高位 SCCB_WR_Reg(0XE0,0X00); } else { rtn = CAMERA_ERROR; } return rtn; } /* cameraStatusTypeDef OV2640::outputResolutionSet(uint8_t devAddr, uint16_t width, uint16_t height) { cameraStatusTypeDef rtn = CAMERA_OK; // return value if (width%4 == 0 && height%4 == 0) { uint16_t wSize = width / 4, hSize = height / 4; char resize_reg_tbl[][2] = { 0xFF, 0x00, 0xE0, 0x04, 0x5A, (char) (wSize & 0xFF), 0x5B, (char) (hSize & 0xFF), 0x5C, (char) ( ((wSize>>8) & 0X03) | ((hSize>>6) & 0X04) ), 0xE0, 0x00 }; for (int i=0; i<sizeof(resize_reg_tbl)/2; i++) { if (cmd_i2c.write(OV2640_ADDRESS, resize_reg_tbl[i], 2, false) != 0) { rtn = CAMERA_ERROR; break; } } } else { rtn = CAMERA_ERROR; } return rtn; } */ cameraStatusTypeDef OV2640::outputClockFreqSet(uint8_t devAddr, uint8_t divider) { cameraStatusTypeDef rtn = CAMERA_OK; // return value char clockFreqRegTbl[][2] = { 0xFF, 0x00, // 0xD3, (char) (divider&0x7F), 0xD3, (char)divider, // 0xFF, 0x01, // 0x32, 0xB6 // default val: 0x36, alternatives: 0xB6 (half PCLK freq), 0xF6 (quarter) }; for (int i=0; i<sizeof(clockFreqRegTbl)/2; i++) { if (cmd_i2c.write(OV2640_ADDRESS, clockFreqRegTbl[i], 2, false) != 0) { rtn = CAMERA_ERROR; break; } } return rtn; } cameraStatusTypeDef OV2640::abandonFrames(uint8_t frames) { for(int i=0; i<frames; i++) { while(sig_v == 1); while(sig_v == 0); } return CAMERA_OK; } uint32_t OV2640::capture(uint8_t* cap) { uint32_t length = 0; abandonFrames(1); // throw the first (not complete) frame while(sig_v == 1) // start collecting { while(sig_h == 1) { while(sig_c == 0); cap[length] = dat; while(sig_c == 1); length++; } } return length; } /** TEST **/ /* uint32_t OV2640::capture(uint8_t* cap) { uint32_t length = 0; GPIO_TypeDef* port = GPIOC; abandonFrames(1); // throw the first (not complete) frame while(sig_v == 1) // start collecting { while(sig_h == 1) { while(sig_c == 0); cap[length] = GPIOC->IDR; while(sig_c == 1); length++; } } return length; } */ cameraStatusTypeDef OV2640::colorBarSet(uint8_t devAddr, bool enable) { cameraStatusTypeDef rtn = CAMERA_OK; // return value char buffer[2] = {0x12, 0x00}; char cam_cmd_wrbuf_sensor[2] = {0xFF, 0x01}; if (cmd_i2c.write(devAddr, cam_cmd_wrbuf_sensor, 2, false) != 0) { rtn = CAMERA_ERROR; } cmd_i2c.write(devAddr, &buffer[0], 1, false); cmd_i2c.read(devAddr|0x01, &buffer[1], 1, false); buffer[1] &= ~(1<<1); if(enable==true) { buffer[1] |= 1<<1; } if (cmd_i2c.write(devAddr, buffer, 2, false) != 0) { rtn = CAMERA_ERROR; } return rtn; } cameraStatusTypeDef OV2640::SCCB_WR_Reg(char reg, char val) { cameraStatusTypeDef rtn = CAMERA_OK; // return value char sendBuffer[2] = {reg, val}; if (cmd_i2c.write(OV2640_ADDRESS, sendBuffer, 2, false) != 0) { rtn = CAMERA_ERROR; } return rtn; } char OV2640::SCCB_RD_Reg(char reg) { char readBuffer[2] = {reg, 0x00}; cmd_i2c.write(OV2640_ADDRESS, &readBuffer[0], 1, false); cmd_i2c.read(OV2640_ADDRESS|0x01, &readBuffer[1], 1, false); return readBuffer[1]; } //设置图像输出窗口 //sx,sy,起始地址 //width,height:宽度(对应:horizontal)和高度(对应:vertical) void OV2640::windowSet(uint8_t devAddr, uint16_t sx, uint16_t sy, uint16_t width, uint16_t height) { uint16_t endx; uint16_t endy; uint8_t temp; endx=sx+width/2; //V*2 endy=sy+height/2; SCCB_WR_Reg(0XFF,0X01); temp=SCCB_RD_Reg(0X03); //读取Vref之前的值 temp&=0XF0; temp|=((endy&0X03)<<2)|(sy&0X03); SCCB_WR_Reg(0X03,temp); //设置Vref的start和end的最低2位 SCCB_WR_Reg(0X19,sy>>2); //设置Vref的start高8位 SCCB_WR_Reg(0X1A,endy>>2); //设置Vref的end的高8位 temp=SCCB_RD_Reg(0X32); //读取Href之前的值 temp&=0XC0; temp|=((endx&0X07)<<3)|(sx&0X07); SCCB_WR_Reg(0X32,temp); //设置Href的start和end的最低3位 SCCB_WR_Reg(0X17,sx>>3); //设置Href的start高8位 SCCB_WR_Reg(0X18,endx>>3); //设置Href的end的高8位 } //设置图像开窗大小 //由:OV2640_ImageSize_Set确定传感器输出分辨率从大小. //该函数则在这个范围上面进行开窗,用于OV2640_OutSize_Set的输出 //注意:本函数的宽度和高度,必须大于等于OV2640_OutSize_Set函数的宽度和高度 // OV2640_OutSize_Set设置的宽度和高度,根据本函数设置的宽度和高度,由DSP // 自动计算缩放比例,输出给外部设备. //width,height:宽度(对应:horizontal)和高度(对应:vertical),width和height必须是4的倍数 void OV2640::imageWinSet(uint8_t devAddr, uint16_t offx, uint16_t offy, uint16_t width, uint16_t height) { uint16_t hsize; uint16_t vsize; uint8_t temp; if ((width%4 == 0) && (height%4 == 0)) { hsize=width/4; vsize=height/4; SCCB_WR_Reg(0XFF,0X00); SCCB_WR_Reg(0XE0,0X04); SCCB_WR_Reg(0X51,hsize&0XFF); //设置H_SIZE的低八位 SCCB_WR_Reg(0X52,vsize&0XFF); //设置V_SIZE的低八位 SCCB_WR_Reg(0X53,offx&0XFF); //设置offx的低八位 SCCB_WR_Reg(0X54,offy&0XFF); //设置offy的低八位 temp=(vsize>>1)&0X80; temp|=(offy>>4)&0X70; temp|=(hsize>>5)&0X08; temp|=(offx>>8)&0X07; SCCB_WR_Reg(0X55,temp); //设置H_SIZE/V_SIZE/OFFX,OFFY的高位 SCCB_WR_Reg(0X57,(hsize>>2)&0X80); //设置H_SIZE/V_SIZE/OFFX,OFFY的高位 SCCB_WR_Reg(0XE0,0X00); } } //该函数设置图像尺寸大小,也就是所选格式的输出分辨率 //UXGA:1600*1200,SVGA:800*600,CIF:352*288 //width,height:图像宽度和图像高度 cameraStatusTypeDef OV2640::imageSizeSet(uint8_t devAddr, uint16_t width, uint16_t height) { cameraStatusTypeDef rtn = CAMERA_OK; // return value uint8_t temp; SCCB_WR_Reg(0XFF,0X00); SCCB_WR_Reg(0XE0,0X04); SCCB_WR_Reg(0XC0,(width)>>3&0XFF); //设置HSIZE的10:3位 SCCB_WR_Reg(0XC1,(height)>>3&0XFF); //设置VSIZE的10:3位 temp=(width&0X07)<<3; temp|=height&0X07; temp|=(width>>4)&0X80; SCCB_WR_Reg(0X8C,temp); SCCB_WR_Reg(0XE0,0X00); return rtn; } //白平衡设置 //0:自动 //1:太阳sunny //2,阴天cloudy //3,办公室office //4,家里home void OV2640::lightModeSet(uint8_t mode) { uint8_t regccval=0X5E;//Sunny uint8_t regcdval=0X41; uint8_t regceval=0X54; switch(mode) { case 0://auto SCCB_WR_Reg(0XFF,0X00); SCCB_WR_Reg(0XC7,0X10);//AWB ON return; case 2://cloudy regccval=0X65; regcdval=0X41; regceval=0X4F; break; case 3://office regccval=0X52; regcdval=0X41; regceval=0X66; break; case 4://home regccval=0X42; regcdval=0X3F; regceval=0X71; break; } SCCB_WR_Reg(0XFF,0X00); SCCB_WR_Reg(0XC7,0X40); //AWB OFF SCCB_WR_Reg(0XCC,regccval); SCCB_WR_Reg(0XCD,regcdval); SCCB_WR_Reg(0XCE,regceval); } //色度设置 //0:-2 //1:-1 //2,0 //3,+1 //4,+2 void OV2640::colorSaturationSet(uint8_t sat) { uint8_t reg7dval=((sat+2)<<4)|0X08; SCCB_WR_Reg(0XFF,0X00); SCCB_WR_Reg(0X7C,0X00); SCCB_WR_Reg(0X7D,0X02); SCCB_WR_Reg(0X7C,0X03); SCCB_WR_Reg(0X7D,reg7dval); SCCB_WR_Reg(0X7D,reg7dval); } //亮度设置 //0:(0X00)-2 //1:(0X10)-1 //2,(0X20) 0 //3,(0X30)+1 //4,(0X40)+2 void OV2640::brightnessSet(uint8_t bright) { SCCB_WR_Reg(0xff, 0x00); SCCB_WR_Reg(0x7c, 0x00); SCCB_WR_Reg(0x7d, 0x04); SCCB_WR_Reg(0x7c, 0x09); SCCB_WR_Reg(0x7d, bright<<4); SCCB_WR_Reg(0x7d, 0x00); } //对比度设置 //0:-2 //1:-1 //2,0 //3,+1 //4,+2 void OV2640::contrastSet(uint8_t contrast) { uint8_t reg7d0val=0X20;//默认为普通模式 uint8_t reg7d1val=0X20; switch(contrast) { case 0://-2 reg7d0val=0X18; reg7d1val=0X34; break; case 1://-1 reg7d0val=0X1C; reg7d1val=0X2A; break; case 3://1 reg7d0val=0X24; reg7d1val=0X16; break; case 4://2 reg7d0val=0X28; reg7d1val=0X0C; break; } SCCB_WR_Reg(0xff,0x00); SCCB_WR_Reg(0x7c,0x00); SCCB_WR_Reg(0x7d,0x04); SCCB_WR_Reg(0x7c,0x07); SCCB_WR_Reg(0x7d,0x20); SCCB_WR_Reg(0x7d,reg7d0val); SCCB_WR_Reg(0x7d,reg7d1val); SCCB_WR_Reg(0x7d,0x06); } //自动曝光设置参数表,支持5个等级 const static uint8_t OV2640_AUTOEXPOSURE_LEVEL[5][8]= { { 0xFF,0x01, 0x24,0x20, 0x25,0x18, 0x26,0x60, }, { 0xFF,0x01, 0x24,0x34, 0x25,0x1c, 0x26,0x00, }, { 0xFF,0x01, 0x24,0x3e, 0x25,0x38, 0x26,0x81, }, { 0xFF,0x01, 0x24,0x48, 0x25,0x40, 0x26,0x81, }, { 0xFF,0x01, 0x24,0x58, 0x25,0x50, 0x26,0x92, }, }; //OV2640自动曝光等级设置 //level:0~4 void OV2640::autoExposureSet(uint8_t level) { uint8_t i; uint8_t *p=(uint8_t*)OV2640_AUTOEXPOSURE_LEVEL[level]; for(i=0;i<4;i++) { SCCB_WR_Reg(p[i*2],p[i*2+1]); } } //特效设置 //0:普通模式 //1,负片 //2,黑白 //3,偏红色 //4,偏绿色 //5,偏蓝色 //6,复古 void OV2640::specialEffectSet(uint8_t eft) { uint8_t reg7d0val=0X00;//默认为普通模式 uint8_t reg7d1val=0X80; uint8_t reg7d2val=0X80; switch(eft) { case 1://负片 reg7d0val=0X40; break; case 2://黑白 reg7d0val=0X18; break; case 3://偏红色 reg7d0val=0X18; reg7d1val=0X40; reg7d2val=0XC0; break; case 4://偏绿色 reg7d0val=0X18; reg7d1val=0X40; reg7d2val=0X40; break; case 5://偏蓝色 reg7d0val=0X18; reg7d1val=0XA0; reg7d2val=0X40; break; case 6://复古 reg7d0val=0X18; reg7d1val=0X40; reg7d2val=0XA6; break; } SCCB_WR_Reg(0xff,0x00); SCCB_WR_Reg(0x7c,0x00); SCCB_WR_Reg(0x7d,reg7d0val); SCCB_WR_Reg(0x7c,0x05); SCCB_WR_Reg(0x7d,reg7d1val); SCCB_WR_Reg(0x7d,reg7d2val); } // } // end of namespace
ea5d4e0d6568dacd94efb1c2e125cde7ee3068e6
dffbd12cdd7d11ebbda74521c1b77d722ca60031
/src/timeline_svg.cpp
d6088a18ac291414b6a82241f5607485b0ab467d
[ "MIT" ]
permissive
huangfeidian/cpu_web_monitor
02a9e5f4fdde1dc35bf91107f0a40265034d1b68
b68ddce385ac4ec2942fde90b053e7d7ca38219c
refs/heads/main
2023-01-30T03:03:40.292083
2020-12-13T17:51:12
2020-12-13T17:51:12
320,322,880
0
0
null
null
null
null
UTF-8
C++
false
false
11,746
cpp
timeline_svg.cpp
#include "timeline_svg.h" #include "fmt/format.h" #include <ctime> #include <chrono> #include <sstream> namespace { std::string format_timepoint(std::uint64_t seconds_since_epoch, bool with_date = true) { auto epoch_begin = std::chrono::time_point<std::chrono::system_clock, std::chrono::seconds>(); auto cur_timepoint = epoch_begin + std::chrono::seconds(seconds_since_epoch); auto cur_time_t = std::chrono::system_clock::to_time_t(cur_timepoint); struct tm* timeinfo; char buffer[80]; timeinfo = localtime(&cur_time_t); if (with_date) { strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S ", timeinfo); } else { strftime(buffer, sizeof(buffer), "%H:%M:%S ", timeinfo); } return std::string(buffer); } } namespace spiritsaway::cpu_web_monitor { std::string html_encode(const std::string& data) { std::string buffer; buffer.reserve(data.size()); for (size_t pos = 0; pos != data.size(); ++pos) { switch (data[pos]) { case '&': buffer.append("&amp;"); break; case '\"': buffer.append("&quot;"); break; case '\'': buffer.append("&apos;"); break; case '<': buffer.append("&lt;"); break; case '>': buffer.append("&gt;"); break; default: buffer.append(&data[pos], 1); break; } } return buffer; } color::color(color_schema schema, std::size_t hash) { std::uint8_t hash_1 = hash & ((1 << 8) - 1); std::uint8_t hash_2 = (hash >> 8) & ((1 << 8) - 1); std::uint8_t hash_3 = (hash >> 16) & ((1 << 8) - 1); switch (schema) { case color_schema::hot: { r = 205 + 50 * hash_3; g = 230 * hash_1; b = 55 * hash_2; break; } case color_schema::mem: { r = 0; g = 190 + 50 * hash_2; b = 210 * hash_1; break; } case color_schema::io: { r = 80 + 60 * hash_1; g = r; b = 190 + 55 * hash_2; break; } case color_schema::red: { r = 200 + 55 * hash_1; g = 50 + 80 * hash_1; b = g; break; } case color_schema::green: { r = 50 + 60 * hash_1; g = 200 + 55 * hash_1; b = r; break; } case color_schema::blue: { b = 205 + 50 * hash_1; r = 80 + 60 * hash_1; g = r; break; } case color_schema::yellow: { r = 175 + 55 * hash_1; g = r; b = 50 + 20 * hash_1; break; } case color_schema::purple: { r = 190 + 65 * hash_1; g = 80 + 60 * hash_1; b = r; break; } case color_schema::aqua: { r = 50 + 60 * hash_1; g = 165 + 55 * hash_1; b = g; break; } case color_schema::orange: { r = 190 + 65 * hash_1; g = 90 + 65 * hash_1; b = 0; break; } } } color::color(std::uint8_t in_r, std::uint8_t in_g, std::uint8_t in_b) : r(in_r) , g(in_g) , b(in_b) { } std::string color::to_string()const { return "rgb(" + std::to_string(r) + "," + std::to_string(g) + "," + std::to_string(b) + ")"; } bool cpu_usage_svg::add_data(const std::string& name, const std::vector<std::pair<std::uint64_t, std::uint32_t>>& usage_data) { if (total_usage_data.find(name) != total_usage_data.end()) { return false; } total_usage_data[name] = usage_data; return true; } void cpu_usage_svg::prepare() { for (const auto& one_item : total_usage_data) { for (const auto& one_usage : one_item.second) { if (one_usage.second > max_cpu_usage) { max_cpu_usage = one_usage.second; } } if (!one_item.second.empty()) { min_ts = min_ts > one_item.second.front().first ? one_item.second.front().first : min_ts; max_ts = max_ts < one_item.second.back().first ? one_item.second.back().first : max_ts; } } max_cpu_usage = ((max_cpu_usage + 99) / 100) * 100; widthperusage = usage_height * 1.0 / max_cpu_usage; std::uint64_t ts_diff = max_ts - min_ts; if (ts_diff < 5 * 60) { ts_label_gap = 5; } else if (ts_diff < 60 * 60) { ts_label_gap = 60; } else if (ts_diff < 24 * 60 * 60) { ts_label_gap = 60 * 60; } else { ts_label_gap = 24 * 60 * 60; } min_ts = (min_ts / ts_label_gap) * ts_label_gap; max_ts = ((max_ts / ts_label_gap) + 1) * ts_label_gap; int total_labels = (max_ts - min_ts) / ts_label_gap; width = total_labels * label_x_size + 2 * x_frame_pad; if (width < min_width) { width = min_width; } widthpertime = (width - 2 * x_frame_pad) * 1.0 / (max_ts - min_ts); name_per_line = (width - 2 * x_frame_pad) / names_x_pad; auto name_lines = (total_usage_data.size() + name_per_line - 1) / name_per_line; height = ypad_before_title + font_size * 2 + ypad_after_title + usage_height + label_y_bar_size + font_size + (name_lines + 1) * (font_size + names_y_pad) + 2 * names_y_pad; title = "cpu usage graph from " + format_timepoint(min_ts) + " to " + format_timepoint(max_ts); } void cpu_usage_svg::make_header(std::ostream& output) { int begin_y = 0; title_x = x_frame_pad * 2; title_y = ypad_before_title + 2 * font_size; begin_y = title_y + ypad_after_title; output<<R"(<?xml version="1.0" standalone="no"?>)"<<std::endl; output << R"(<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">)" << std::endl; std::string temp; temp = fmt::format("<svg version=\"1.1\" width=\"{0}\" height=\"{1}\" viewBox=\"0 0 {0} {1}\" onload=\"Init(evt)\" ", width, height); output << temp; output << R"(xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">)" << std::endl; std::string svg_scripts = R"( <script type="text/ecmascript"><![CDATA[ var SVGDocument = null; var SVGRoot = null; function Init(evt) { SVGDocument = evt.target.ownerDocument; SVGRoot = SVGDocument.documentElement; } function ToggleOpacity(targetId) { var newTarget = SVGDocument.getElementById(targetId);; var newValue = newTarget.getAttributeNS(null, 'opacity') if ('0' != newValue) { newValue = '0'; } else { newValue = '1'; } newTarget.setAttributeNS(null, 'opacity', newValue); } function ToggleGroupOpacity(evt) { var cur_target = evt.target; var group_name = cur_target.getAttributeNS(null, "group_name"); if(!group_name) { return; } var usage_ele_id = "usage_for_" +group_name; ToggleOpacity(usage_ele_id); } ]]></script> )"; output << svg_scripts << std::endl; temp = fmt::format("<text x=\"{}\" y=\"{}\" font-family=\"{}\" font-size=\"{}\" fill=\"{}\">{}</text>\n", x_frame_pad, ypad_before_title + 2 * font_size, fonttype, 2 * font_size, "red", title); output << temp; std::string frame_stroke_color = "red"; temp = fmt::format("<polyline points=\"{0},{1} {2},{3} {4},{5} {6},{7} {0},{1}\" stroke=\"{8}\" stroke-width=\"{9}\" fill=\"none\"/>\n", x_frame_pad, begin_y, x_frame_pad, begin_y + usage_height, width - x_frame_pad, begin_y + usage_height, width - x_frame_pad, begin_y, frame_stroke_color, 2); output << temp; } void cpu_usage_svg::make_usage_axis(std::ostream& output) { auto axis_y_begin = ypad_before_title + ypad_after_title + 2 * font_size; auto axis_y_end = axis_y_begin + usage_height; float opacity = 0.1; auto axis_x_begin = x_frame_pad; auto axis_x_end = width - x_frame_pad; for (int i = 1; i < max_cpu_usage / usage_unit; i++) { output << "<g>\n"; color cur_color(color_provider, i); auto text_string = fmt::format("<text x=\"{0}\" y=\"{1}\" font-family=\"{2}\" font-size=\"{3}\" fill=\"{4}\">{5}</text>\n", axis_x_begin - 3 * font_size, int(axis_y_end - i * 10 * widthperusage), fonttype, font_size, cur_color.to_string(), std::to_string(i * 10)); output << text_string; auto line_string = fmt::format("<line x1=\"{}\" x2=\"{}\" y1=\"{}\" y2=\"{}\" stroke=\"{}\" stroke-width=\"{}\" opacity=\"{}\"/>\n", axis_x_begin, axis_x_end, int(axis_y_end - i * 10 * widthperusage), int(axis_y_end - i * 10 * widthperusage), cur_color.to_string(), 2, opacity); output << line_string; output << "</g>\n"; } } void cpu_usage_svg::make_time_axis(std::ostream& output) { auto axis_y_begin = ypad_before_title + ypad_after_title + 2 * font_size + usage_height; auto axis_x_begin = x_frame_pad; std::string label_color = "black"; std::string temp; for (std::size_t i = 1; i < (max_ts - min_ts) / ts_label_gap; i++) { auto cur_ts = min_ts + ts_label_gap * i; output << "<g>\n"; auto current_begin = int(axis_x_begin + i * ts_label_gap * widthpertime); temp = fmt::format("<line x1=\"{}\" x2=\"{}\" y1=\"{}\" y2=\"{}\" stroke=\"{}\" stroke-width=\"{}\"/>\n", current_begin, current_begin, axis_y_begin, axis_y_begin + label_y_bar_size, label_color, 2); output << temp; std::string ts_string = format_timepoint(cur_ts,false); temp = fmt::format("<text x=\"{}\" y=\"{}\" font-family=\"{}\" font-size=\"{}\" fill=\"{}\">{}</text>\n", current_begin - ts_string.size() / 4 * font_size, axis_y_begin + label_y_bar_size + font_size, fonttype, font_size, label_color, ts_string); output << temp; output << "</g>\n"; } } void cpu_usage_svg::make_process_names(std::ostream& output) { std::size_t i = 0; std::string temp; std::string label_color = "black"; for (const auto& one_item : total_usage_data) { auto cur_name = html_encode(one_item.first); auto cur_color = color(color_provider, i); auto cur_line = i / name_per_line; auto cur_begin_x = x_frame_pad + (i % name_per_line)* names_x_pad; auto cur_begin_y = ypad_before_title + ypad_after_title + 2 * font_size + usage_height + names_y_pad + cur_line*(font_size + names_y_pad); temp = fmt::format("<line x1=\"{}\" x2=\"{}\" y1=\"{}\" y2=\"{}\" stroke=\"{}\" stroke-width=\"{}\" onclick=\"ToggleGroupOpacity(evt)\" group_name=\"{}\"/>\n", cur_begin_x, cur_begin_x + name_bar_size, cur_begin_y - font_size/2, cur_begin_y -font_size/2, cur_color.to_string(), font_size, cur_name); output << temp; temp = fmt::format("<text x=\"{}\" y=\"{}\" font-family=\"{}\" font-size=\"{}\" fill=\"{}\">{}</text>\n", cur_begin_x + font_size + name_bar_size, cur_begin_y, fonttype, font_size, cur_color.to_string(), cur_name); output << temp; i++; } } void cpu_usage_svg::make_cpu_usage_line(std::ostream& output) { std::size_t i = 0; std::size_t base_y = ypad_before_title + ypad_after_title + 2 * font_size + usage_height; std::string temp; for (const auto& one_item : total_usage_data) { output << "<g id=\"" <<"usage_for_" + html_encode(one_item.first) <<"\">\n"; auto cur_color = color(color_provider, i); for (std::size_t j = 1; j < one_item.second.size(); j++) { auto cur_ts = one_item.second[j].first; auto cur_value = one_item.second[j].second; auto pre_ts = one_item.second[j - 1].first; auto pre_value = one_item.second[j - 1].second; std::size_t pre_point_x = x_frame_pad + (pre_ts - min_ts) * widthpertime; std::size_t cur_point_x = x_frame_pad + (cur_ts - min_ts) * widthpertime; std::size_t pre_point_y = base_y - pre_value * widthperusage; std::size_t cur_point_y = base_y - cur_value * widthperusage; temp = fmt::format("<line x1=\"{}\" x2=\"{}\" y1=\"{}\" y2=\"{}\" stroke=\"{}\" stroke-width=\"{}\"/>\n", pre_point_x, cur_point_x, pre_point_y, cur_point_y, cur_color.to_string(), 2); output << temp; } i++; output << "</g>\n"; } } std::string cpu_usage_svg::render_graph() { std::ostringstream output_buffer; prepare(); make_header(output_buffer); make_time_axis(output_buffer); make_usage_axis(output_buffer); make_process_names(output_buffer); make_cpu_usage_line(output_buffer); output_buffer << "</svg>\n"; return output_buffer.str(); } }
bddaad3f32a3126febceb61e67774e2be590e2a0
16a04a189c2f14d6d28a78d774a8c0ad8fb3bf28
/LibCppSim - Cooperative Caching HPCS/applicationLayer/TlcProtocol.cc
3f82c5935340abf85c3d4f94463baf7708bf84d9
[]
no_license
F951/Models-HPCS
7895b9d708df04f7b2fe70c9e14c46ac32dd3d67
64b24311499b8ffd7e86c3698389494f0f5a8787
refs/heads/main
2023-03-07T16:02:02.620133
2021-02-24T15:38:44
2021-02-24T15:38:44
341,332,053
0
0
null
null
null
null
UTF-8
C++
false
false
33,370
cc
TlcProtocol.cc
#include "TlcProtocol.h" #include <iomanip> // std::setprecision void TlcProtocol::inner_body(void) { while (1) { if(queue_in.empty()) passivate(); // recovers messages from the lower layer //cout<<"TLCProtocol "<<endl; fflush(stdout); if((*observer)->getIteracion() != iteracion) { // inlinks.clear(); // RCACHE->reset(); iteracion = (*observer)->getIteracion(); checkWaitTimeOut(); } //cout<<"1:TLCProtocol "<<endl; fflush(stdout); while(!queue_in_lower.empty()) { PastryMessage *temp1 = (PastryMessage*)queue_in_lower.front(); queue_in_lower.pop_front(); TlcMessage *temp =(TlcMessage*)temp1->getData(); if(temp1->finalDestination) temp->setFinalDest(); if(temp1->getType()!=5) delete temp1; queue_in.push_back(temp); } ASSERT(!queue_in.empty()); TlcMessage* tm = queue_in.front(); queue_in.pop_front(); switch ((int)Rep_Strategy) //~ switch (0) { case (0): { LeafsetBubble(tm); break; } case (1): { LeafsetBubble(tm); break; } case (2): { TlcAlgorithm(tm); break; } default: { cout << "default " << Rep_Strategy << endl; } } } } void TlcProtocol::TlcAlgorithm(TlcMessage * tm) { Entry *e; LCache *lc; Query *q; NodeEntry *lcPeer; switch (tm->getType()) { case TLC_LC_ACK: { cout<<"TLC_LC_ACK"<<endl; lc = tm->getLCache(); lcack.push_back(lc); delete tm; break; } case TLC_WSE: { cout<<"TLC_WSE"<<endl; e= tm->getEntry(); //q=tm->getQuery(); //cout << "TLC: INSERT GLOBAL "<< UTIL::truncateNodeId(pid) << " - key " << UTIL::truncateNodeId(e->hashValue) << endl; RCACHE->insertEntry ( e->clone() ); vector<TlcMessage*>::iterator it; vector< Query*>::iterator at; it=outstanding.begin(); while(it!=outstanding.end()) { if(BN_cmp(((*it)->getQuery())->hashValue, e->hashValue)==0) { TlcMessage* tmp = (*it); Entry* clone = e->clone(); sendReply(clone,tmp); RCACHE->update(e->hashValue); outstanding.erase(it); if (tmp->getPathSize()>=2) { if(BN_cmp(((*pastry)->ne)->getNodeID(),(tmp->src)->getNodeID())!=0) storeInlink(e->hashValue, tmp->path[tmp->getPathSize()-2]); } } else { it++; } } at = waiting.begin(); while(at!=waiting.end()) { if(BN_cmp((*at)->hashValue, e->hashValue)==0) { waiting.erase(at); } else { at++; } } delete tm; break; } case TLC_LOOKUP: { //~ cout<<"TLC_LOOKUP"<<endl; q = tm->getQuery(); // cout << "Tlc: lookup - key:" << UTIL::truncateNodeId(q->hashValue) << " " << q->id << endl; if((tm->path).size()>0) { if(BN_cmp(((*pastry)->ne)->getNodeID(),(tm->path[(tm->path).size()-1])->getNodeID())!=0) tm -> addPath((*pastry)->ne); } else { tm -> addPath((*pastry)->ne); } if (tm->getFinalDest()) { // cout << "hop2: " << tm->path.size() << endl; (*observer)->addHops(tm->path.size()-1); //printPath(tm); //Calculate average queue size //setAvgQueue(); } // check global cache entries //~ cout<<"TLC_LOOKUP - CHECK RCACHE"<<endl; e = RCACHE->check(q->hashValue); if(e!=NULL && !e->old(this->time())) { (*observer)->addHitGlobal(); sendReply(e->clone(), tm ); RCACHE->update(e->hashValue); if (tm->getPathSize()>=2) { if(BN_cmp(((*pastry)->ne)->getNodeID(),(tm->src)->getNodeID())!=0) storeInlink(q->hashValue, tm->path[tm->getPathSize()-2]); } } // if it is the final Dest or it the entry is old. else if( (e==NULL && tm->getFinalDest()) || (e!=NULL && e->old(this->time())) ) { //if(e!=NULL) // cout << "TTL: "<< q->id << endl; outstanding.push_back(tm); (*observer)->addMiss(); (*client)->sendWSEQuery(q); } else { // check local cache entries e= localCache->check(q->hashValue); if(e!=NULL && e->old(this->time())) { localCache->remove(e); e=NULL; } if (e!=NULL) { (*observer)->addHitLocal(); // send reply message and update entry sendReply(e->clone(),tm); localCache->update(e->hashValue); } else { // check Lcache lc = LCACHE->check(q->hashValue); // if found add src to Lcache if expiration is ok if ( lc!=NULL) { lcPeer = lc->getDonante(q->src, (double)this->time() ); if ( lcPeer !=NULL && lcPeer != q->src)//if ( lc !=NULL && lc->getLocation()!=q->src) { (*observer)->addHitLCache(); lc->addNewLocation(lcPeer,this->time()); sendLCache(lc->clone(),tm); } else goto GOSALIDA; } else { GOSALIDA: //~ cout<<"TLC_LOOKUP - GO SALIDA"<<endl; vector<Query*>::iterator ite; ite=waiting.begin(); bool wait=false; bool force=false; if (tm->getForceRouting()) { force=true; } //~ cout<<"TLC_LOOKUP - Check waiting"<<endl; while(ite!=waiting.end() && !wait && !force) { if( BN_cmp(q->hashValue, (*ite)->hashValue)==0) { (*observer)->addHitLocal(); //cout << "hop3: " << tm->path.size() << endl; (*observer)->addHops(tm->path.size()-1); //printPath(tm); //cout << "outstanding q:" << q->id << " wait " << (*ite)->id << endl; outstanding.push_back(tm); wait=true; break; } ite++; } if(!wait) { //~ cout<<"TLC_LOOKUP - Continue routing"<<endl; continueRouting(tm); } if (tm->getPathSize() == 2 ) { //cout<< "Insert Lcache : << " << BN_bn2hex(q->hashValue) << " id:" << q->id << " src: " << BN_bn2hex(q->src->getNodeID()) << endl; //NodeEntry* nextStep = (*pastry)->route(q->hashValue); //~ cout<<"TLC_LOOKUP - Create amortiguador"<<endl; if(q->src!=(*pastry)->ne) { cout<<"TLC_LOOKUP - src!=ne"<<endl; //cout << "route1" << BN_bn2hex(q->hashValue) << endl; //fflush(stdout); //~ NodeEntry* nextStep = (*pastry)->route(q->hashValue); cout<<"TLC_LOOKUP - NextStepOK"<<endl; LCache *temp = new LCache(q->term, q->hashValue, q->src, (*pastry)->route(q->hashValue), this->time()); cout<<"TLC_LOOKUP - Lcache entry ready"<<endl; temp->CreateAmortiguador(Thao); cout<<"TLC_LOOKUP - Amortiguador ready"<<endl; temp->getDonante(q->src, (double)this->time()); cout<<"TLC_LOOKUP - Insert amortiguador in Lcache"<<endl; LCACHE->insertLCache(temp); cout<<"TLC_LOOKUP - Insert OK"<<endl; } cout<<"TLC_LOOKUP - src==ne"<<endl; } } cout<<"TLC_LOOKUP - Put query on waiting"<<endl; if (tm->getPathSize()==1) { //cout << "Inserting in waiting path==1" << endl; waiting.push_back(tm->query); } } } cout<<"EXIT TLC_LOOKUP"<<endl; break; } case TLC_ENDS: { cout<<"TLC_ENDS"<<endl; //cout << "TLC_ENDS" << nFin << "-" << (*pastry)->ne->getIP() << endl; nFin++; if (nFin == NP) { //cout << "TLC_ENDS FINAL" << nFin << "-" << NP << endl; (*replicator)->end(); (*observer)->end(); } //cout << "T: " << terminadas << " end[NP]: " << ends[NP] << " ends[i] " << ends[((*pastry)->ne)->getIP()] << endl; if (ends[NP]==1 && !Broadcast) { if(0==ends[(*pastry)->ne->getIP()] || terminadas==ends[(*pastry)->ne->getIP()] ) { // cout << "send BCD -" << (*pastry)->ne->getIP() << endl; Broadcast=true; sendEndBroadcast(); } } break; } case TLC_REPLY: { cout<<"TLC_REPLY"<<endl; e = tm->getEntry(); q= tm->getQuery(); // if(e == NULL) //cout << "TLC: Entry received NULL" << endl; //cout << "TLC: INSERT LOCAL "<< UTIL::truncateNodeId(pid) << " - key " << UTIL::truncateNodeId(e->hashValue) << endl; // save in localCache localCache->insertEntry(e->clone()); vector<Query*>::iterator at; at= waiting.begin(); while(at!=waiting.end()) { if(BN_cmp((*at)->hashValue, e->hashValue)==0) { waiting.erase(at); } else { at++; } } vector<TlcMessage*>::iterator it1; it1 = outstanding.begin(); while(it1!=outstanding.end()) { if(BN_cmp(e->hashValue, ((*it1)->getQuery())->hashValue)==0) { //(*observer)->addHitLocal(); //cout << "TLC: REPLY OUTSTANDING"<< ((*it1)->getQuery())->id << endl; TlcMessage* tmp = *it1; sendReply(e->clone(),tmp); outstanding.erase(it1); } else { it1++; } } vector<LCache*>::iterator ilc; ilc= lcack.begin(); while(ilc!=lcack.end()) { if(BN_cmp(e->hashValue, (*ilc)->hashValue)==0) lcack.erase(ilc); else ilc++; } //Query *q = tm->getQuery(); // cout << "Arriving Query " << q->id <<"/" << this->time() << endl; (*observer)->addNQueriesIn(); (*observer)->addLatencia((double)((this->time())-(q->t_start))); terminadas++; CTE_trabajo = work_time->value(); //~ cout << "CTE_trabajo= "<< CTE_trabajo << endl; busy = true; hold(CTE_trabajo); busy = false; //cout << "T: " << terminadas << " end[NP]: " << ends[NP] << " ends[i] " << ends[((*pastry)->ne)->getIP()] << endl; if (ends[NP]==1) { if(terminadas==ends[(*pastry)->ne->getIP()]) { // cout << "send BDC -" << (*pastry)->ne->getIP() << endl; Broadcast=true; sendEndBroadcast(); } } delete tm->getQuery(); delete tm; break; } case TLC_LCACHE: { cout<<"TLC_LCACHE"<<endl; //ADD TO PATH if((tm->path).size()>0) { if(BN_cmp(((*pastry)->ne)->getNodeID(),(tm->path[(tm->path).size()-1])->getNodeID())!=0) tm -> addPath((*pastry)->ne); } else { tm -> addPath((*pastry)->ne); } //tm -> addPath((*pastry)->ne); lc = tm->getLCache(); q = tm->getQuery(); //cout << "TLC: LCACHE RECEIVED -" << q->id << " key " << BN_bn2hex(q->hashValue)<< endl; Entry* tmp = localCache->check(q->hashValue); if(tmp == NULL || tmp->old(this->time()) ) { //cout << "not in local cache?" << endl; vector<Query*>::iterator at; bool wait = false; at = waiting.begin(); while(at!=waiting.end()) { if(BN_cmp((*at)->hashValue, q->hashValue)==0) { //cout << "ID wait"<< (*at)->id << endl; wait=true; break; } at++; } bool isLcack= false; vector<LCache*>::iterator ilc; ilc= lcack.begin(); while(ilc!=lcack.end()) { if(BN_cmp(q->hashValue, (*ilc)->hashValue)==0) { isLcack=true; break; } ilc++; } bool isLack2=false; LCache* lc_temp = LCACHE->check(q->hashValue); if (lc_temp!=NULL) { if (BN_cmp(((lc_temp->getLocation())->getNodeID()), (q->src)->getNodeID())==0) { isLack2=true; } } if(wait && !isLcack && !isLack2) { (*observer)->addHitLocal(); // cout << "Hops:" << tm->path.size() << endl; (*observer)->addHops(tm->path.size()-1); tm->setType(TLC_LOOKUP); outstanding.push_back( tm); //printPath(tm); } else // { continueRouting(tm, lc->getNextStep()); delete lc; } } else { //cout << "replying" << endl; (*observer)->addHitLocal(); // cout << "Local 2-" << q->id << endl; sendReply(tmp->clone(), tm); localCache->update(tmp->hashValue); } //delete lc; break; } case TLC_REPLICATE: { cout<<"TLC_REPLICATE"<<endl; // add entry to replicaCache //cout << "TLC-REPLICATE Received!!"<<endl; e = tm->getEntry(); //if(e->hashValue == NULL) //cout << "ENTRY NULL!!"<<endl; //cout << "TLC-REPLICATE recovered!! " << BN_bn2hex(e->hashValue) <<endl; (*client)->sendWSEQuery( new Query(0, (char*)(e->key).c_str(),BN_dup( e->hashValue), this->time()) ); delete tm; //freeMessage(tm); break; } } } void TlcProtocol::sendEndBroadcast(){ //~ TlcMessage *EB= new TlcMessage(TLC_ENDS, msgID); //~ PastryMessage *pm = new PastryMessage(PASTRY_BDC, EB); //~ (*pastry)->add_message(pm); //~ if((*pastry)->idle() && !(*pastry)->get_busy()) //~ (*pastry)->activateAfter(current()); } void TlcProtocol::printPath(TlcMessage* tm) { Query* q = tm->getQuery(); cout<< "--------- PATH for " << BN_bn2dec(q->hashValue) << " ---------"<<endl; for(unsigned int k = 0; k < tm->path.size(); k++){ cout << k << " -> " << BN_bn2dec((tm->path[k])->getNodeID() ) <<endl; } cout<<"--------------------------------------------------------------------"<<endl; } // TODO void TlcProtocol::continueRouting(TlcMessage* tm, NodeEntry* neD) { //cout << "Tlc: continueRouting LCACHE " << endl; tm->setType(TLC_LOOKUP); tm->dest = (tm->getQuery())->hashValue; PastryMessage *pm = new PastryMessage(PASTRY_SENDDIRECT,(*pastry)->ne, neD, tm); (*pastry)->add_message(pm); if((*pastry)->idle() && !(*pastry)->get_busy()) (*pastry)->activateAfter(current()); } void TlcProtocol::continueRouting(TlcMessage* tm) { //cout << "Tlc: continueRouting " << endl; PastryMessage *pm = new PastryMessage(PASTRY_SENDDHT,(*pastry)->ne,tm->dest, tm); (*pastry)->add_message(pm); if((*pastry)->idle() && !(*pastry)->get_busy()) (*pastry)->activateAfter(current()); } void TlcProtocol::sendLCache(LCache* lc, TlcMessage* tm) { TlcMessage* reply = new TlcMessage(TLC_LCACHE, msgID, (*pastry)->ne, (lc->getLocation())); msgID = msgID +1; reply->setLCache(lc->clone()); reply->setQuery(tm->getQuery()); reply->setPath(tm->path); PastryMessage *pm = new PastryMessage( PASTRY_SENDDIRECT, (*pastry)->ne, lc->getLocation(), reply); (*pastry)->add_message(pm); if((*pastry)->idle() && !(*pastry)->get_busy()) (*pastry)->activateAfter(current()); // delete tm; TlcMessage* lc_ack = new TlcMessage(TLC_LC_ACK, msgID, (*pastry)->ne,(tm->getQuery())->src ); msgID = msgID +1; lc_ack->setLCache(lc->clone()); lc_ack->setQuery(tm->getQuery()); lc_ack->setPath(tm->path); PastryMessage *pm2 = new PastryMessage( PASTRY_SENDDIRECT, (*pastry)->ne, (tm->getQuery())->src, lc_ack); (*pastry)->add_message(pm2); if((*pastry)->idle() && !(*pastry)->get_busy()) (*pastry)->activateAfter(current()); } void TlcProtocol::sendReply(Entry* _e, TlcMessage* tm) { setAvgQueue(); overloaded++; // (*observer)->addNQueries(); (*observer)->addLoad(((*pastry)->ne)->getIP()); //~ cout << "###################### Añadir carga, peer ->: " << ((*pastry)->ne)->getIP() << endl; Query * q= tm->getQuery(); //cout << "TlcReply: " <<BN_bn2hex((q->src)->getNodeID())<< endl; TlcMessage* reply = new TlcMessage(TLC_REPLY, msgID, (*pastry)->ne, q->src); msgID = msgID + 1; reply->setEntry(_e); reply->setQuery(tm->getQuery()); PastryMessage *pm = new PastryMessage(PASTRY_SENDDIRECT,(*pastry)->ne,q->src, reply); (*pastry)->add_message(pm); if((*pastry)->idle() && !(*pastry)->get_busy()) (*pastry)->activateAfter(current()); // delete tm; } void TlcProtocol::sendReplica(Entry* e ,NodeEntry* nodeEntry) { TlcMessage* replica = new TlcMessage(TLC_REPLICATE, msgID, (*pastry)->ne, nodeEntry); msgID = msgID+1; replica->setEntry(e); (*observer)->addReplicas(); PastryMessage *pm = new PastryMessage (PASTRY_SENDDIRECT, (*pastry)->ne, nodeEntry, replica); (*pastry)->add_message(pm); if((*pastry)->idle() && !(*pastry)->get_busy()) (*pastry)->activateAfter(current()); } void TlcProtocol::setAvgQueue() { t_act = this->time() ; //cout << "TLC: T-actual "<< t_act<< endl; //cout << "TLC: avg_queue " << avg_queue<<endl; //fflush(stdout); avg_queue = avg_queue + ( (queue_in.size() + 1) *(t_act - t_pas) ); t_pas = t_act; // cout << "TLC: AVG_QUEUE " << avg_queue << endl; // fflush(stdout); } void TlcProtocol::resetQueue() { avg_queue = 0; overloaded=0; } bool TlcProtocol::isReplicated(BIGNUM* nodeId, BIGNUM* key) { map<BIGNUM*, Replicas*>::iterator it; it = replicaTrack.begin(); // cout << "TLC-IsReplicated?"<< endl; while(it != replicaTrack.end()) { if( BN_cmp(it->first,nodeId) == 0 && (it->second)->isContained(key) ) { //cout << "Esta Replicado" << endl; return true; } ++it; } return false; } bool TlcProtocol::isNewReplica(BIGNUM* id) { map<BIGNUM*, Replicas*>::iterator it; it = replicaTrack.begin(); while(it != replicaTrack.end()) { if( BN_cmp(it->first, id) == 0 ) { return false; } ++it; } return true; } void TlcProtocol::trackReplica(BIGNUM* nodeId, BIGNUM* key) { // bool flag = isReplicated(nodeId, key); bool flag = isNewReplica(nodeId); //DEBUG /* cout <<"TLC - Replica Track " <<BN_bn2hex(nodeId) << " "<<BN_bn2hex(key)<< endl; map<BIGNUM*, Replicas*>::iterator it; it = replicaTrack.begin(); cout << "------------ANTES-------------" << endl; while(it != replicaTrack.end()) { (it->second)->print(); //cout <<BN_bn2hex(it->first) << " "<<BN_bn2hex(it->second)<< endl; ++it; } cout <<"--------------------------"<<endl; */ //No esta if(flag) { Replicas* r = new Replicas(key ,nodeId); replicaTrack.insert(pair <BIGNUM*, Replicas*>(nodeId, r) ); replicaTrack[nodeId] = r; (*observer)->addReplicas(); //Existe hay q revisar }else { map<BIGNUM*, Replicas*>::iterator it5; it5 = replicaTrack.begin(); while(it5 != replicaTrack.end()) { if(BN_cmp(nodeId,it5->first) == 0) { (it5->second)->putReplica(key); (*observer)->addReplicas(); } ++it5; } } //DEBUG /* cout <<"TLC - Replica Track "<<BN_bn2hex(nodeId) << " "<<BN_bn2hex(key)<< endl; map<BIGNUM*, Replicas*>::iterator it2; it2 = replicaTrack.begin(); cout << "------------DESPUES-------------" << endl; while(it2 != replicaTrack.end() ) { (it2->second)->print(); //cout <<BN_bn2hex(it2->first) << " "<<BN_bn2hex(it2->second)<< endl; ++it2; } cout <<"--------------------------"<<endl; */ } void TlcProtocol::storeInlink(BIGNUM* key, NodeEntry* n) { bool inlinkStored = false; Inlink* i; map<BIGNUM*,Inlink*>::iterator it; it = inlinks.begin(); // cout <<"-------------------------- I -------------" << endl; while(it != inlinks.end()) { //cout<< BN_bn2hex(it -> first)<< endl; if(BN_cmp(it->first, n->getNodeID())==0) { inlinkStored = true; i = it ->second; break; } ++it; } //cout << "Storing Inlink -> "<< inlinkStored <<endl; //Existe Inlink if( inlinkStored ) { //cout <<"Put Query "<< BN_bn2hex(key)<< endl; //Consulta llega por ese inlink? i->putQuery(key); //Inlink no existe, se inserta y se inserta la query } else { //cout <<"New Inlink " << BN_bn2hex(n -> getNodeID() )<< endl; Inlink* i2 = new Inlink(n); i2->putQuery(key); inlinks.insert(pair<BIGNUM*,Inlink*> ((n)->getNodeID(), i2)); inlinks[n->getNodeID()] = i2; } } /* //TODO: void TlcProtocol::checkTTL(BIGNUM* query, BIGNUM* urlsId) { int query_TTL, last_TTL; BIGNUM* lastUrlId = urlsID.find(query)->second; //STALE ENTRY if(BN_cmp(urlsId, lastUrlId )!= 0) { // TTL to min query_TTL = MIN_TTL; //Update URLs_ID urlsID.erase(urlsID.find(query)); urlsID.insert(pair<BIGNUM*, BIGNUM*> (query, urlsId)); //Update TTLs queryTTL.erase(queryTTL.find(query)); queryTTL.insert(pair<BIGNUM*,int>(query, query_TTL) ); //STILL FRESH ENTRY }else { last_TTL = queryTTL.find(query)->second; //Estimate TTL using incremental Function F //query_TTL = last_TTL + F(last_TTL); if(query_TTL > MAX_TTL) query_TTL = MAX_TTL; //Update URLs_ID urlsID.erase(urlsID.find(query)); urlsID.insert(pair<BIGNUM*, BIGNUM*> (query, urlsId)); queryTTL.erase(queryTTL.find(query)); queryTTL.insert(pair<BIGNUM*,int>(query, query_TTL) ); } } */ void TlcProtocol::freeMessage(TlcMessage * msg) { free(msg->dest); free(msg); } void TlcProtocol::EndReplicator(){ (*replicator)->end();} void TlcProtocol::checkWaitTimeOut() { vector<Query*>::iterator at; at = waiting.begin(); while(at!=waiting.end()) { if((*at)->getTimeOut()< this->time() && !((*at)->getForceRouting())) { Query *q=(*at);// new Query(at->id,at->term,at->hashValue,0.0); q->renewTimeOut(this->time()); q->forceRouting(); this->add_query(q); waiting.erase(at); } else { at++; } } } void TlcProtocol::LeafsetBubble(TlcMessage *tm) { Entry *e; Query *q; load_control(); //~ cout << std::setprecision(10) << "TLC Node: " << name() << " - time: " << this->time()<< endl; switch (tm->getType()) { case TLC_WSE: { e= tm->getEntry(); //q=tm->getQuery(); RCACHE->insertEntry ( e->clone() ); vector<TlcMessage*>::iterator it; vector< Query*>::iterator at; it=outstanding.begin(); while(it!=outstanding.end()) { if(BN_cmp(((*it)->getQuery())->hashValue, e->hashValue)==0) { TlcMessage* tmp = (*it); Entry* clone = e->clone(); sendReply(clone,tmp); RCACHE->update(e->hashValue); outstanding.erase(it); if (tmp->getPathSize()>=2) { if(BN_cmp(((*pastry)->ne)->getNodeID(),(tmp->src)->getNodeID())!=0) storeInlink(e->hashValue, tmp->path[tmp->getPathSize()-2]); } } else { it++; } } at = waiting.begin(); while(at!=waiting.end()) { if(BN_cmp((*at)->hashValue, e->hashValue)==0) { waiting.erase(at); } else { at++; } } delete tm; break; } case TLC_LOOKUP: { q = tm->getQuery(); //~ cout << "==========================================================================================================" << endl; //~ std::cout << "TLC Protocol " << (*pastry)->idTransporte << " - Process MSG. MSG Type:" << "LOOKUP" << std::endl; if((tm->path).size()>0) { if(BN_cmp(((*pastry)->ne)->getNodeID(),(tm->path[(tm->path).size()-1])->getNodeID())!=0) tm -> addPath((*pastry)->ne); } else { tm -> addPath((*pastry)->ne); } if (tm->getFinalDest()) { (*observer)->addHops(tm->path.size()-1); } //~ printPath(tm); // check global cache entries e = RCACHE->check(q->hashValue); if(e!=NULL && !e->old(this->time())) { (*observer)->addHitGlobal(); sendReply(e->clone(), tm ); RCACHE->update(e->hashValue); if (tm->getPathSize()>=2) { if(BN_cmp(((*pastry)->ne)->getNodeID(),(tm->src)->getNodeID())!=0) storeInlink(q->hashValue, tm->path[tm->getPathSize()-2]); } } // if it is the final Dest or it the entry is old. else if( ( tm->getFinalDest())) { outstanding.push_back(tm); (*observer)->addMiss(); (*client)->sendWSEQuery(q); } else if (e!=NULL && e->old(this->time())) { switch ((int)Case_Responsable) { case (0): { (*observer)->addMiss(); RCACHE->remove(e); continueRouting(tm); break; } case (1): { outstanding.push_back(tm); (*observer)->addMiss(); (*client)->sendWSEQuery(q); break; } } } else { // check local cache entries e= localCache->check(q->hashValue); if(e!=NULL && e->old(this->time())) { localCache->remove(e); e=NULL; } if (e!=NULL) { (*observer)->addHitLocal(); sendReply(e->clone(),tm); localCache->update(e->hashValue); } else { // vector<Query*>::iterator ite; // ite=waiting.begin(); // bool wait=false; // while(ite!=waiting.end() && !wait) // { // if( BN_cmp(q->hashValue, (*ite)->hashValue)==0) // { // (*observer)->addHitLocal(); // (*observer)->addHops(tm->path.size()-1); // outstanding.push_back(tm); // wait=true; // break; // } // ite++; // } // if(!wait ) // { continueRouting(tm); // } } if (tm->getPathSize()==1) { waiting.push_back(tm->query); } } break; } case TLC_ENDS: { nFin++; if (nFin == NP) { (*replicator)->end(); (*observer)->end(); } if (ends[NP]==1 && !Broadcast) { if(0==ends[(*pastry)->ne->getIP()] || terminadas==ends[(*pastry)->ne->getIP()] ) { Broadcast=true; sendEndBroadcast(); } } break; } case TLC_REPLY: { e = tm->getEntry(); q= tm->getQuery(); localCache->insertEntry(e->clone()); vector<Query*>::iterator at; at= waiting.begin(); while(at!=waiting.end()) { if(BN_cmp((*at)->hashValue, e->hashValue)==0) { waiting.erase(at); } else { at++; } } vector<TlcMessage*>::iterator it1; it1 = outstanding.begin(); while(it1!=outstanding.end()) { if(BN_cmp(e->hashValue, ((*it1)->getQuery())->hashValue)==0) { TlcMessage* tmp = *it1; sendReply(e->clone(),tmp); outstanding.erase(it1); } else { it1++; } } (*observer)->addNQueriesIn(); //~ cout << " QUERY END in TLC - TIME: " << this->time() << endl; (*observer)->addLatencia((double)((this->time())-(q->t_start))); terminadas++; if (ends[NP]==1) { if(terminadas==ends[(*pastry)->ne->getIP()]) { Broadcast=true; sendEndBroadcast(); } } delete tm->getQuery(); delete tm; break; } case TLC_REPLICATE: { switch((int)Case_Responsable) { // ask directly to the WSE case (1): { e = tm->getEntry(); (*client)->sendWSEQuery( new Query(0, (char*)(e->key).c_str(),BN_dup( e->hashValue), this->time()) ); break; } // stores entry locally case (0): { RCACHE->insertEntry((tm->getEntry())->clone()); break; } default: { cout << "default Tlc rep" << endl; break; } } delete tm; break; } default: cout << "error LeafsetBubble" << endl; break; } } //*****************************************************Funciones REPLICATOR void TlcProtocol::load_control(void) //Ex inner body { int debug=0; if(debug){cout << "======================================================================================================================================" << endl;} if(debug){cout << "LOAD CONTROL" << endl;} if ( ( this->time() - start_Control_time ) < Control_TIME ){ //No hacer el control antes de tiempo. if(debug){cout << "Still not control Time." << endl;} return; } if(debug){cout << "Control load." << endl;} start_Control_time = this->time(); overload = overloaded; //En overloaded tengo que acumular la carga en relación a las consultas. //~ if(debug){cout << "Peer is overloaded? " << overloaded << endl;} //Checks nodes load if( isOverloaded() ) { // Replication // 1) Sort Entries // 2) Select the most frequent // 3) Replicate based on strategy if(debug){cout << "Peer Overloaded!!" << endl;} // Copy LocalCACHE and RCACHE entries to Vector entries retrieveEntries(); // Sort by frequency sort(entries.begin(), entries.end(), compare); //Select strategy and replicate replicate(Rep_Strategy); //RESET resetQueue(); inlinks.clear(); RCACHE->reset(); } } double TlcProtocol::getQueueSize(){ double size; size = ( avg_queue/DELTA_T); // En avg_queue tengo que almacenar el tamaño promedio return size; } bool TlcProtocol::isOverloaded(){ //Si esta sobrecargado --> cola mayor a un tamano t if (overload > OVERLOAD_THRESHOLD) return true; return false; } int TlcProtocol::getAvailableCapacity() { if(getQueueSize() > OVERLOAD_THRESHOLD) return 0; return int (OVERLOAD_THRESHOLD - getQueueSize() ); } void TlcProtocol::retrieveEntries(){ //Copy the entries from RCACHE to Vector entries to be sorted entries = RCACHE->getEntries(); } void TlcProtocol::replicate(int strategy) { switch (strategy) { //LEAFSET case 0: replicateLeafset(); break; //BUBBLE case 1: replicateBubble(); break; } } void TlcProtocol::replicateLeafset() { int debug=0; //Verificar linea //~ vector<NodeEntry*> ls; vector<NodeEntry*> ls = (*pastry)->leafset->listAllNodes(); Entry *e = NULL; int j = 0; //Sort vector by Freq sort(entries.begin(), entries.end(), compare); //cout << "REP - SORTING"<< endl; vector< Entry*>::iterator it; it = entries.begin(); //cout <<"------------------------------------------------------"<< endl; //while(it != entries.end()) //{ // cout << BN_bn2hex((*it) ->hashValue)<<" - " <<(*it)->frequency << endl; // ++it; //} //Search for the first not replicated entry if(entries.size()>0){ do{ e = entries[j]; j++; }while(entries.size() > (unsigned)j && e->isReplicated); if(e->isReplicated){ //cout << "NO SE PUEDE REPLICAR MAS..."<< BN_bn2hex((*tlc)->pid) <<endl; return; } }else{ //cout << "ENTRIES VACIAS" << BN_bn2hex((*tlc)->pid) << endl; return; } //cout << "REP- Entry " << BN_bn2hex(e->hashValue ) <<" - " << e->frequency<< endl; if(debug){cout << "REP- Entry " << BN_bn2dec(e->hashValue ) <<" - " << e->frequency<< endl;} for(int i = 0 ; (unsigned) i < ls.size(); i++) { if(!isReplicated(ls[i]->getNodeID(), e->hashValue)) { //Send Replication message to leafset node //Entry e over nodes // cout << "REP - FOR" << endl; e->isReplicated = true; if(debug){cout << "REP- Tracking Replica"<< endl;} //Guardamos quienes son las replicas? trackReplica(ls[i]->getNodeID(), e->hashValue); if(debug){cout << "REP- Sending Replica"<<endl;} //Send Replication Message sendReplica( e->clone() , ls[i]); } } } void TlcProtocol::replicateBubble() { int debug=0; // Sort vector entries by freq sort(entries.begin(), entries.end(), compare); vector< Entry*>::iterator it; it = entries.begin(); if(debug){cout <<"----------------------ENTRIES------------------------------"<< endl; while(it != entries.end()) { if(debug){cout << BN_bn2hex((*it) ->hashValue)<<" - " <<(*it)->frequency << endl;} ++it; } } //Most frequent query //Search for the first not replicated entry Entry *e = NULL; int j = 0; if(entries.size()>0){ do{ e = entries[j]; j++; }while(entries.size() > (unsigned) j && e->isReplicated); if(e->isReplicated){ //cout << "NO SE PUEDE REPLICAR MAS..."<<endl; return; } }else{ //cout <<"ENTRIES VACIAS!!"<< endl; return; } // if(e==NULL) // cout << "ENTRY NULL!!" <<endl; //Which inlinks forwards the entry e // list ??? inlinks vector<Inlink*> list; map<BIGNUM*, Inlink*>::iterator it2; it2 = inlinks.begin(); //cout << "INLINK - Size: " << (*tlc)->inlinks.size() << endl ; // cout << "Entry: " << BN_bn2hex( e->hashValue) << endl; while(it2 != inlinks.end()) { // cout<< "Inlink : "<< BN_bn2hex(((it2->second)->getInlinkID())->getNodeID() )<< endl; if(( it2-> second)->isKeyContained(e->hashValue) ) { //terminar //push inlink to list // cout << "Entry Contained!!" << endl; list.push_back(it2->second ); } ++it2; } sort( list.begin(), list.end(), sorter(e->hashValue)); //DEBUG vector< Inlink*>::iterator it3; it3 = list.begin(); if(debug){cout <<"----------------------INLINKS------------------------------"<< endl; while(it3 != list.end()) { {cout << BN_bn2hex( ((*it3)->getInlinkID())->getNodeID() )<< " - " <<(*it3)->getFrequency(e->hashValue) << endl; } ++it3; } } unsigned int index = 0 ; // cout << "REP - list Size " << list.size() << endl; while(index < list.size()) { if(!isReplicated(list[index]->getInlinkID()->getNodeID(), e->hashValue) && list[index]->getFrequency(e->hashValue) > 0) { e->isReplicated = true; //Guardamos quienes son las replicas trackReplica((list[index]->getInlinkID())->getNodeID(), e->hashValue); // Replica Send sendReplica( e->clone() , list[index]->getInlinkID()); } index++; } }
4d09784896ddc303eb4918dc22425a054db4445d
29b0951ea3d62ab2a0f79fcdc553a9f07cbbf1f9
/include/ORBExtractor.h
56fa2daf8a521b2df6b66ed8183d4975c52603b1
[ "MIT" ]
permissive
BytesRobotics/bytes-orb-slam
ad700d3f59755a14a7ff38ea301379d9ce09b552
640df6266cda337f1b1831d56808122dee3bc6cf
refs/heads/master
2021-05-21T09:18:32.081736
2020-04-18T05:22:23
2020-04-18T05:22:23
252,633,990
1
0
null
null
null
null
UTF-8
C++
false
false
7,548
h
ORBExtractor.h
// // Created by michael on 4/5/20. // Property of Bytes Robotics, LLC // #ifndef BR_SLAM_ORBEXTRACTOR_H #define BR_SLAM_ORBEXTRACTOR_H // Standard C++ #include <chrono> #include <thread> #include <iostream> // ROS2 #include <rclcpp/rclcpp.hpp> #include <rclcpp_components/register_node_macro.hpp> #include <sensor_msgs/msg/camera_info.hpp> #include <image_geometry/stereo_camera_model.h> #include <sensor_msgs/msg/point_cloud2.hpp> #include <sensor_msgs/msg/point_field.hpp> // OpenCV #include <opencv2/core/core.hpp> #include <opencv2/opencv.hpp> #include <opencv2/features2d.hpp> #include <opencv2/core/cvstd.hpp> // Other #include "Frame.h" /** * The ORB Extractor class is an easy interface that allows stereo images to be processed with access to tools * for debugging and optimizing the ORB parameters. The typical output from the extractor is a nx3 cv::Mat that * contains 3D coordinates references from the left camera and a nx32 list of descriptor for each point. * * The following represent the coordinate system used for extracting to ORB features in 3D from a stereo pair. Basically * everything is referenced from the left cameras optical center * *\ --------* / / * \ | x / / * \ z| \/ / * \____|_____/ \__________/ * | | | | * | | | | * | left | | right | * | camera | | camera | * * y is the unseen axis and is more positive when moving down the left camera's plane * x is more positive when moving more toward the right * z is more positive when the pixel is farther away from the camera * * the units of x, y, and z are provided in meters and therefore require camera info to compute the z = focal_length*baseline/disparity * * This class is also ROS2 native and takes advantage of the ROS2 parameter server to make all parameters dynamically reconfigurable * through the ROS2 parameter API */ class ORBExtractor{ public: /** * Initialize the ORB extractor and * * @param node A reference to the byes SLAM node * @param nfeatures The maximum number of features to retain. * @param Pyramid decimation ratio, greater than 1. scaleFactor==2 means the classical pyramid, where each next * level has 4x less pixels than the previous, but such a big scale factor will degrade feature matching scores * dramatically. On the other hand, too close to 1 scale factor will mean that to cover certain scale range you * will need more pyramid levels and so the speed will suffer. * @param nlevels The number of pyramid levels. The smallest level will have linear size equal to * input_image_linear_size/pow(scaleFactor, nlevels - firstLevel). * @param edgeThreshold This is size of the border where the features are not detected. It should roughly match the patchSize parameter. * @param firstLevel The level of pyramid to put source image to. Previous layers are filled with upscaled source image. * @param WTA_K The number of points that produce each element of the oriented BRIEF descriptor. The default value 2 * means the BRIEF where we take a random point pair and compare their brightnesses, so we get 0/1 response. Other * possible values are 3 and 4. For example, 3 means that we take 3 random points (of course, those point coordinates * are random, but they are generated from the pre-defined seed, so each element of BRIEF descriptor is computed * deterministically from the pixel rectangle), find point of maximum brightness and output index of the winner (0, 1 or 2). * Such output will occupy 2 bits, and therefore it will need a special variant of Hamming distance, denoted as NORM_HAMMING2 * (2 bits per bin). When WTA_K=4, we take 4 random points to compute each bin (that will also occupy 2 bits with * possible values 0, 1, 2 or 3). * @param scoreType The default HARRIS_SCORE means that Harris algorithm is used to rank features (the score is * written to KeyPoint::score and is used to retain best nfeatures features); FAST_SCORE is alternative value of * the parameter that produces slightly less stable keypoints, but it is a little faster to compute. * @param patchSize size of the patch used by the oriented BRIEF descriptor. Of course, * on smaller pyramid layers the perceived image area covered by a feature will be larger. * @param fastThreshold the fast threshold * @param debug enables printing the time stamps of the algorithm and other meta information */ ORBExtractor(std::shared_ptr<rclcpp::Node> node, int nfeatures=1000, float scaleFactor=1.5f, int nlevels=5, int edgeThreshold=19, int firstLevel=0, int WTA_K=2, cv::ORB::ScoreType scoreType=cv::ORB::FAST_SCORE, int patchSize=19, int fastThreshold=30, bool debug=false, float tolerance=0, int matchThreshold=30); /** * This is the main function to be called for converting two grayscale images into * a matrix of x,y,z points + descriptions * * @param imLeft Left grayscale image * @param imRight Right grayscale image */ std::shared_ptr<Frame> extract(const cv::Mat &img_left, const cv::Mat &img_right, image_geometry::StereoCameraModel& stereo_camera_model); private: /// For this ORB extractor we use the default Opencv cv::ORB algorithm (Eventually implement cv::cuda::ORB) cv::Ptr<cv::ORB> orb_; /// Allow for important ORB related parameters to be dynamically configured rclcpp::AsyncParametersClient::SharedPtr parameters_client_; rclcpp::Subscription<rcl_interfaces::msg::ParameterEvent>::SharedPtr parameter_event_sub_; /// Hold onto the main node pointer for logging and parameters std::shared_ptr<rclcpp::Node> node_; /// State variables that update each time extract is called std::vector<cv::KeyPoint> left_key_pts_, right_key_pts_; //! key features for each image prior to cross check (n) cv::Mat left_descriptors_, right_descriptors_; //! descriptors for each key feature (nx32) /// Variables for storing all the parameters from the ROS2 int n_features_; float scale_factor_; int n_levels_; int edge_threshold_; int first_level_; int WTA_K_; cv::ORB::ScoreType score_type_; int patch_size_; int fast_threshold_; bool debug_; double match_threshold_; // The maximum distance between two matching points float match_tolerance_; // The vertical space to check for points /** Use Epipolar geometry of cameras to reduce the number of keypoints we care about * @param frame The frame that stores all the match information can be used for tracking the motion of the camera * @param threshold The match threshold to determine if the point is close enough to the one in the other image **/ void find_relevant_features_(const std::shared_ptr<Frame>& frame); void compute_xyz_(const std::shared_ptr<Frame>& frame, image_geometry::StereoCameraModel& stereo_camera_model); /// Variables for monitoring the time of each step in the ORB extractor std::chrono::steady_clock::time_point orb_start_, orb_stop_, match_start_, match_stop_, xyz_start_, xyz_stop_; double aggregate_total_time_; int iterations_; /// We can publish a point cloud for visualization in RVIZ during debug mode with this publisher rclcpp::Publisher<sensor_msgs::msg::PointCloud2>::SharedPtr point_cloud_pub_; }; #endif //BR_SLAM_ORBEXTRACTOR_H
cb4d4c98baf055cc06cdd337a61ba062073d18b7
96976a2c205d679261aa6ff6cd0db286c43ee350
/src/core/analysis/mcmc/output/Trace.h
3130038d50133827c17dbddf6cb145628332906e
[]
no_license
sundsx/RevBayes
f99305df6b72bd70039b046d5131c76557e53366
13e59c59512377783673d3b98c196e8eda6fedee
refs/heads/master
2020-04-06T06:29:46.557485
2014-07-26T14:26:57
2014-07-26T14:26:57
36,248,250
0
1
null
2015-05-25T18:44:13
2015-05-25T18:44:13
null
UTF-8
C++
false
false
7,418
h
Trace.h
// // Trace.h // RevBayesGui // // This class implements a single trace for a single parameter. It contains a mutable array of values // and additional meta information about the trace. // // Created by Sebastian Hoehna on 3/24/11. // Copyright 2011 __MyCompanyName__. All rights reserved. // #ifndef Trace_H #define Trace_H #include <string> #include <vector> namespace RevBayesCore { #define FAILED 0 #define PASSED 1 #define NOT_CHECKED 2 class Trace { public: Trace(void); bool operator==(const Trace &t) const { return this == &t; } bool operator!=(const Trace &t) const { return !this->operator==( t ); } bool operator<(const Trace &t) const { return this < &t; } // overloaded functions from RbObject Trace* clone(void) const; //!< Clone object void addObject(double d); void computeStatistics(void); double objectAt(size_t index) { return values.at(index); } void removeLastObject(); void removeObjectAtIndex(int index); size_t size() { return values.size(); } // getters and setters size_t getBurnin() { return burnin; } double getEss() { return ess; } std::string getFileName() { return fileName; } double getMean() { return mean; } double getMedian() { return median; } const std::string& getParameterName() const { return parmName; } size_t getSamples() { return values.size(); } double getSem() { return sem; } size_t getStepSize() { return stepSize; } std::vector<double> getValues() { return values; } const std::vector<double>& getValues() const { return values; } int hasConverged() { return converged; } int hasPassedEssThreshold() { return passedEssThreshold; } int hasPassedGelmanRubinTest() { return passedGelmanRubinTest; } int hasPassedGewekeTest() { return passedGewekeTest; } int hasPassedIidBetweenChainsStatistic() { return passedIidBetweenChainsStatistic; } int hasPassedSemThreshold() { return passedSemThreshold; } int hasPassedStationarityTest() { return passedStationarityTest; } void setBurnin(size_t b) { burnin = b; } void setEss(double e) { ess = e; } void setFileName(std::string fn) { fileName = fn; } void setMean(double m) { mean = m; } void setMedian(double m) { median = m; } void setParameterName(std::string pm) { parmName = pm; } void setSem(double s) { sem = s; } void setStepSize( size_t s) { stepSize = s; } void setValues(std::vector<double> v) { values = v; } void setConverged(bool c) { converged = c; } void setPassedEssThreshold(int p) { passedEssThreshold = p; } void setPassedGelmanRubinTest(int p) { passedGelmanRubinTest = p; } void setPassedGewekeTest(int p) { passedGewekeTest = p; } void setPassedIidBetweenChainsStatistic(int p) { passedIidBetweenChainsStatistic = p; } void setPassedSemThreshold(int p) { passedSemThreshold = p; } void setPassedStationarityTest(int p) { passedStationarityTest = p; } protected: void invalidate(); private: std::vector<double> values; //!< the values of this trace std::string parmName; std::string fileName; size_t burnin; double ess; //!< the effective sample saize for this trace double mean; //!< the mean value for this trace double median; //!< the median of the trace double sem; //!< the standard error of the mean size_t stepSize; //!< the step size between samples int converged; //!< Whether this parameter in itself has converged. int passedStationarityTest; //!< Whether this parameter passed the stationarity test. int passedGewekeTest; //!< Whether this parameter passed the Geweke statistic. // int passedHeidelbergerWelcheStatistic; //!< Whether this parameter passed the Heidelberger-Welch statistic. int passedEssThreshold; //!< Whether this parameter passed the threshold for the ESS. int passedSemThreshold; //!< Whether this parameter passed the threshold for the SEM. int passedIidBetweenChainsStatistic; //!< Whether this parameter passed the iid test of chains. int passedGelmanRubinTest; //!< Whether this parameter passed the Gelman-Rubin statistic. }; // Global functions using the class std::ostream& operator<<(std::ostream& o, const Trace& x); //!< Overloaded output operator } #endif
5caf437b930f3713b92a045f2093df1b12b3eac2
1fb357bb753988011e0f20c4ca8ec6227516b84b
/LHPC/source/LHEF/AutomaticEventFilter.cpp
e466e8daa1c268c392550a81d34c20bf0c6451e8
[ "DOC" ]
permissive
silvest/HEPfit
4240dcb05938596558394e97131872269cfa470e
cbda386f893ed9d8d2d3e6b35c0e81ec056b65d2
refs/heads/master
2023-08-05T08:22:20.891324
2023-05-19T09:12:45
2023-05-19T09:12:45
5,481,938
18
11
null
2022-05-15T19:53:40
2012-08-20T14:03:58
C++
UTF-8
C++
false
false
818
cpp
AutomaticEventFilter.cpp
/* * AutomaticEventFilter.cpp * * Created on: Jan 26, 2012 * Author: Ben O'Leary (benjamin.oleary@gmail.com) * Copyright 2012 Ben O'Leary * * This file is part of LesHouchesParserClasses, released under the * GNU General Public License. Please see the accompanying * README.LHPC_CPP.txt file for a full list of files, brief documentation * on how to use these classes, and further details on the license. */ #include "LHEF.hpp" namespace LHPC { namespace LHEF { AutomaticEventFilter::AutomaticEventFilter() : filteredLines(), filterRules(), numberOfRules( 0 ), rulesToPass( numberOfRules ) { // just an initialization list. } AutomaticEventFilter::~AutomaticEventFilter() { // does nothing. } } }
fc185e003f37660bfd3533ceb147692d11981a25
e8a873c7c52d6f82682324945dc74d4828b1a1db
/Hmwk/Assignment_2/Savitch_9thEd_Chap2_Projs_Prob15_Material_Temp/main.cpp
b249cc5ff965001bce1bbe4d8ad9d561573da15f
[]
no_license
KyungJinShin/ShinKyungJin_CSC_CIS_5-Winter_2018
5745b32e00b82e852ea514cc00d4a6e07f438495
9162dc3eda3737366756092153cbd8dedbc3a635
refs/heads/master
2021-05-12T04:06:28.671726
2018-02-10T16:07:29
2018-02-10T16:07:29
117,151,992
0
0
null
null
null
null
UTF-8
C++
false
false
1,481
cpp
main.cpp
/* * File: main.cpp * Author: KyungJin Shin * Created on January 10, 2018, 5:13 PM * Purpose: Calculate temperature */ //system Libraries #include <iostream> using namespace std; //User Libraries //Global Constants - Math/Physics Constants, Conversions, // 2-D Array Dimensions //Function Prototypes //Execution Begins Here int main(int argc, char** argv) { //Declare Variables float inLent, //Initial length of the material in meters dispmt, //Displacement in meters alpha, //4 values for different materials(Alumium, Copper, Glass, Steel) cTemp; //Change in temperature in Celsius //Initialize Variables //Process/Map inputs to outputs cout<<"This program calculates displacement of 4 different materials"<<endl; cout<<"Input the material NUMBER following 4 different options"<<endl; cout<<"Aluminum = 2.31e-5, Copper = 1.70e-5, Glass = 8.50e-6, Steel = 1.20e-5 "<<endl; cin>>alpha; cout<<"Enter initial length of the material in meters "<<endl; cin>>inLent; cout<<"Enter the change in temperature in Celsius"<<endl; cin>>cTemp; dispmt= alpha*inLent*cTemp; //Output data if (dispmt>0) { cout<<"The material will expand by "<<dispmt<<endl; }else { cout<<"The material will contract by "<<dispmt*-1<<endl; //It shouldn't output the displacement as a negative number } //Exit stage right! return 0; }
872239996bc9d11ab9b8d8d3877693743d34a582
ab1fce3ffe1716aecc95b206b2052c612820415f
/lab2/miniDict/miniDict/Dictionary.cpp
d280dd59dac6a7052cbbfd58aefa856ab5cca6fa
[]
no_license
intmpg/OOP
f03ca825db97d27f902a9aca1b9eab57f6480f07
7efc33a2048d851f8cc42f3c54a7d3cfabe5686f
refs/heads/master
2021-01-10T10:21:58.081999
2016-11-10T14:25:36
2016-11-10T14:25:36
52,512,491
0
0
null
null
null
null
UTF-8
C++
false
false
1,603
cpp
Dictionary.cpp
#include "stdafx.h" #include "Dictionary.h" CDictionary::CDictionary() { m_dictionaryFile = DIC_FILE; LoadDictionary(); } void CDictionary::AddNewWord(std::string const& englishWord, std::string const& russianWord) { m_dictionaryList.insert({ englishWord, russianWord }); m_newCollocations.push_back(englishWord + "=" + russianWord); std::cout << FINISH_ADD_WORD_STRING << russianWord << std::endl; } bool CDictionary::FindWord(std::string const& englishWord) const { auto word = m_dictionaryList.find(englishWord); if (word == m_dictionaryList.end()) { return false; } std::cout << word->second << std::endl; return true; } Collocation SplitPairOfWords(std::string const& line) { std::vector<std::string> words; boost::split(words, line, boost::is_any_of(DELIMITER)); std::string rusWord; std::string engWord; if (words.size() >= 2) { rusWord = words[1]; engWord = words[0]; } return Collocation(engWord, rusWord); } void CDictionary::LoadDictionary() { std::string line; std::ifstream dictInputFile(m_dictionaryFile); while (std::getline(dictInputFile, line)) { m_dictionaryList.insert(SplitPairOfWords(line)); } dictInputFile.close(); } void CDictionary::SaveChanges() const { std::ofstream dictFile(m_dictionaryFile, std::ios_base::app); for (auto &it : m_newCollocations) { dictFile << it << std::endl; } dictFile.close(); } void CDictionary::DictionarySave() const { if (!m_newCollocations.empty()) { SaveChanges(); } } void CDictionary::SetDictionaryFile(std::string const& fileName) { m_dictionaryFile = fileName; LoadDictionary(); }