text
stringlengths
1
22.8M
Adelaide C. Eckardt (born September 8, 1943) is an American politician who was a member of the Maryland Senate, representing District 37. Background Adelaide C. Eckardt was first elected in 1994 to represent the new District 37B. District 37B covers parts of Caroline, Dorchester, Talbot, & Wicomico counties. She defeated Democratic incumbent Robert Alan Thornton Jr. and served with fellow Republican Kenneth D. Schisler. She ran in 1990, but was defeated by Kenneth D. Schisler, Robert Alan Thornton Jr., and Democrat Samuel Q. Johnson III. In 1998, Eckardt was reelected along with Schisler. Again in 2002, Eckardt and Schisler won with little competition. Finally, in 2006, Eckardt won reelection, this time with fellow Republican, Jeannie Haddaway. Schisler was appointed to the chair of the Maryland Public Service Commission by Governor Bob Ehrlich in May 2003. Education Like fellow House Republican Mary Roe Walkup, Eckardt got her career start in nursing. Eckardt attended Bryn Mawr Hospital School of Nursing and received her R.N. degree. She later attended the University of Maryland, Baltimore School of Nursing attaining her B.S. in 1978, and later her M.S. in 1981. She practiced as a Registered Nurse-Psychiatric Clinical Nurse Specialist. Career A few years later, Eckardt became an adjunct member of the faculty at Salisbury State University. Later that same year, she became a Psychiatric Nurse Clinical Specialist at Eastern Shore Hospital Center and worked there until 2003. During that same time, she also served as an adjunct member of the faculty at the University of Maryland School of Nursing. She remained on the faculty from 1991 to 1999. Eckardt's remained active in her field, but shifted to a more administrative and legislative role. She joined the Executive Committee of the Maryland Hospital Association in 1993 and has served on the Board of Directors for Leadership Maryland, Inc., a non-profit organization committed to the betterment of Maryland, since 2001. Currently, Eckardt is a board member of the Chesapeake Health Planning Systems, a member of the Maryland Nurses Association, the American Nurses Association, the American Ortho-Psychiatric Association, and Sigma Theta Tau, the honor society of nursing. She is a past recipient of the Psychiatric Nursing Award from the University of Maryland Graduate School of Nursing in 1981. In 1986 and again in 1991, Eckard was named Nurse of the Year, District 4, by the Maryland Nurses Association. In 1988, she won the Rosalie S. Abrams Legislative Award from the Maryland Nurses Association. She received the Outstanding Board Member Award from the Maryland Nurses Association in 1992. Later she received the Outstanding Rural Legislator Award from the Rural Maryland Council in 2003. Additionally in 2003, she received recognition for her efforts from Local Management Board. Finally, she was listed as a member of Maryland's Top 100 Women by the Daily Record, a local newspaper, in 2003, 2005, and 2007. In July 2022, Eckardt was defeated in the Republican primary by state delegate Johnny Mautz. Following her defeat, she announced on July 25, 2022, that she would run in the Cambridge mayoral special election on August 23, 2022. No candidate received the majority of the vote, forcing a runoff between Eckardt and former Cambridge commissioner Steve Rideout on September 20, 2022. She was defeated by Rideout 55%-45%. In November 2022, Governor-elect Wes Moore announced that Eckardt would serve on the steering committee of his transition team. Legislative notes voted against the Clean Indoor Air Act of 2007 (HB359) voted for the Healthy Air Act in 2006(SB154) voted for slots in 2005 (HB1361) voted for electric deregulation in 1999 (HB703) voted against in-state tuition for illegal immigrants in 2007 (HB6) voted against police transparency in 2021 (HB1090) Election results 2006 Race for Maryland House of Delegates – District 37B Voters to choose two: {| class="wikitable" !Name !Votes !Percent !Outcome |- |- |Adelaide C. Eckardt, Rep. |19,980 |  34.5% |   Won |- |- |Jeannie Haddaway, Rep. |18,677 |  32.2% |   Won |- |- |James A. Adkins, Dem. |9,640 |  16.6% |   Lost |- |- |Tim Quinn, Dem. |9,588 |  16.6% |   Lost |- |Other Write-Ins |34 |  0.1% |   Lost |} 2002 Race for Maryland House of Delegates – District 37B Voters to choose two: {| class="wikitable" !Name !Votes !Percent !Outcome |- |- |Adelaide C. Eckardt, Rep. |21,100 |  50.2% |   Won |- |- |Kenneth D. Schisler, Rep. |20,718 |  49.3% |   Won |- |Other Write-Ins |200 |  0.5% |   Lost |} 1998 Race for Maryland House of Delegates – District 37B Voters to choose two: {| class="wikitable" !Name !Votes !Percent !Outcome |- |- |Adelaide C. Eckardt, Rep. |16,558 |  42% |   Won |- |- |Kenneth D. Schisler, Rep. |15,604 |  40% |   Won |- |- |William Steven Brohawn, Dem. |7,340 |  19% |   Lost |} 1994 Race for Maryland House of Delegates – District 37B Voters to choose two: {| class="wikitable" !Name !Votes !Percent !Outcome |- |- |Adelaide C. Eckardt, Rep. |11,422 |  27% |   Won |- |- |Kenneth D. Schisler, Rep. |14,992 |  35% |   Won |- |- |Philip Carey Foster, Dem. |6,618 |  16% |   Lost |- |- |Robert Alan Thornton Jr, Dem. |9,240 |  22% |   Lost |- |} 1990 Race for Maryland House of Delegates – District 37 Voters to choose three: {| class="wikitable" !Name !Votes !Percent !Outcome |- |- |Samuel Q. Johnson, Dem. |12,803 |  23% |   Won |- |- |Kenneth D. Schisler, Rep. |11,096 |  20% |   Won |- |- |Robert Alan Thornton Jr, Dem. |12,480 |  23% |   Won |- |- |Adelaide C. Eckardt, Rep. |9,559 |  17% |   Lost |- |- |Don William Bradley, Dem. |9,210 |  17% |   Lost |- |} References and notes External links 1943 births Living people People from Bryn Mawr, Pennsylvania University of Maryland, Baltimore alumni Republican Party Maryland state senators Republican Party members of the Maryland House of Delegates Women state legislators in Maryland University of Maryland, College Park faculty Salisbury University faculty 21st-century American politicians 21st-century American women politicians
```xml /* * one or more contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright ownership. */ import {EventCallback} from 'dmn-js-shared/lib/base/Manager'; import { append as svgAppend, attr as svgAttr, create as svgCreate, } from 'tiny-svg'; const OFFSET = 4; function Outline(eventBus: {on: EventCallback}) { eventBus.on('shape.added', (event) => { const element = event.element; const gfx = event.gfx; const outline = svgCreate('rect'); svgAttr(outline, { fill: 'none', class: 'djs-outline', x: -OFFSET, y: -OFFSET, width: element.width + OFFSET * 2, height: element.height + OFFSET * 2, }); svgAppend(gfx, outline); }); } Outline.$inject = ['eventBus']; const OutlineModule = {outline: ['type', Outline]}; export {OutlineModule}; ```
```java * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ package org.flowable.spring.boot.process; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.springframework.beans.factory.annotation.Qualifier; /** * Qualifier annotation for beans that need to be injected for Process Configurations. * <p> * This can be used when one wants to provide a dedicated {@link org.flowable.spring.job.service.SpringAsyncExecutor} for the process engine. * * @author Joram Barrez */ @Target({ ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER, ElementType.TYPE, ElementType.ANNOTATION_TYPE }) @Retention(RetentionPolicy.RUNTIME) @Documented @Qualifier public @interface ProcessAsync { } ```
Karl Rhein (30 March 1894 – 27 March 1988) was a German general (Generalleutnant) in the Wehrmacht during World War II. He was a recipient of the Knight's Cross of the Iron Cross of Nazi Germany. Awards Knight's Cross of the Iron Cross on 6 March 1942 as Oberst and commander of Infanterie-Regiment 439 References Citations Bibliography 1894 births 1988 deaths Lieutenant generals of the German Army (Wehrmacht) People from Wetzlar German Army personnel of World War I Recipients of the clasp to the Iron Cross, 1st class Recipients of the Gold German Cross Recipients of the Knight's Cross of the Iron Cross Military personnel from the Rhine Province Reichswehr personnel Prussian Army personnel Military personnel from Hesse-Nassau Military personnel from Hesse German Army generals of World War II
Gemmula polita is an extinct species of sea snail, a marine gastropod mollusk in the family Turridae, the turrids. Description Distribution Fossils of this marine species have been found in New Zealand. References Marshall, P. (1919). Fauna of the Hampden beds and classification of the Oamaru system. Transactions of the New Zealand Institute. 51: 226–250. Maxwell, P.A. (2009). Cenozoic Mollusca. pp 232–254 in Gordon, D.P. (ed.) New Zealand inventory of biodiversity. Volume one. Kingdom Animalia: Radiata, Lophotrochozoa, Deuterostomia. Canterbury University Press, Christchurch polita Gastropods described in 1919 Gastropods of New Zealand
```xml import { SourceResolver } from '../src/source-resolver'; import { expect } from 'chai'; import { describe, it } from 'mocha'; describe('SourceResolver', () => { it('should be constructible', () => { const a: SourceResolver = new SourceResolver(); expect(a.sources.length).to.equal(0); }); }); ```
```xml import $ from 'jquery'; import {svg} from '../svg.ts'; import {invertFileFolding} from './file-fold.ts'; import {createTippy} from '../modules/tippy.ts'; import {clippie} from 'clippie'; import {toAbsoluteUrl} from '../utils.ts'; export const singleAnchorRegex = /^#(L|n)([1-9][0-9]*)$/; export const rangeAnchorRegex = /^#(L[1-9][0-9]*)-(L[1-9][0-9]*)$/; function changeHash(hash) { if (window.history.pushState) { window.history.pushState(null, null, hash); } else { window.location.hash = hash; } } function isBlame() { return Boolean(document.querySelector('div.blame')); } function getLineEls() { return document.querySelectorAll(`.code-view td.lines-code${isBlame() ? '.blame-code' : ''}`); } function selectRange($linesEls, $selectionEndEl, $selectionStartEls) { for (const el of $linesEls) { el.closest('tr').classList.remove('active'); } // add hashchange to permalink const refInNewIssue = document.querySelector('a.ref-in-new-issue'); const copyPermalink = document.querySelector('a.copy-line-permalink'); const viewGitBlame = document.querySelector('a.view_git_blame'); const updateIssueHref = function (anchor) { if (!refInNewIssue) return; const urlIssueNew = refInNewIssue.getAttribute('data-url-issue-new'); const urlParamBodyLink = refInNewIssue.getAttribute('data-url-param-body-link'); const issueContent = `${toAbsoluteUrl(urlParamBodyLink)}#${anchor}`; // the default content for issue body refInNewIssue.setAttribute('href', `${urlIssueNew}?body=${encodeURIComponent(issueContent)}`); }; const updateViewGitBlameFragment = function (anchor) { if (!viewGitBlame) return; let href = viewGitBlame.getAttribute('href'); href = `${href.replace(/#L\d+$|#L\d+-L\d+$/, '')}`; if (anchor.length !== 0) { href = `${href}#${anchor}`; } viewGitBlame.setAttribute('href', href); }; const updateCopyPermalinkUrl = function (anchor) { if (!copyPermalink) return; let link = copyPermalink.getAttribute('data-url'); link = `${link.replace(/#L\d+$|#L\d+-L\d+$/, '')}#${anchor}`; copyPermalink.setAttribute('data-url', link); }; if ($selectionStartEls) { let a = parseInt($selectionEndEl[0].getAttribute('rel').slice(1)); let b = parseInt($selectionStartEls[0].getAttribute('rel').slice(1)); let c; if (a !== b) { if (a > b) { c = a; a = b; b = c; } const classes = []; for (let i = a; i <= b; i++) { classes.push(`[rel=L${i}]`); } $linesEls.filter(classes.join(',')).each(function () { this.closest('tr').classList.add('active'); }); changeHash(`#L${a}-L${b}`); updateIssueHref(`L${a}-L${b}`); updateViewGitBlameFragment(`L${a}-L${b}`); updateCopyPermalinkUrl(`L${a}-L${b}`); return; } } $selectionEndEl[0].closest('tr').classList.add('active'); changeHash(`#${$selectionEndEl[0].getAttribute('rel')}`); updateIssueHref($selectionEndEl[0].getAttribute('rel')); updateViewGitBlameFragment($selectionEndEl[0].getAttribute('rel')); updateCopyPermalinkUrl($selectionEndEl[0].getAttribute('rel')); } function showLineButton() { const menu = document.querySelector('.code-line-menu'); if (!menu) return; // remove all other line buttons for (const el of document.querySelectorAll('.code-line-button')) { el.remove(); } // find active row and add button const tr = document.querySelector('.code-view tr.active'); const td = tr.querySelector('td.lines-num'); const btn = document.createElement('button'); btn.classList.add('code-line-button', 'ui', 'basic', 'button'); btn.innerHTML = svg('octicon-kebab-horizontal'); td.prepend(btn); // put a copy of the menu back into DOM for the next click btn.closest('.code-view').append(menu.cloneNode(true)); createTippy(btn, { theme: 'menu', trigger: 'click', hideOnClick: true, content: menu, placement: 'right-start', interactive: true, onShow: (tippy) => { tippy.popper.addEventListener('click', () => { tippy.hide(); }, {once: true}); }, }); } export function initRepoCodeView() { if ($('.code-view .lines-num').length > 0) { $(document).on('click', '.lines-num span', function (e) { const linesEls = getLineEls(); const selectedEls = Array.from(linesEls).filter((el) => { return el.matches(`[rel=${this.getAttribute('id')}]`); }); let from; if (e.shiftKey) { from = Array.from(linesEls).filter((el) => { return el.closest('tr').classList.contains('active'); }); } selectRange($(linesEls), $(selectedEls), from ? $(from) : null); if (window.getSelection) { window.getSelection().removeAllRanges(); } else { document.selection.empty(); } showLineButton(); }); $(window).on('hashchange', () => { let m = rangeAnchorRegex.exec(window.location.hash); const $linesEls = $(getLineEls()); let $first; if (m) { $first = $linesEls.filter(`[rel=${m[1]}]`); if ($first.length) { selectRange($linesEls, $first, $linesEls.filter(`[rel=${m[2]}]`)); // show code view menu marker (don't show in blame page) if (!isBlame()) { showLineButton(); } $('html, body').scrollTop($first.offset().top - 200); return; } } m = singleAnchorRegex.exec(window.location.hash); if (m) { $first = $linesEls.filter(`[rel=L${m[2]}]`); if ($first.length) { selectRange($linesEls, $first); // show code view menu marker (don't show in blame page) if (!isBlame()) { showLineButton(); } $('html, body').scrollTop($first.offset().top - 200); } } }).trigger('hashchange'); } $(document).on('click', '.fold-file', ({currentTarget}) => { invertFileFolding(currentTarget.closest('.file-content'), currentTarget); }); $(document).on('click', '.copy-line-permalink', async ({currentTarget}) => { await clippie(toAbsoluteUrl(currentTarget.getAttribute('data-url'))); }); } ```
```objective-c #ifndef WOTSX4_H_ #define WOTSX4_H_ #include <string.h> #include "params.h" /* * This is here to provide an interface to the internal wots_gen_leafx4 * routine. While this routine is not referenced in the package outside of * wots.c, it is called from the stand-alone benchmark code to characterize * the performance */ struct leaf_info_x4 { unsigned char *wots_sig; uint32_t wots_sign_leaf; /* The index of the WOTS we're using to sign */ uint32_t *wots_steps; uint32_t leaf_addr[4 * 8]; uint32_t pk_addr[4 * 8]; }; /* Macro to set the leaf_info to something 'benign', that is, it would */ /* run with the same time as it does during the real signing process */ /* Used only by the benchmark code */ #define INITIALIZE_LEAF_INFO_X4(info, addr, step_buffer) { \ (info).wots_sig = 0; \ (info).wots_sign_leaf = ~0; \ (info).wots_steps = step_buffer; \ int i; \ for (i=0; i<4; i++) { \ memcpy( &(info).leaf_addr[8*i], addr, 32 ); \ memcpy( &(info).pk_addr[8*i], addr, 32 ); \ } \ } #define wots_gen_leafx4 SPX_NAMESPACE(wots_gen_leafx4) void wots_gen_leafx4(unsigned char *dest, const spx_ctx *ctx, uint32_t leaf_idx, void *v_info); #endif /* WOTSX4_H_ */ ```
```java /* * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ package org.apache.shardingsphere.infra.rule; import org.apache.shardingsphere.infra.config.rule.RuleConfiguration; import org.apache.shardingsphere.infra.rule.attribute.RuleAttributes; /** * ShardingSphere rule. */ public interface ShardingSphereRule { /** * Get rule configuration. * * @return rule configuration */ RuleConfiguration getConfiguration(); /** * Get rule attributes. * * @return rule attributes */ default RuleAttributes getAttributes() { return new RuleAttributes(); } } ```
Alexander Grimm (born 6 September 1986 in Augsburg) is a German slalom canoeist who has competed at the international level since 2002. Grimm won a gold medal in the K1 event at the 2008 Summer Olympics in Beijing. He also won three gold medals in the K1 team event at the ICF Canoe Slalom World Championships, earning them in 2007, 2010 and 2011. He won a total of eight medals at the European Championships (2 golds, 5 silvers and 1 bronze). Grimm won the 2009 Adidas Sickline whitewater extreme race, despite having little previous experience of extreme whitewater or indeed of paddling the creekboats used to enhance paddler safety. His younger sister Michaela has also represented Germany in canoe slalom. World Cup individual podiums 1 Pan American Championship counting for World Cup points References 42-83 from Medal Winners ICF updated 2007.pdf?MenuID=Results/1107/0,Medal_winners_since_1936/1510/0 ICF medalists for Olympic and World Championships - Part 2: rest of flatwater (now sprint) and remaining canoeing disciplines: 1936-2007. External links Official website 1986 births Canoeists at the 2008 Summer Olympics German male canoeists Living people Olympic canoeists for Germany Olympic gold medalists for Germany Sportspeople from Augsburg Olympic medalists in canoeing Medalists at the 2008 Summer Olympics Medalists at the ICF Canoe Slalom World Championships
Nakhlestan Rural District () is in the Central District of Kahnuj County, Kerman province, Iran. Its capital is the village of Zeh. At the National Census of 2006, its population was 21,602 in 4,571 households. There were 14,339 inhabitants in 3,587 households at the following census of 2011. At the most recent census of 2016, the population of the rural district was 16,262 in 4,468 households. The largest of its 59 villages was Golestan, with 1,221 people. References Kahnuj County Rural Districts of Kerman Province Populated places in Kerman Province Populated places in Kahnuj County
is a Serbian humorous comic book series published only in Serbia. Founded by Marko Todosijević (Mrvax) in 2005, in Belgrade, Serbia, it was largely expanded and shaped in its own direction over the following eight years. From 2006 to 2012 it was supported by the Shlitz Comics group with additional support from the Šumatovčka art school. Information (English: Goffies /ˈɡuː.fi~es/) is a Serbian humorous comic book series about the crazy and socially depraved characters created by its main author, Marko Todosijević (Mrvax), which ran from 2006 to 2009. After a pause of two years, in 2011, the series was re-launched in cooperation with Vladimir Petković (Vlapet) and later on with Tihomir Kostić (Kovenant). Publication history The creation of started when Todosijević worked on a short comic strip, , ('The sounds of Hometown') in 2003. It was a strip-based and short-lived series consisting of two issues. Most of the material was accidentally destroyed, and only a couple of panels still exist in physical form. The series followed the happenings at a tavern called (The sounds of Hometown'), and the only resemblance to was a character named Vukota Šiljić. This character was different than the one of the same name in , but it opened the way for the creation of . Scriptwriter Marko Radovanović (Maré) also contributed. A year later, the series was turned down, and Todosijević began to work on new characters and a concept that would later be known as . During the production of the concept and characters, Todosijević took inspiration from people he knew, as some of the characters were caricatures of actual people. Influences from film, and comedies in particular, made quite an impact on . Jackie Chan's movies and Monty Python's Flying Circus had strong effects on the creation of the series. Additionally, domestic Serbian movies including Balkanski Špijun, Varljivo leto '68, Maratonci trče počasni krug, Kad porastem biću Kengur, and Sedam i po also had an influence. 2006 In 2006, the first characters were created. The first were an albino zombie named Zombiša, a dog-groundhog hybrid named Mrmi, followed by Nindža Nidža, Dule Student, and a jelly belly creature named Zglavko. These five characters are the heart of the series and their personalities and appearances underwent minor changes through the years. The name of the series, ('Pals') was ironic as the characters had more animosity towards each other than sympathy and friendly intentions. In the original print of the first issue , there were only five characters. The publication's moderate success and joining Shlitz Comics led to a reprint in 2007, which was filled with new pages and one new character. 2007 In 2007, when the first issue of was reprinted, the character of Mile Betmen was added. He was a more-than-obvious parody of DC Comics' Batman, with a big beer belly and the role of masked avenger and pig farmer. His appearance brought more value to the series, but when the second issue of appeared the same year, entitled , the series showed improvement, both in drawing style and storytelling. The number of characters expanded, so the stories gained more than fights and pranks. Female characters were also brought in, and the series began to touch on more emotional themes; the clashes and animosity featured in the first issue were still present, but crafted with more taste and moderation. 2008–2009 [[File:Panel of the second issue of Prijatelji (comics).jpg|thumb|left|Vukota Šiljić and Nindža Nidža in an action scene from Osasuna VS Calgary ('Osasuna vs. Calgary') (2009).]] 2008 was a quiet year as Todosijević searched for new ideas. The preparation of the new issue lasted over a year. In March 2009, the third issue, entitled (Osasuna vs. Calgary') appeared. In this issue, besides Todosijević's work, Bojan Milojević (Asterian) contributed with one panel with Nindža Nidža on the back cover. As there was more than enough prepared material, a couple of months later another issue entitled was published. It was the best issue so far, with excellent gags and a drastically improved style. It featured 27 pages and artistic contributions from Serbian comic artists Saša Arsenić, Miloš Slavković and Borivoje Grbić. After the release of this issue, due to personal issues, Todosijević ceased work on . 2011–2012 Two years later, Todosijević decided to begin work on again, this time with Vladimir Petković. The result was a special issue of , which was published in April, 2012. Besides the previous main characters, this special publication brought new characters like Radojka, Stamena and Mitar Tuki Trgovac, and announced a crazy new character named Mačo Mikula. Also, in comparison to older issues, this special had titles for the gags and was published in a bigger format. After the release and promotion of this special issue, Todosijević and Petković joined forces with old friend Tihomir Kostić and began to work on an improved and zanier approach to , which demanded some changes and cuts. First, the character of Mile Betmen was removed due to his looks, as he was a parody of DC Comics' Batman. As the team intended to make more commercial and interesting to publishers, the character was permanently replaced with Mačo Mikula, who became the main character. At some point, Mile Betmen and Mačo Mikula were supposed to work together, but the idea was quickly dropped. The second character which was reworked was Mrmi; from a lovable scamp, Mrmi became a sexually voracious and aggressively crazed character. The surroundings and plot were also reworked. All of the characters faced real-life situations, social injustice and problems, more connections and interactions, alcohol, women, and other issues in today's society. The new authors also inserted a number of new characters to improve the situations, and the series itself, by making them funnier and more interesting. The three authors decided to make a second volume, primarily because of the changes and new characters that were introduced. The special issue ('Family Pack/Extreme Pack (Special issue)') became a turning point in the series and the bridge to a new publication. It was considered the first issue of volume two. The next issue under Number 2 appeared under the title of and was published in late November, 2012. 2013 During the summer of 2013, the creators entirely changed the series' concept. New episodes were on the way, and opposite to earlier issues, the new edition of under the working title would bring longer and more layered stories, filled with themes of the supernatural, horror, action, martial arts, and more detailed storytelling. In August 2013, an additional member was added to the crew, colorist Momir Marković. Besides a plan for the comic to be published in print, the creators also planned to publish special issues online in color, and in additional languages, such as Italian and English. Style and approach The drawing style in is reminiscent of the Italian (Fumetti) school, French Bande dessinee elements and Matt Groening's approach, but yet original. While Todosijević's style is similar to the Simpsons and André Franquin, Petković's work features influences from Roberto Raviola, Roberto Diso and Fabio Civitelli. Kostić takes his approach from artists like Eduardo Risso, Kenichi Sonoda, Nicola Mari and early Enrico Marini. Regarding writing, all three of the authors take ideas and inspiration from their own inner sources, making the stories very original and hilarious at the same time. Music also has an influence on , but only as a background element. Setting The world of is set in the city of Šiljino Brdo (English: 'Nibs Hill'), which is located somewhere in Serbia. The main places characters meet are dark alleys, DJ Sarma's flat, or a tavern called Tri Leša ('Three Corpses') owned by Rista Turista. Concept Situations present in the series include the problems of today's world, misfortunes or joys, socially depraved situations, sex, violence, sport, love, hate, alcohol, music, and injustice. Dark and light humor are mixed together and can be seen in one panel at the same time, likewise love, hate or violence. In addition to chaos, there is critique of trashy people and their way of life. Occasional song lyrics mockingly appear from Serbian genres such as turbo folk and folk-pop. Themes dealing with the supernatural, aliens, and ancient myths are also included. Trivia In May 2012, a slide show animation of was created based on the episode from ('Family Pack/Extreme Pack (Special issue)'). Both Todosijević and Petković, have appeared in the short psycho-thriller Sanctuary. Unofficially, in video clip form, covered the song from Serbian hardcore/crossover band Sick Mother Fakers with illustrations from the issues. Characters Main Mačo Mikula "Mikula" – main character (2011–present) Zombiša "Zombiša" – main character (2006–present) Nindža Nidža "Nidža" – main character (2006–present) Dule Student "Dule" – main character (2006–present) Mrmi "Mrmi" – main character (2006–present) Zglavko "Zglavko" – main character (2006–present) Vukota Šiljić "Vukota" – main character (2008–present) Vanesa Plavuša "Vanesa" – main character (2008–present) Fantastični Dragan "Dragan" – main character (2012–present) Gojko Grobar "Gojko" – main character (2012–present) Kung fu Romi "Petrit, Muharem, Kismet" – main character (2012–present) Supporting DJ Sarma "Sarma" – supporting character (2007–present) Radojica "Radojica" – supporting character (2007–present) Čobanica Anđa "Anđa" – supporting character (2008–present) Lidija Plavuša "Lidija" – supporting character (2008–present) Radojka "Radojka" – supporting character (2011–present) Stamena "Stamena" – supporting character (2011–present) Ovan Zuba "Zuba" – supporting character (2008–present) Milorad Bjelogrlić Kojo "Milorad" – supporting character (2012–present) Rista Turista "Rista" – supporting character (2012–present) Occasional Prgavi Džeki "Džeki" – occasional character (2007–present) Krmak Groki "Groki" – occasional character (2008–present) Minor Mitar Tuki Trgovac "Mitar" – minor character (2011–present) Mečka Silvana "Silvana" – minor character (2012–present) Villains Veverac "Veverac" – villain (2012–present) Dr. Sidrigajlo "Sidrigajlo" – villain (2012–present) Boško Muha "Bosko" – villain (2012–present) Jelisaveta "Jelisaveta" – villain (2012–present) Katćuša "Katćuša" – villain' (2012–present) Gospodin Ramadani "Ramadani" – villain (2013–present) Manga Mandov "Mandov" – villain (2013–present) Discontinued Mile Betmen "Mile" – discontinued character (2007–2012) Timeline Timeline of characters' appearances through the years: Timeline Released issues (bibliography) List of published comic books in the ('Pals') series: Prijatelji authors Marko Todosijević(2003–present) Vladimir Petković(2011–present) Tihomir Kostić(2012–present) Staff (Prijatelji creative team ) Ownership: Prijatelji Comics group Series creator: Marko Todosijević Series co-creators: Vladimir Petković, Tihomir Kostić Artwork: Marko Todosijević, Vladimir Petković, Tihomir Kostić Illustrators: Marko Todosijević, Vladimir Petković, Tihomir Kostić Scripts, text and concept: Marko Todosijević, Tihomir Kostić, Vladimir Petković Character creators: Marko Todosijević, Vladimir Petković, Tihomir Kostić Web editors: Vladimir Petković, Marko Todosijević Magazine design: Marko TodosijevićAdditional associates Illustrator and cover designer: Mrvax Magazine designer, and occasional illustrator: Colorist: Momir MarkovićTech crew Media relations and organization': Vladimir Petković References External links UPPS - Udruženje za promociju i produkciju stripa / Comics publishing and promotion society - Interview with Marko Todosijević - Official promotional page Prijatelji, comics Articles which contain graphical timelines Fictional Serbian people Comics set in Serbia Serbian comics
```elixir defmodule Cachex.Actions.TouchTest do use CachexCase # This test ensures that we can safely update the touch time of a key without # affecting when the key will be removed. We verify the TTL before and after # to make sure that there is no impact to the TTL, but also ensure that the # touch time on the record has been modified. test "touching a key in the cache" do # create a forwarding hook hook = ForwardHook.create() # create a test cache cache = Helper.create_cache(hooks: [hook]) # pull back the state state = Services.Overseer.retrieve(cache) # add some keys to the cache {:ok, true} = Cachex.put(cache, 1, 1) {:ok, true} = Cachex.put(cache, 2, 2, ttl: 1000) # clear messages Helper.flush() # retrieve the raw records entry(touched: touched1, ttl: ttl1) = Cachex.Actions.read(state, 1) entry(touched: touched2, ttl: ttl2) = Cachex.Actions.read(state, 2) # the first TTL should be nil assert(ttl1 == nil) # the second TTL should be roughly 1000 assert_in_delta(ttl2, 995, 6) # wait for 50ms :timer.sleep(50) # touch the keys touch1 = Cachex.touch(cache, 1) touch2 = Cachex.touch(cache, 2) touch3 = Cachex.touch(cache, 3) # the first two writes should succeed assert(touch1 == {:ok, true}) assert(touch2 == {:ok, true}) # the third shouldn't, as it's missing assert(touch3 == {:ok, false}) # verify the hooks were updated with the message assert_receive({{:touch, [1, []]}, ^touch1}) assert_receive({{:touch, [2, []]}, ^touch2}) assert_receive({{:touch, [3, []]}, ^touch3}) # retrieve the raw records again entry(touched: touched3, ttl: ttl3) = Cachex.Actions.read(state, 1) entry(touched: touched4, ttl: ttl4) = Cachex.Actions.read(state, 2) # the first ttl should still be nil assert(ttl3 == nil) # the first touch time should be roughly 50ms after the first one assert_in_delta(touched3, touched1 + 60, 11) # the second ttl should be roughly 50ms lower than the first assert_in_delta(ttl4, ttl2 - 60, 11) # the second touch time should also be 50ms after the first one assert_in_delta(touched4, touched2 + 60, 11) # for good measure, retrieve the second ttl ttl5 = Cachex.ttl!(cache, 2) # it should be roughly 945ms left assert_in_delta(ttl5, 940, 11) end # This test verifies that this action is correctly distributed across # a cache cluster, instead of just the local node. We're not concerned # about the actual behaviour here, only the routing of the action. @tag distributed: true test "adding new entries to a cache cluster" do # create a new cache cluster for cleaning {cache, _nodes} = Helper.create_cache_cluster(2) # we know that 1 & 2 hash to different nodes {:ok, true} = Cachex.put(cache, 1, 1) {:ok, true} = Cachex.put(cache, 2, 2) # wait a little :timer.sleep(10) # pull back the records inserted so far {:ok, export1} = Cachex.export(cache) # sort to guarantee we're checking well [record1, record2] = Enum.sort(export1) # unpack the records touch time entry(touched: touched1) = record1 entry(touched: touched2) = record2 # now touch both keys {:ok, true} = Cachex.touch(cache, 1) {:ok, true} = Cachex.touch(cache, 2) # pull back the records after the touchs {:ok, export2} = Cachex.export(cache) # sort to guarantee we're checking well [record3, record4] = Enum.sort(export2) # unpack the records touch time entry(touched: touched3) = record3 entry(touched: touched4) = record4 # new touched should be larger than old assert(touched3 > touched1) assert(touched4 > touched2) end end ```
The 1994 IAAF World Road Relay Championships was the second edition of the global, international marathon relay competition, organised by the International Association of Athletics Federations (IAAF). The event took place on 16–17 April on a 5-kilometre circuit in Litochoro, Greece with the participation of 240 athletes (162 men and 78 women) from 23 nations. The women's race took place on Saturday 16 April and the men's race took place on Sunday 17 April. Each national team consisted of six athletes, who alternately covered six stages to complete the 42.195 km marathon distance. The first, third and fifth stages were of 5 km, the second and fourth stages were of 10 km, and the final stage covered the remaining 7.195 km. In the women's race, Askale Bereda and Derartu Tulu ran the fastest times of the first two stages to establish a 40-second lead for Ethiopia. On the third leg, Yelena Kopytova made up this deficit to give the Russians a 6-second lead. Her compatriots Olga Churbanova and Yelena Romanova won the final two stages to take gold for Russia in a time of 2:17:19 hours. Ethiopia were a comfortable second in 2:19:09 hours, while Romania took third nine seconds behind with the help of fourth stage winner Anuța Cătună. In the men's race, Worku Bikila gained a five-second lead for Ethiopia in the first leg. A fast second leg from Joseph Kibor, saw Kenya take the lead by 12 seconds. Hicham El Guerrouj made up half a minute on the third leg to take the lead for Morocco. Salah Hissou and Brahim Boutayeb won the next two stages to cement the lead for Morocco resulting in a championship record time of 1:57:56 hours. Just under a minute behind were Ethiopia in 1:58:51, courtesy of leg six winner Haile Gebrselassie. Kenya finished a clear third in 2:00:51 hours. Medal summary Stage winners Results Men's race Women's race References 1994 World Road Relay Championships World Road Relay Championships World Road Relay Championships April 1994 sports events in Europe Sport in Central Macedonia International athletics competitions hosted by Greece Marathons in Greece
No. 12 Commando was a battalion-sized commando unit of the British Army during the Second World War. Formed in 1940 in Northern Ireland, they carried out a number of small-scale raids in Norway and France between 1941 and 1943 before being disbanded and its personnel dispersed to other commando units. Background The commandos were formed in 1940, by the order of Winston Churchill the British Prime Minister. He called for specially trained troops that would "develop a reign of terror down the enemy coast". At first they were a small force of volunteers who carried out small raids against enemy occupied territory, but by 1943 their role had changed into lightly equipped assault infantry which specialised in spearheading amphibious landings. The man initially selected as the overall commander of the force was Admiral Sir Roger Keyes himself a veteran of the landings at Galipoli and the Zeebrugge raid in the First World War. Keyes resigned in October 1941 and was replaced by Admiral Louis Mountbatten. By the autumn of 1940 more than 2,000 men had volunteered for commando training, and what became known as the Special Service Brigade was formed into 12 units called commandos. Each commando would number around 450 men commanded by a lieutenant colonel. They were sub divided into troops of 75 men and further divided into 15-man sections. Commandos were all volunteers seconded from other British Army regiments and retained their own cap badges and remained on their regimental roll for pay. All volunteers went through the six-week intensive commando course at Achnacarry. The course in the Scottish Highlands concentrated on fitness, speed marches, weapons training, map reading, climbing, small boat operations and demolitions both by day and by night. By 1943 the commandos had moved away from small raiding operations and had been formed into brigades of assault infantry to spearhead future Allied landing operations. Three units were left un-brigaded to carry out smaller-scale raids. History Formation Formed on 5 August 1940 at Crumlin after gathering in Belfast and Derry in Northern Ireland, under the command of Lieutenant Colonel S. Harrison, the unit, although technically a part of the Special Service Brigade under Brigadier Joseph (Charles) Haydon, largely remained independent of it and carried out small scale raiding and sabotage operations. The new unit was drawn from Irish regiments and from the 53rd and 61st Divisions which were based in Northern Ireland at the time. Training was conducted at various locations in Northern Ireland, including at Aldergrove Airport, where the commandos carried out a mock attack. In early 1941 they were billeted for a brief time at Warsash before undertaking combined operations training at Inverary, Scotland. Operations Compared with some of the other commando units, No. 12 Commando had a short history. Its first raid came on the night of 27/28 July 1941 when a party of 16 men carried out a landing near Ambleteuse, France. Embarking on an assault landing craft, they were towed to a position from the mouth of the Slack River by a Motor Launch. Although no prisoners were taken, the raid was partially successful and the commandos were ashore for approximately an hour before returning to their landing craft and heading back to Britain. On 9 December 1941, a detachment from No. 12 Commando, along with a detachment from No. 6 Commando and some Norwegian soldiers, took part in Operation Kitbag, a raid on the town of Florø in Norway. Embarking on , an infantry landing ship, they set out from Scapa Flow. During the voyage an incident occurred while some of the men were priming grenades for the raid which resulted in six men were killed and another 11 were seriously wounded, nevertheless the decision was made to continue with the raid. In the end, however, due to navigational difficulties the operation was eventually called off when the naval commander was unable to locate the fjord upon which Floss was located. Later that month, on 26 December 1941, No. 12 Commando took part in Operation Anklet, which was the only raid it undertook during its history where the entire unit took part. The operation was a diversionary raid on the Lofoten Islands in Norway, as part of the wider Operation Archery, which was a larger commando raid on Vågsøy and Måløy. No. 12 Commando along with 68 Norwegians from Norwegian Independent Company 1 and a demolition party landed on the island capturing the German garrison who surrendered without a fight. Under Harrison's command, they landed at Reine and after the garrison surrendered, the commandos stayed on the island for two days to carry out demolitions work, destroying two German wireless stations before withdrawing. They took 29 German prisoners and over 200 volunteers for the free Norwegian forces in Britain with them. After this No. 12 Commando undertook a series of small scale operations, with half of the unit forming Northforce in Norway, while the other half carried out operations in France along with the Small Scale Raiding Force as part of Forfarforce. On 27/28 February 1942, a detachment took part in the Bruneval Raid, providing the recovery parties for the paratroops. Later other detachments took part in the St Nazaire Raid and a raid on Sark known as Operation Basalt. In total the commando played a part in at least 15 raids between 1941 and late 1943. Disbandment The decision was finally made to disband the unit in December 1943 as part of the re-organisation of the commandos into four brigades underneath the divisional-sized commando Group HQ and the subsequent conceptual change in emphasis from small-scale raiding towards that of larger-scale infantry operations in which the commandos were treated as highly trained infantry instead of raiders. In addition to this, the losses suffered by the commando units serving in North Africa and Italy needed to be replaced. At the time there were widespread shortages across the entire British Army, and the volunteer nature of the commandos meant that there were even greater difficulties to replace commando losses. As a result, it was decided that some of these losses could be made up by disbanding No. 12 Commando. Following the disbandment of the unit, many of the unit's personnel were transferred to other commando units, namely Nos. 1, 3, 5 and 6 Commandos. Battle honours The following Battle honours were awarded to the British Commandos during the Second World War. Adriatic Alethangyaw Aller Anzio Argenta Gap Burma 1943–45 Crete Dieppe Dives Crossing Djebel Choucha Flushing Greece 1944–45 Italy 1943–45 Kangaw Landing at Porto San Venere Landing in Sicily Leese Litani Madagascar Middle East 1941, 1942, 1944 Monte Ornito Myebon Normandy Landing North Africa 1941–43 North-West Europe 1942, 1944–1945 Norway 1941 Pursuit to Messina Rhine St. Nazaire Salerno Sedjenane 1 Sicily 1943 Steamroller Farm Syria 1941 Termoli Vaagso Valli di Comacchio Westkapelle References Notes Bibliography 12 Military units and formations established in 1940 Military units and formations disestablished in 1943 1940 establishments in the United Kingdom 1943 disestablishments in the United Kingdom
```go // Code generated by protoc-gen-go. DO NOT EDIT. // source: google/cloud/websecurityscanner/v1alpha/finding.proto package websecurityscanner import ( fmt "fmt" proto "github.com/golang/protobuf/proto" _ "google.golang.org/genproto/googleapis/api/annotations" math "math" ) // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package // Types of Findings. type Finding_FindingType int32 const ( // The invalid finding type. Finding_FINDING_TYPE_UNSPECIFIED Finding_FindingType = 0 // A page that was served over HTTPS also resources over HTTP. A // man-in-the-middle attacker could tamper with the HTTP resource and gain // full access to the website that loads the resource or to monitor the // actions taken by the user. Finding_MIXED_CONTENT Finding_FindingType = 1 // The version of an included library is known to contain a security issue. // The scanner checks the version of library in use against a known list of // vulnerable libraries. False positives are possible if the version // detection fails or if the library has been manually patched. Finding_OUTDATED_LIBRARY Finding_FindingType = 2 // This type of vulnerability occurs when the value of a request parameter // is reflected at the beginning of the response, for example, in requests // using JSONP. Under certain circumstances, an attacker may be able to // supply an alphanumeric-only Flash file in the vulnerable parameter // causing the browser to execute the Flash file as if it originated on the // vulnerable server. Finding_ROSETTA_FLASH Finding_FindingType = 5 // A cross-site scripting (XSS) bug is found via JavaScript callback. For // detailed explanations on XSS, see // path_to_url Finding_XSS_CALLBACK Finding_FindingType = 3 // A potential cross-site scripting (XSS) bug due to JavaScript breakage. // In some circumstances, the application under test might modify the test // string before it is parsed by the browser. When the browser attempts to // runs this modified test string, it will likely break and throw a // JavaScript execution error, thus an injection issue is occurring. // However, it may not be exploitable. Manual verification is needed to see // if the test string modifications can be evaded and confirm that the issue // is in fact an XSS vulnerability. For detailed explanations on XSS, see // path_to_url Finding_XSS_ERROR Finding_FindingType = 4 // An application appears to be transmitting a password field in clear text. // An attacker can eavesdrop network traffic and sniff the password field. Finding_CLEAR_TEXT_PASSWORD Finding_FindingType = 6 ) var Finding_FindingType_name = map[int32]string{ 0: "FINDING_TYPE_UNSPECIFIED", 1: "MIXED_CONTENT", 2: "OUTDATED_LIBRARY", 5: "ROSETTA_FLASH", 3: "XSS_CALLBACK", 4: "XSS_ERROR", 6: "CLEAR_TEXT_PASSWORD", } var Finding_FindingType_value = map[string]int32{ "FINDING_TYPE_UNSPECIFIED": 0, "MIXED_CONTENT": 1, "OUTDATED_LIBRARY": 2, "ROSETTA_FLASH": 5, "XSS_CALLBACK": 3, "XSS_ERROR": 4, "CLEAR_TEXT_PASSWORD": 6, } func (x Finding_FindingType) String() string { return proto.EnumName(Finding_FindingType_name, int32(x)) } func (Finding_FindingType) EnumDescriptor() ([]byte, []int) { return fileDescriptor_811918cc7b338327, []int{0, 0} } // A Finding resource represents a vulnerability instance identified during a // ScanRun. type Finding struct { // Output only. // The resource name of the Finding. The name follows the format of // 'projects/{projectId}/scanConfigs/{scanConfigId}/scanruns/{scanRunId}/findings/{findingId}'. // The finding IDs are generated by the system. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Output only. // The type of the Finding. FindingType Finding_FindingType `protobuf:"varint,2,opt,name=finding_type,json=findingType,proto3,enum=google.cloud.websecurityscanner.v1alpha.Finding_FindingType" json:"finding_type,omitempty"` // Output only. // The http method of the request that triggered the vulnerability, in // uppercase. HttpMethod string `protobuf:"bytes,3,opt,name=http_method,json=httpMethod,proto3" json:"http_method,omitempty"` // Output only. // The URL produced by the server-side fuzzer and used in the request that // triggered the vulnerability. FuzzedUrl string `protobuf:"bytes,4,opt,name=fuzzed_url,json=fuzzedUrl,proto3" json:"fuzzed_url,omitempty"` // Output only. // The body of the request that triggered the vulnerability. Body string `protobuf:"bytes,5,opt,name=body,proto3" json:"body,omitempty"` // Output only. // The description of the vulnerability. Description string `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"` // Output only. // The URL containing human-readable payload that user can leverage to // reproduce the vulnerability. ReproductionUrl string `protobuf:"bytes,7,opt,name=reproduction_url,json=reproductionUrl,proto3" json:"reproduction_url,omitempty"` // Output only. // If the vulnerability was originated from nested IFrame, the immediate // parent IFrame is reported. FrameUrl string `protobuf:"bytes,8,opt,name=frame_url,json=frameUrl,proto3" json:"frame_url,omitempty"` // Output only. // The URL where the browser lands when the vulnerability is detected. FinalUrl string `protobuf:"bytes,9,opt,name=final_url,json=finalUrl,proto3" json:"final_url,omitempty"` // Output only. // The tracking ID uniquely identifies a vulnerability instance across // multiple ScanRuns. TrackingId string `protobuf:"bytes,10,opt,name=tracking_id,json=trackingId,proto3" json:"tracking_id,omitempty"` // Output only. // An addon containing information about outdated libraries. OutdatedLibrary *OutdatedLibrary `protobuf:"bytes,11,opt,name=outdated_library,json=outdatedLibrary,proto3" json:"outdated_library,omitempty"` // Output only. // An addon containing detailed information regarding any resource causing the // vulnerability such as JavaScript sources, image, audio files, etc. ViolatingResource *ViolatingResource `protobuf:"bytes,12,opt,name=violating_resource,json=violatingResource,proto3" json:"violating_resource,omitempty"` // Output only. // An addon containing information about request parameters which were found // to be vulnerable. VulnerableParameters *VulnerableParameters `protobuf:"bytes,13,opt,name=vulnerable_parameters,json=vulnerableParameters,proto3" json:"vulnerable_parameters,omitempty"` // Output only. // An addon containing information reported for an XSS, if any. Xss *Xss `protobuf:"bytes,14,opt,name=xss,proto3" json:"xss,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *Finding) Reset() { *m = Finding{} } func (m *Finding) String() string { return proto.CompactTextString(m) } func (*Finding) ProtoMessage() {} func (*Finding) Descriptor() ([]byte, []int) { return fileDescriptor_811918cc7b338327, []int{0} } func (m *Finding) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Finding.Unmarshal(m, b) } func (m *Finding) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_Finding.Marshal(b, m, deterministic) } func (m *Finding) XXX_Merge(src proto.Message) { xxx_messageInfo_Finding.Merge(m, src) } func (m *Finding) XXX_Size() int { return xxx_messageInfo_Finding.Size(m) } func (m *Finding) XXX_DiscardUnknown() { xxx_messageInfo_Finding.DiscardUnknown(m) } var xxx_messageInfo_Finding proto.InternalMessageInfo func (m *Finding) GetName() string { if m != nil { return m.Name } return "" } func (m *Finding) GetFindingType() Finding_FindingType { if m != nil { return m.FindingType } return Finding_FINDING_TYPE_UNSPECIFIED } func (m *Finding) GetHttpMethod() string { if m != nil { return m.HttpMethod } return "" } func (m *Finding) GetFuzzedUrl() string { if m != nil { return m.FuzzedUrl } return "" } func (m *Finding) GetBody() string { if m != nil { return m.Body } return "" } func (m *Finding) GetDescription() string { if m != nil { return m.Description } return "" } func (m *Finding) GetReproductionUrl() string { if m != nil { return m.ReproductionUrl } return "" } func (m *Finding) GetFrameUrl() string { if m != nil { return m.FrameUrl } return "" } func (m *Finding) GetFinalUrl() string { if m != nil { return m.FinalUrl } return "" } func (m *Finding) GetTrackingId() string { if m != nil { return m.TrackingId } return "" } func (m *Finding) GetOutdatedLibrary() *OutdatedLibrary { if m != nil { return m.OutdatedLibrary } return nil } func (m *Finding) GetViolatingResource() *ViolatingResource { if m != nil { return m.ViolatingResource } return nil } func (m *Finding) GetVulnerableParameters() *VulnerableParameters { if m != nil { return m.VulnerableParameters } return nil } func (m *Finding) GetXss() *Xss { if m != nil { return m.Xss } return nil } func init() { proto.RegisterEnum("google.cloud.websecurityscanner.v1alpha.Finding_FindingType", Finding_FindingType_name, Finding_FindingType_value) proto.RegisterType((*Finding)(nil), "google.cloud.websecurityscanner.v1alpha.Finding") } func init() { proto.RegisterFile("google/cloud/websecurityscanner/v1alpha/finding.proto", fileDescriptor_811918cc7b338327) } var fileDescriptor_811918cc7b338327 = []byte{ // 631 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0x5f, 0x6f, 0xd3, 0x3e, 0x14, 0xfd, 0x65, 0xff, 0xeb, 0x74, 0x5b, 0xe6, 0xdf, 0x10, 0xd1, 0x18, 0x5a, 0xb5, 0x17, 0x86, 0x40, 0x89, 0x18, 0x42, 0x42, 0x0c, 0x90, 0xd2, 0x36, 0x85, 0x88, 0xae, 0xad, 0x9c, 0x0c, 0x3a, 0x5e, 0x2c, 0x37, 0x71, 0xb3, 0x88, 0x34, 0x8e, 0x9c, 0xa4, 0xd0, 0x7d, 0x12, 0x5e, 0xe1, 0x93, 0x22, 0x3b, 0xe9, 0x28, 0x0c, 0x89, 0xf2, 0x54, 0xfb, 0x9c, 0x7b, 0xce, 0xb9, 0xf7, 0xaa, 0x31, 0x78, 0x16, 0x32, 0x16, 0xc6, 0xd4, 0xf4, 0x63, 0x56, 0x04, 0xe6, 0x67, 0x3a, 0xca, 0xa8, 0x5f, 0xf0, 0x28, 0x9f, 0x65, 0x3e, 0x49, 0x12, 0xca, 0xcd, 0xe9, 0x13, 0x12, 0xa7, 0x57, 0xc4, 0x1c, 0x47, 0x49, 0x10, 0x25, 0xa1, 0x91, 0x72, 0x96, 0x33, 0xf8, 0xa0, 0x94, 0x19, 0x52, 0x66, 0xdc, 0x96, 0x19, 0x95, 0xec, 0xe0, 0xb0, 0xf2, 0x27, 0x69, 0x64, 0x92, 0x24, 0x61, 0x39, 0xc9, 0x23, 0x96, 0x64, 0xa5, 0xcd, 0xc1, 0xd9, 0x3f, 0xa6, 0x63, 0x12, 0x04, 0x2c, 0x29, 0xc5, 0xc7, 0xdf, 0x37, 0xc1, 0x66, 0xa7, 0xc4, 0x21, 0x04, 0x6b, 0x09, 0x99, 0x50, 0x5d, 0x69, 0x28, 0x27, 0x35, 0x24, 0xcf, 0x10, 0x83, 0xfa, 0x5c, 0x96, 0xcf, 0x52, 0xaa, 0xaf, 0x34, 0x94, 0x93, 0x9d, 0xd3, 0x97, 0xc6, 0x92, 0xad, 0x1b, 0x95, 0xf7, 0xfc, 0xd7, 0x9b, 0xa5, 0x14, 0xa9, 0xe3, 0x9f, 0x17, 0x78, 0x04, 0xd4, 0xab, 0x3c, 0x4f, 0xf1, 0x84, 0xe6, 0x57, 0x2c, 0xd0, 0x57, 0x65, 0x36, 0x10, 0xd0, 0xb9, 0x44, 0xe0, 0x7d, 0x00, 0xc6, 0xc5, 0xf5, 0x35, 0x0d, 0x70, 0xc1, 0x63, 0x7d, 0x4d, 0xf2, 0xb5, 0x12, 0xb9, 0xe0, 0xb1, 0x68, 0x7a, 0xc4, 0x82, 0x99, 0xbe, 0x5e, 0x36, 0x2d, 0xce, 0xb0, 0x01, 0xd4, 0x80, 0x66, 0x3e, 0x8f, 0x52, 0xb1, 0x27, 0x7d, 0x43, 0x52, 0x8b, 0x10, 0x7c, 0x08, 0x34, 0x4e, 0x53, 0xce, 0x82, 0xc2, 0x17, 0x77, 0x69, 0xbd, 0x29, 0xcb, 0x76, 0x17, 0x71, 0x11, 0x70, 0x0f, 0xd4, 0xc6, 0x9c, 0x4c, 0xa8, 0xac, 0xd9, 0x92, 0x35, 0x5b, 0x12, 0x98, 0x93, 0x51, 0x42, 0x62, 0x49, 0xd6, 0x2a, 0x52, 0x00, 0x82, 0x3c, 0x02, 0x6a, 0xce, 0x89, 0xff, 0x49, 0x2c, 0x2f, 0x0a, 0x74, 0x50, 0x8e, 0x36, 0x87, 0x9c, 0x00, 0xfa, 0x40, 0x63, 0x45, 0x1e, 0x90, 0x9c, 0x06, 0x38, 0x8e, 0x46, 0x9c, 0xf0, 0x99, 0xae, 0x36, 0x94, 0x13, 0xf5, 0xf4, 0xf9, 0xd2, 0x0b, 0xee, 0x57, 0x06, 0xdd, 0x52, 0x8f, 0x76, 0xd9, 0xaf, 0x00, 0x8c, 0x00, 0x9c, 0x46, 0x2c, 0x26, 0xb9, 0x68, 0x83, 0xd3, 0x8c, 0x15, 0xdc, 0xa7, 0x7a, 0x5d, 0xc6, 0xbc, 0x58, 0x3a, 0xe6, 0xfd, 0xdc, 0x02, 0x55, 0x0e, 0x68, 0x6f, 0xfa, 0x3b, 0x04, 0x39, 0xb8, 0x33, 0x2d, 0xe2, 0x84, 0x72, 0x32, 0x8a, 0x29, 0x4e, 0x89, 0xd8, 0x52, 0x4e, 0x79, 0xa6, 0x6f, 0xcb, 0xb4, 0x57, 0xcb, 0xa7, 0xdd, 0xb8, 0x0c, 0x6e, 0x4c, 0xd0, 0xfe, 0xf4, 0x0f, 0x28, 0x7c, 0x0d, 0x56, 0xbf, 0x64, 0x99, 0xbe, 0x23, 0x13, 0x1e, 0x2f, 0x9d, 0x30, 0xcc, 0x32, 0x24, 0x84, 0xc7, 0xdf, 0x14, 0xa0, 0x2e, 0xfc, 0x39, 0xe1, 0x21, 0xd0, 0x3b, 0x4e, 0xaf, 0xed, 0xf4, 0xde, 0x60, 0xef, 0x72, 0x60, 0xe3, 0x8b, 0x9e, 0x3b, 0xb0, 0x5b, 0x4e, 0xc7, 0xb1, 0xdb, 0xda, 0x7f, 0x70, 0x0f, 0x6c, 0x9f, 0x3b, 0x43, 0xbb, 0x8d, 0x5b, 0xfd, 0x9e, 0x67, 0xf7, 0x3c, 0x4d, 0x81, 0xfb, 0x40, 0xeb, 0x5f, 0x78, 0x6d, 0xcb, 0xb3, 0xdb, 0xb8, 0xeb, 0x34, 0x91, 0x85, 0x2e, 0xb5, 0x15, 0x51, 0x88, 0xfa, 0xae, 0xed, 0x79, 0x16, 0xee, 0x74, 0x2d, 0xf7, 0xad, 0xb6, 0x0e, 0x35, 0x50, 0x1f, 0xba, 0x2e, 0x6e, 0x59, 0xdd, 0x6e, 0xd3, 0x6a, 0xbd, 0xd3, 0x56, 0xe1, 0x36, 0xa8, 0x09, 0xc4, 0x46, 0xa8, 0x8f, 0xb4, 0x35, 0x78, 0x17, 0xfc, 0xdf, 0xea, 0xda, 0x16, 0xc2, 0x9e, 0x3d, 0xf4, 0xf0, 0xc0, 0x72, 0xdd, 0x0f, 0x7d, 0xd4, 0xd6, 0x36, 0x9a, 0x5f, 0x15, 0xf0, 0xc8, 0x67, 0x93, 0x65, 0x87, 0x6b, 0xd6, 0xab, 0x81, 0x06, 0xe2, 0x13, 0x1f, 0x28, 0x1f, 0x2f, 0x2b, 0x61, 0xc8, 0x62, 0x92, 0x84, 0x06, 0xe3, 0xa1, 0x19, 0xd2, 0x44, 0x3e, 0x00, 0x66, 0x49, 0x91, 0x34, 0xca, 0xfe, 0xfa, 0x80, 0x9c, 0xdd, 0xa6, 0x46, 0x1b, 0xd2, 0xe5, 0xe9, 0x8f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x8a, 0x7d, 0x4d, 0xc7, 0x03, 0x05, 0x00, 0x00, } ```
Edumudi is a village in Prakasam district of the Indian state of Andhra Pradesh. It is located in Naguluppalapadu mandal of Tenali revenue division. References Villages in Prakasam district
```objective-c /* * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef P2P_BASE_TRANSPORT_DESCRIPTION_FACTORY_H_ #define P2P_BASE_TRANSPORT_DESCRIPTION_FACTORY_H_ #include <memory> #include "p2p/base/ice_credentials_iterator.h" #include "p2p/base/transport_description.h" #include "rtc_base/rtc_certificate.h" namespace rtc { class SSLIdentity; } namespace cricket { struct TransportOptions { bool ice_restart = false; bool prefer_passive_role = false; // If true, ICE renomination is supported and will be used if it is also // supported by the remote side. bool enable_ice_renomination = false; }; // Creates transport descriptions according to the supplied configuration. // When creating answers, performs the appropriate negotiation // of the various fields to determine the proper result. class TransportDescriptionFactory { public: // Default ctor; use methods below to set configuration. TransportDescriptionFactory(); ~TransportDescriptionFactory(); SecurePolicy secure() const { return secure_; } // The certificate to use when setting up DTLS. const rtc::scoped_refptr<rtc::RTCCertificate>& certificate() const { return certificate_; } // Specifies the transport security policy to use. void set_secure(SecurePolicy s) { secure_ = s; } // Specifies the certificate to use (only used when secure != SEC_DISABLED). void set_certificate( const rtc::scoped_refptr<rtc::RTCCertificate>& certificate) { certificate_ = certificate; } // Creates a transport description suitable for use in an offer. std::unique_ptr<TransportDescription> CreateOffer( const TransportOptions& options, const TransportDescription* current_description, IceCredentialsIterator* ice_credentials) const; // Create a transport description that is a response to an offer. // // If |require_transport_attributes| is true, then TRANSPORT category // attributes are expected to be present in |offer|, as defined by // sdp-mux-attributes, and null will be returned otherwise. It's expected // that this will be set to false for an m= section that's in a BUNDLE group // but isn't the first m= section in the group. std::unique_ptr<TransportDescription> CreateAnswer( const TransportDescription* offer, const TransportOptions& options, bool require_transport_attributes, const TransportDescription* current_description, IceCredentialsIterator* ice_credentials) const; private: bool SetSecurityInfo(TransportDescription* description, ConnectionRole role) const; SecurePolicy secure_; rtc::scoped_refptr<rtc::RTCCertificate> certificate_; }; } // namespace cricket #endif // P2P_BASE_TRANSPORT_DESCRIPTION_FACTORY_H_ ```
```java // snippet-start:[emr.java.runstep.flink] List<StepConfig> stepConfigs = new ArrayList<StepConfig>(); // The application id specified below is retrieved from the YARN cluster, for example, by running 'yarn application -list' from the master node command line HadoopJarStepConfig flinkWordCountConf = new HadoopJarStepConfig() .withJar("command-runner.jar") .withArgs("flink", "run", "-m", "yarn-cluster", "-yid", "application_1473169569237_0002", "-yn", "2", "/usr/lib/flink/examples/streaming/WordCount.jar", "--input", "s3://bucket/for/my/textfile.txt", "--output", "s3://bucket/for/my/output/"); StepConfig flinkRunWordCount = new StepConfig() .withName("Flink add a wordcount step") .withActionOnFailure("CONTINUE") .withHadoopJarStep(flinkWordCountConf); stepConfigs.add(flinkRunWordCount); // Specify the cluster ID of the YARN cluster instead of j-xxxxxxxxx AddJobFlowStepsResult res = emr.addJobFlowSteps(new AddJobFlowStepsRequest() .withJobFlowId("j-xxxxxxxxxx") .withSteps(stepConfigs)); // snippet-end:[emr.java.runstep.flink] ```
```sqlpl -- -- PostgreSQL database dump -- -- Dumped from database version 9.6.1 -- Dumped by pg_dump version 9.6.1 SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SET check_function_bodies = false; SET client_min_messages = warning; SET row_security = off; SET search_path = public, pg_catalog; DROP INDEX IF EXISTS public.upgradehistbyseq; DROP INDEX IF EXISTS public.scpquorumsbyseq; DROP INDEX IF EXISTS public.scpenvsbyseq; DROP INDEX IF EXISTS public.ledgersbyseq; DROP INDEX IF EXISTS public.histfeebyseq; DROP INDEX IF EXISTS public.histbyseq; DROP INDEX IF EXISTS public.bestofferindex; DROP INDEX IF EXISTS public.accountbalances; ALTER TABLE IF EXISTS ONLY public.upgradehistory DROP CONSTRAINT IF EXISTS upgradehistory_pkey; ALTER TABLE IF EXISTS ONLY public.txhistory DROP CONSTRAINT IF EXISTS txhistory_pkey; ALTER TABLE IF EXISTS ONLY public.txfeehistory DROP CONSTRAINT IF EXISTS txfeehistory_pkey; ALTER TABLE IF EXISTS ONLY public.trustlines DROP CONSTRAINT IF EXISTS trustlines_pkey; ALTER TABLE IF EXISTS ONLY public.storestate DROP CONSTRAINT IF EXISTS storestate_pkey; ALTER TABLE IF EXISTS ONLY public.scpquorums DROP CONSTRAINT IF EXISTS scpquorums_pkey; ALTER TABLE IF EXISTS ONLY public.quoruminfo DROP CONSTRAINT IF EXISTS quoruminfo_pkey; ALTER TABLE IF EXISTS ONLY public.pubsub DROP CONSTRAINT IF EXISTS pubsub_pkey; ALTER TABLE IF EXISTS ONLY public.publishqueue DROP CONSTRAINT IF EXISTS publishqueue_pkey; ALTER TABLE IF EXISTS ONLY public.peers DROP CONSTRAINT IF EXISTS peers_pkey; ALTER TABLE IF EXISTS ONLY public.offers DROP CONSTRAINT IF EXISTS offers_pkey; ALTER TABLE IF EXISTS ONLY public.ledgerheaders DROP CONSTRAINT IF EXISTS ledgerheaders_pkey; ALTER TABLE IF EXISTS ONLY public.ledgerheaders DROP CONSTRAINT IF EXISTS ledgerheaders_ledgerseq_key; ALTER TABLE IF EXISTS ONLY public.ban DROP CONSTRAINT IF EXISTS ban_pkey; ALTER TABLE IF EXISTS ONLY public.accounts DROP CONSTRAINT IF EXISTS accounts_pkey; ALTER TABLE IF EXISTS ONLY public.accountdata DROP CONSTRAINT IF EXISTS accountdata_pkey; DROP TABLE IF EXISTS public.upgradehistory; DROP TABLE IF EXISTS public.txhistory; DROP TABLE IF EXISTS public.txfeehistory; DROP TABLE IF EXISTS public.trustlines; DROP TABLE IF EXISTS public.storestate; DROP TABLE IF EXISTS public.scpquorums; DROP TABLE IF EXISTS public.scphistory; DROP TABLE IF EXISTS public.quoruminfo; DROP TABLE IF EXISTS public.pubsub; DROP TABLE IF EXISTS public.publishqueue; DROP TABLE IF EXISTS public.peers; DROP TABLE IF EXISTS public.offers; DROP TABLE IF EXISTS public.ledgerheaders; DROP TABLE IF EXISTS public.ban; DROP TABLE IF EXISTS public.accounts; DROP TABLE IF EXISTS public.accountdata; DROP EXTENSION IF EXISTS plpgsql; DROP SCHEMA IF EXISTS public; -- -- Name: public; Type: SCHEMA; Schema: -; Owner: - -- CREATE SCHEMA public; -- -- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: - -- COMMENT ON SCHEMA public IS 'standard public schema'; -- -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; -- -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: - -- COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; SET search_path = public, pg_catalog; SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: accountdata; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE accountdata ( accountid character varying(56) NOT NULL, dataname character varying(88) NOT NULL, datavalue character varying(112) NOT NULL, lastmodified integer NOT NULL ); -- -- Name: accounts; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE accounts ( accountid character varying(56) NOT NULL, balance bigint NOT NULL, seqnum bigint NOT NULL, numsubentries integer NOT NULL, inflationdest character varying(56), homedomain character varying(44) NOT NULL, thresholds text NOT NULL, flags integer NOT NULL, lastmodified integer NOT NULL, buyingliabilities bigint, sellingliabilities bigint, signers text, CONSTRAINT accounts_balance_check CHECK ((balance >= 0)), CONSTRAINT accounts_buyingliabilities_check CHECK ((buyingliabilities >= 0)), CONSTRAINT accounts_numsubentries_check CHECK ((numsubentries >= 0)), CONSTRAINT accounts_sellingliabilities_check CHECK ((sellingliabilities >= 0)) ); -- -- Name: ban; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE ban ( nodeid character(56) NOT NULL ); -- -- Name: ledgerheaders; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE ledgerheaders ( ledgerhash character(64) NOT NULL, prevhash character(64) NOT NULL, bucketlisthash character(64) NOT NULL, ledgerseq integer, closetime bigint NOT NULL, data text NOT NULL, CONSTRAINT ledgerheaders_closetime_check CHECK ((closetime >= 0)), CONSTRAINT ledgerheaders_ledgerseq_check CHECK ((ledgerseq >= 0)) ); -- -- Name: offers; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE offers ( sellerid character varying(56) NOT NULL, offerid bigint NOT NULL, sellingasset text NOT NULL, buyingasset text NOT NULL, amount bigint NOT NULL, pricen integer NOT NULL, priced integer NOT NULL, price double precision NOT NULL, flags integer NOT NULL, lastmodified integer NOT NULL, CONSTRAINT offers_amount_check CHECK ((amount >= 0)), CONSTRAINT offers_offerid_check CHECK ((offerid >= 0)) ); -- -- Name: peers; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE peers ( ip character varying(15) NOT NULL, port integer DEFAULT 0 NOT NULL, nextattempt timestamp without time zone NOT NULL, numfailures integer DEFAULT 0 NOT NULL, type integer NOT NULL, CONSTRAINT peers_numfailures_check CHECK ((numfailures >= 0)), CONSTRAINT peers_port_check CHECK (((port > 0) AND (port <= 65535))) ); -- -- Name: publishqueue; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE publishqueue ( ledger integer NOT NULL, state text ); -- -- Name: pubsub; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE pubsub ( resid character(32) NOT NULL, lastread integer ); -- -- Name: quoruminfo; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE quoruminfo ( nodeid character(56) NOT NULL, qsethash character(64) NOT NULL ); -- -- Name: scphistory; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE scphistory ( nodeid character(56) NOT NULL, ledgerseq integer NOT NULL, envelope text NOT NULL, CONSTRAINT scphistory_ledgerseq_check CHECK ((ledgerseq >= 0)) ); -- -- Name: scpquorums; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE scpquorums ( qsethash character(64) NOT NULL, lastledgerseq integer NOT NULL, qset text NOT NULL, CONSTRAINT scpquorums_lastledgerseq_check CHECK ((lastledgerseq >= 0)) ); -- -- Name: storestate; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE storestate ( statename character(32) NOT NULL, state text ); -- -- Name: trustlines; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE trustlines ( accountid character varying(56) NOT NULL, assettype integer NOT NULL, issuer character varying(56) NOT NULL, assetcode character varying(12) NOT NULL, tlimit bigint NOT NULL, balance bigint NOT NULL, flags integer NOT NULL, lastmodified integer NOT NULL, buyingliabilities bigint, sellingliabilities bigint, CONSTRAINT trustlines_balance_check CHECK ((balance >= 0)), CONSTRAINT trustlines_buyingliabilities_check CHECK ((buyingliabilities >= 0)), CONSTRAINT trustlines_sellingliabilities_check CHECK ((sellingliabilities >= 0)), CONSTRAINT trustlines_tlimit_check CHECK ((tlimit > 0)) ); -- -- Name: txfeehistory; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE txfeehistory ( txid character(64) NOT NULL, ledgerseq integer NOT NULL, txindex integer NOT NULL, txchanges text NOT NULL, CONSTRAINT txfeehistory_ledgerseq_check CHECK ((ledgerseq >= 0)) ); -- -- Name: txhistory; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE txhistory ( txid character(64) NOT NULL, ledgerseq integer NOT NULL, txindex integer NOT NULL, txbody text NOT NULL, txresult text NOT NULL, txmeta text NOT NULL, CONSTRAINT txhistory_ledgerseq_check CHECK ((ledgerseq >= 0)) ); -- -- Name: upgradehistory; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE upgradehistory ( ledgerseq integer NOT NULL, upgradeindex integer NOT NULL, upgrade text NOT NULL, changes text NOT NULL, CONSTRAINT upgradehistory_ledgerseq_check CHECK ((ledgerseq >= 0)) ); -- -- Data for Name: accountdata; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO accountdata VALUES ('GAYSCMKQY6EYLXOPTT6JPPOXDMVNBWITPTSZIVWW4LWARVBOTH5RTLAD', 'bmFtZSA=', 'aXRzIGdvdCBzcGFjZXMh', 49); INSERT INTO accountdata VALUES ('GAYSCMKQY6EYLXOPTT6JPPOXDMVNBWITPTSZIVWW4LWARVBOTH5RTLAD', 'bmFtZTE=', 'MDAwMA==', 52); -- -- Data for Name: accounts; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO accounts VALUES ('GAXI33UCLQTCKM2NMRBS7XYBR535LLEVAHL5YBN4FTCB4HZHT7ZA5CVK', 10000000000, 12884901888, 0, NULL, '', 'AQAAAA==', 0, 3, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GDXFAGJCSCI4CK2YHK6YRLA6TKEXFRX7BMGVMQOBMLIEUJRJ5YQNLMIB', 9999999600, 17179869188, 1, NULL, '', 'AgICAg==', 0, 6, NULL, NULL, 'AAAAAQAAAAD2T51Mi2fjmCY4Z+R5JON1LluqzrnpmTxUJXTp/A3FRwAAAAE='); INSERT INTO accounts VALUES ('GA46VRKBCLI2X6DXLX7AIEVRFLH3UA7XBE3NGNP6O74HQ5LXHMGTV2JB', 9959999600, 30064771076, 0, NULL, '', 'AQAAAA==', 0, 8, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GAG52TW6QAB6TGNMOTL32Y4M3UQQLNNNHPEHYAIYRP6SFF6ZAVRF5ZQY', 9799999800, 38654705665, 0, NULL, '', 'AQAAAA==', 0, 10, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GDCVTBGSEEU7KLXUMHMSXBALXJ2T4I2KOPXW2S5TRLKDRIAXD5UDHAYO', 9499999900, 47244640257, 0, NULL, '', 'AQAAAA==', 0, 12, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GCB7FPYGLL6RJ37HKRAYW5TAWMFBGGFGM4IM6ERBCZXI2BZ4OOOX2UAY', 500000000, 51539607552, 0, NULL, '', 'AQAAAA==', 0, 12, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GANZGPKY5WSHWG5YOZMNG52GCK5SCJ4YGUWMJJVGZSK2FP4BI2JIJN2C', 10099999900, 55834574849, 1, NULL, '', 'AQAAAA==', 0, 14, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GCHC4D2CS45CJRNN4QAHT2LFZAJIU5PA7H53K3VOP6WEJ6XWHNSNZKQG', 9899999800, 55834574850, 0, NULL, '', 'AQAAAA==', 0, 15, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GACAR2AEYEKITE2LKI5RMXF5MIVZ6Q7XILROGDT22O7JX4DSWFS7FDDP', 9999999900, 68719476737, 1, NULL, '', 'AQAAAA==', 0, 17, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GDRW375MAYR46ODGF2WGANQC2RRZL7O246DYHHCGWTV2RE7IHE2QUQLD', 8999999700, 68719476739, 1, NULL, '', 'AQAAAA==', 0, 20, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GAXMF43TGZHW3QN3REOUA2U5PW5BTARXGGYJ3JIFHW3YT6QRKRL3CPPU', 10999999700, 68719476739, 1, NULL, '', 'AQAAAA==', 0, 20, 0, 2000000000, NULL); INSERT INTO accounts VALUES ('GB2QIYT2IAUFMRXKLSLLPRECC6OCOGJMADSPTRK7TGNT2SFR2YGWDARD', 10199999900, 90194313217, 1, NULL, '', 'AQAAAA==', 0, 24, 100000000, 0, NULL); INSERT INTO accounts VALUES ('GBOK7BOUSOWPHBANBYM6MIRYZJIDIPUYJPXHTHADF75UEVIVYWHHONQC', 9799999800, 90194313218, 1, NULL, '', 'AQAAAA==', 0, 24, 0, 0, NULL); INSERT INTO accounts VALUES ('GB6GN3LJUW6JYR7EDOJ47VBH7D45M4JWHXGK6LHJRAEI5JBSN2DBQY7Q', 9999999800, 107374182402, 2, NULL, '', 'AQAAAA==', 0, 26, 2000000000, 2000000000, NULL); INSERT INTO accounts VALUES ('GCIFFRQKHMH6JD7CK5OI4XVCYCMNRNF6PYA7JTCR3FPHPJZQTYYFB5ES', 9999998800, 115964117004, 0, 'GBRPYHIL2CI3FNQ4BXLFMNDLFJUNPU2HY3ZMFSHONUCEOASW7QC7OX2H', 'ZXhhbXBsZS5jb20=', 'AgACAg==', 0, 32, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GCJKJXPKBFIHOO3455WXWG5CDBZXQNYFRRGICYMPUQ35CPQ4WVS3KZLG', 9999999600, 141733920772, 0, NULL, '', 'AQAAAA==', 0, 37, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GCVW5LCRZFP7PENXTAGOVIQXADDNUXXZJCNKF4VQB2IK7W2LPJWF73UG', 9999999800, 163208757250, 2, NULL, '', 'AQAAAA==', 0, 40, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GD4SMOE3VPSF7ZR3CTEQ3P5UNTBMEJDA2GLXTHR7MMARANKKJDZ7RPGF', 9999999600, 163208757252, 0, NULL, '', 'AQAAAA==', 3, 42, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GDR53WAEIKOU3ZKN34CSHAWH7HV6K63CBJRUTWUDBFSMY7RRQK3SPKOS', 200038144200001319, 193273528321, 0, 'GDR53WAEIKOU3ZKN34CSHAWH7HV6K63CBJRUTWUDBFSMY7RRQK3SPKOS', '', 'AQAAAA==', 0, 47, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GAYSCMKQY6EYLXOPTT6JPPOXDMVNBWITPTSZIVWW4LWARVBOTH5RTLAD', 9999999400, 206158430214, 2, NULL, '', 'AQAAAA==', 0, 52, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GACJPE4YUR22VP4CM2BDFDAHY3DLEF3H7NENKUQ53DT5TEI2GAHT5N4X', 10000000000, 227633266688, 0, NULL, '', 'AQAAAA==', 0, 54, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GANFZDRBCNTUXIODCJEYMACPMCSZEVE4WZGZ3CZDZ3P2SXK4KH75IK6Y', 9999999900, 236223201281, 0, NULL, '', 'AQAAAA==', 0, 56, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GBRPYHIL2CI3FNQ4BXLFMNDLFJUNPU2HY3ZMFSHONUCEOASW7QC7OX2H', 800152367009533292, 26, 0, 'GBRPYHIL2CI3FNQ4BXLFMNDLFJUNPU2HY3ZMFSHONUCEOASW7QC7OX2H', '', 'AQAAAA==', 0, 57, NULL, NULL, NULL); INSERT INTO accounts VALUES ('GCQZP3IU7XU6EJ63JZXKCQOYT2RNXN3HB5CNHENNUEUHSMA4VUJJJSEN', 9999999600, 300000000003, 0, NULL, '', 'AQAAAA==', 0, 61, NULL, NULL, NULL); -- -- Data for Name: ban; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: ledgerheaders; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 1, 0, your_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAABXKi4y/ySKB7DnD9H20xjB+your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 2, 1559579728, 'AAAAC2PZj1Nu5o0bJ7W4nyOvUxG3Vpok+your_sha256_hashyour_sha256_hashD3XSOp3itxSvEmM6AUkwBS4ERnv+Ltt/ycz/x8/+lFB80rnVx7j2Mrm29EpusUR+your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 3, 1559579729, 'AAAAC/2SaNFtdQG263lWtnVrKP5DzlpgELdud22R9g5e7XsqDZGQBE1YsotIrRXkw7x6/your_sha256_hashu8cmoww1I7xqYGObt0Zo0oZAKD5U1RxNy8ovj+4OjM4rIB0P/C3cQ+hCLArM49g+your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 4, 1559579730, 'AAAACzQf+cSYuQdvjyGup4ozvAxjmrXPmGrbwtjQTZK1qdbfS+your_sha256_hashFeHEzJ0/4FO8/NG/43wTEny1CW/vcH2jcrQkzbbcj+Ff6Dfgn4FQTGJXl3s+xBqyBn+uvEPEYwqrPTrPE/your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 5, 1559579731, your_sha256_hashLE6mBvTO46hI+XxK2J5c1tuLsiUAAAAAXPVMUwAAAAAAAAAAk6vO/KRxwZ0ynJMMrKUpOSf5WhbdkNk0LIO/zZxB+qeX7aYG0z3XmFwxmr34PrxhVy8SRzlUMGjhTLWe3i+your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 6, 1559579732, 'AAAAC/X5wfxwBXHaXfDW4Oztq3j+geb2YFTkNS+Xo/DPPV83Ny97k/your_sha256_hashCCsel4HIsK4udqXyLQqcraGjcAHVSUN815grFwXcnuHU1uUpGqTUtbI/your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 7, 1559579733, 'AAAAC+Vrk5LwlJL0CEeJpvfuoydNaZHJGNlQlgCemF++bA0JrU2Bn4aTjYMLpDfffI/your_sha256_hashrhs2C+IXj942pn3qPVIAXXx6Y378rPisQ/your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 8, 1559579734, 'AAAACwy6XWSGsIDCCUTY4geNoFhU601osMRKenDwbfuyjAgJZ/gVHh4EGoRXjxBlJXgdb6o55e5LPB8/rItX+iBMmg0AAAAAXPVMVgAAAAAAAAAA5fh0DRZ+your_sha256_hashzBmb/your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 9, 1559579735, 'AAAAC2r9Ezr3P/vX7VbCZdbTt+N0sNFwUc0c+Ontt2vvzbR7I1aOU+Htzv1YyoOW+your_sha256_hashrCTvIwO6TMpu21+S2UXhqLKWTHGAwX5y0FVUEjDd5YDib7wh/your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 10, 1559579736, your_sha256_hashs/glcnGVHESVFFU6LiK9fweLLYkAAAAAXPVMWAAAAAAAAAAA9+jjsWK6v6g0OYMFxTo1+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 11, 1559579737, 'AAAAC2KtSzqrwqk+CUEYlo5hFNHhWvHft1P1twSMAb5fs+m577MF5b1Iei3zHF9EAmsLT84l7YbAUSH/7F/your_sha256_hash+YEP609+t1m4CDabbFVCwxaT1VIvC4WC/6n6mrrOSvo/your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 12, 1559579738, 'AAAAC15eiTsPkHindgP2BolAXSTSQkfQ4ZsA+BXSEr77gZZWFSHyciAPeIm0Aaehq+XrRbfBf2YWt2omzfQnMSnMapcAAAAAXPVMWgAAAAAAAAAAc4P3o+BJiJvXXIfj/eVQPF1RRIrnE2nfX0a4J7WFySrDTzVqaL+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 13, 1559579739, your_sha256_hashb/9pcKohIXiTntWz+SxP2oy5B3sAAAAAXPVMWwAAAAAAAAAAFkWUNyF+w67R5n+HgDNebl5snV2YlBsz3xLTqBMQsQEt+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 14, 1559579740, 'AAAACwwUpGX2AAEwOlZv7BXyy82ierw06ci1G4iVSi+bMPaxv5ctYdcMSEm83sSvokp32C1S/your_sha256_hashnsCesjn+1C1/HG0v1rd27oO7+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 15, 1559579741, 'AAAAC6ZK8cCPtdKKvNH8na6Myxv8m77Bt7R34U/KLLrcpJB8d2gda9aXjRx0ma+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 16, 1559579742, 'your_sha512_hashyour_sha512_hashXcVnEb3JYJf/your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 17, 1559579743, 'AAAAC29LfJV6QqMt2DDUMhLVu6/rkiFTjkAQpCNFUzDdsJsrycO3J/Hp2cEvr433GPeq3XtJHPV8+your_sha256_hashIoB9xFzAOqPS/your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 18, 1559579744, 'AAAAC4r/ACZfuYQSkC351cMOGUoBrb15JJDvWINkeNudjjFWp7Hi+kDBELcUYlO/VeJpvL6v5oIQgjfBH9t2VsYU0vYAAAAAXPVMYAAAAAAAAAAANKxyAMoyM/gn59hBYzLxbU28Wbix3QHy7s086vpSY4dsfsh10yperbmIfKUawooPYNqN/QB2jK4qu2tAX+your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 19, 1559579745, 'your_sha512_hashyour_sha512_hash/your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 20, 1559579746, 'AAAAC84c16qw4ioegcib0XHQvaXY3sKIJBQwJfbw0VodeswY+your_sha256_hash/hxaEW2XNJB3iDf23eYfGcwcQ862pSt7OJ6FF108Ia/Chyidqfse/a37FifLAlDK+your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 21, 1559579747, your_sha256_hashkXmeeBIXdgWbyOJwbnsx+QUdaKPfAXYhyvkzKQKE+TYbh3dMj8cX0gtf0+your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 22, 1559579748, your_sha256_hashhCFfrZwMHMEDMF1phwp/kIju/your_sha256_hashup0aPFduVIsJ+nfz9INCJSr58NOPxPNQTKZqTTYzS5+your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 23, 1559579749, your_sha256_hashOJr4C3JaQHm7MPBQisdC4hkzxS8AAAAAXPVMZQAAAAAAAAAAeu6ZLz++eOyW3/HPY616v+oF2X756WCT8G93ApdHifosUOpCb+sObcpszPtP9+Hy0MHmzxhpzAP/your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 24, 1559579750, 'your_sha512_hash+te5AAAAAAXPVMZgAAAAAAAAAA1ziHajubDrj1Iu5EQ8YZB24Czm29AJPdaJnsX3+A+fV3KfdeiqJqyyhfk+7mwWUB0rbbvt6y640hL/your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 25, 1559579751, your_sha256_hashrAvxlPmuUHgxbk+pkX450lbiUBIAAAAAXPVMZwAAAAAAAAAAM9gLVDvjwMuVZ+njRjvvMxlhodRg/VJpuapiCb0y9SDsWIE0ZZXCJ72Msa/6UrUdTDk+your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 26, 1559579752, 'AAAAC/VMAJfUQf92xIfU67GPXl9SxaUcqWgAv5uBgpV5Cjd4ObBqces8zXZAjfLGaR+your_sha512_hash+eBl1mZgQ2kBgOlDC3yM4k1XFSkg8nteVJMp/your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 27, 1559579753, your_sha256_hashUMs8GlnyPDTxRqoRKW4/your_sha256_hash8Mb4SXYTMU9R5pbFQB/phEpxiGicTklBEXUSQW8XrtV0H9BN+AAAABsN4Lazp2QAAAAAAAAAAA+your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 28, 1559579754, 'AAAAC5ArD14e5Qa5+daI5GRnO9ovqgVods3+your_sha256_hashagAAAAAAAAAAdQ/your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 29, 1559579755, 'AAAAC8FEWVIv5C4tELKaNwu+ulE+Su5CkoLb5EhCg10bRDZjMHDsmJoTpyfMr0n7ZRj1PtVYciwS5F25/ebV5KmPHyIAAAAAXPVMawAAAAAAAAAAbaCD4RbfEqSrI+qpIyzzUU+bYYMJsRw3pHcmHwQrvaAiHUzESb7mxWgb6rD9i+bvYadjhxMRG/exoDWp8/your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 30, 1559579756, 'AAAAC5NsHh8L8a+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 31, 1559579757, 'AAAAC3UP7fiBkT5QhCfXxvGjHwMs/9i1E+qy/KPEgnQ8kuFscIqVmjyvqIlbFdmmCscTHwuF1xf/your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 32, 1559579758, 'AAAAC/4TNmxMU8BKZexF5d11QNMyqMOEVvcaRrjBl6j2FhSzbdxxbfFDV+si6AGRvL5s+oVcsY8ZwkF5kL9EBypi7k8AAAAAXPVMbgAAAAAAAAAA2zD57d2oUw2L6murtm/your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 33, 1559579759, 'AAAACwXnfLlgYMsbVDdF+I/jbjJGtFsmqe5ZfxlP36MykVrGueMGwKUy3zdCJEbcnLnxoZEU3V59aYr7+your_sha256_hash8mobr412wEIdjVcHb3VJhQAtunNPjhphkSfh+your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 34, 1559579760, your_sha256_hashDA/twCtsyMwX/BNjTK2j1A2cLpIAAAAAXPVMcAAAAAAAAAAA/bE+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 35, 1559579761, 'AAAAC+CQW9YWl4FefdgKb3rY6DB3pTBKsGgYJeWoIL+8wS29TrWUd6O7M4S0fe8UEcdhlcmYcyd0+obgadQjYZA/your_sha256_hashNswxQTtINH5UegpdO02kZozOfs6/your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 36, 1559579762, 'AAAAC/CQZV8NXO5YMifQCIy3ryt4D2/ZHoNqQRersR1Hm1zht40cpv6aCNmZXclj0Gp1g8/QTb+your_sha256_hashnylcrqmvMlFLS+fEnxfEWjlbDeIddDXeCKT79jo4fwyV0ymPAz6/your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 37, 1559579763, your_sha256_hashFk8iW9Jb1yQL/your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 38, 1559579764, 'AAAAC/OZYefeUwA9moeCdzQwkcYOHq3vujMgK+CDNMrmeHvvvdOMXcZQv2fCMQnVMUfKBJ7XSFWbgB/wE3Bs7er87uAAAAAAXPVMdAAAAAAAAAAAN/+dCsXSVcipJLX5fSVl/dtD8pFe+iZnfnNZ2g7vXj/your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 39, 1559579765, 'AAAAC7gpaoHLPEaMR/EAZirLM34WiGFzLOIR3dowIYCY6AbOHivLxyP8I+your_sha256_hashJb9kfcJVMyCg6meb0kov5dW9Ok8EEep2bE1Tj7RqD1/0Q6+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 40, 1559579766, 'AAAAC7w6WpU4SP4stG7XXs6+a6CchW1H1v6gJSI4WNjceq2V/inIeGJFrV1RVU+xprIZRH8KVaI74l/TAt+/your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 41, 1559579767, 'AAAAC6b1vHTalGlwlJzIpYt/wMpSqWJ/your_sha256_hashXPVMdwAAAAAAAAAA3texHWkeXlsh8yl52JzE1M7p/8uzk36DdlbvwdqWw1Y07THsoEsB7/w8RQjJ40lpM5K1EboCeT8y/j///your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 42, 1559579768, 'AAAACyKwa0CURsHwwnivDOFa2ZZXoP8hlqW/7e1W1p02d5ydI1zHatyour_sha512_hashCqRR0k9oMQPLWs8+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 43, 1559579769, your_sha256_hashyour_sha256_hash1e/your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 44, 1559579770, your_sha256_hasha512_hashBcJqiGW3wjmJ+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 45, 1559579771, 'AAAAC17vEGeg+9tBMh5HKhwU/your_sha256_hash9cAAAAAXPVMewAAAAAAAAAA2s+Yd36GUBmFrCn8nxzR3G7G6BlWwDjWIvSuQxGMICY92RjX5DbOxYhJMM/your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 46, 1559579772, 'AAAAC2mEDoH+flhKrQ8i36ie52fNNSRJdWPkca+K9ntT+your_sha256_hashAAAhkYgTYVFfiNxywZFyKUj6rUeR42SRzNzOnasgV/WuDvtwNkabdQ+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 47, 1559579773, your_sha256_hashayour_sha512_hash/your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 48, 1559579774, 'AAAAC7SeoOsf5in8LJ3yyXa8mXH+1v2NJX7Oc45Fw/your_sha256_hashAAAAAAQNg4cr4Do7quX33o4rbaXa7+BDdHc8PbTEXBcuQETP8rTgcb7n3UXEG0av8iuvhxWlCZJf64MCH+your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 49, 1559579775, 'AAAAC0G1GOs1cxYtujlInV55wcBO5sbQjBkxG1v32bj5qhfWeVRF+FiW1Qlc+3u1mBcZ84ULRdo3+cTo45YRJDO+PS4AAAAAXPVMfwAAAAAAAAAAsSOLB+Fh7PI1BdmA+nlx5DdeXSAZY7OnyHcuyeMEmJA3bk41wtryM/3lghnAAVnP/iB46990qItDfm+your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 50, 1559579776, 'AAAACw3IYQ7GSecY1FCDtpEFFTtWib7GdCenIFi5NX7rCs6si0bTsBbSdDOFoh+y5f8cl3t+mLZfzrhHG/6bxBlR1MwAAAAAXPVMgAAAAAAAAAAAe2zMUWV2ofxxSJUd0hgEpW+dkyour_sha512_hashJAAAAAQAAAAAAAAAGAAAAZAX14QAAD0JAK62qfjGXDyj+1pXTLAes6//PdiHMIl5gHOkTjeXO/your_sha256_hashyour_sha256_hashAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 51, 1559579777, 'AAAAC7HH1xrrqHCxYrAiwxresmYU5jBwkoZHobnGvFGrqD0Nt2vJTHsKyMHdVCH/gs0c3Uyour_sha512_hash+peuNPsYlfeIN/BQ3+xOQZ7d/your_sha512_hash+1pXTLAes6//PdiHMIl5gHOkTjeXO/your_sha256_hashyour_sha256_hashAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 52, 1559579778, 'AAAAC5BTQ1Dz/qCmpVneIHaV4oLomJCVRII6xccAD3arrcCOzeFEa2j6tGG8gbM/1MR8aABY/PxuO9Zz2s9mxGnLVoQAAAAAXPVMggAAAAAAAAAAdFs0uvdku2e14ZLZNY/inkD0IgG9m+your_sha256_hashQpWNjKAAAAAAAB0PCRAAAAAQAAAAAAAAAGAAAAZAX14QAAD0JAK62qfjGXDyj+1pXTLAes6//PdiHMIl5gHOkTjeXO/your_sha256_hashyour_sha256_hashAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 53, 1559579779, 'AAAAC717Qp29j479G1btcCvxg+your_sha256_hashyour_sha256_hashQ6M9y+p/ptNZ6zB2qi6pqwHFy5fyour_sha512_hash+1pXTLAes6//PdiHMIl5gHOkTjeXO/your_sha256_hashyour_sha256_hashAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 54, 1559579780, your_sha256_hashyour_sha256_hashivYYP9btnu+qwf/your_sha256_hashpWNjKAAAAAAAB0PG9AAAAAQAAAAAAAAAGAAAAZAX14QAAD0JAK62qfjGXDyj+1pXTLAes6//PdiHMIl5gHOkTjeXO/your_sha256_hashyour_sha256_hashAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 55, 1559579781, your_sha256_hashtPVM4DeWbUf/your_sha512_hash+your_sha256_hashAAQAAAAAAAAAGAAAAZAX14QAAD0JAK62qfjGXDyj+1pXTLAes6//PdiHMIl5gHOkTjeXO/your_sha256_hashyour_sha256_hashAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 56, 1559579782, 'AAAAC5/miHFLpGK7K621IqKPQ1Z4zDrTg9xK/ZGowR41o9c1AfruE1INcN+your_sha256_hashcnqBlfAQ0qwiv8T/bow/WPTIANo/ERREqQ4CwaeHZFm+your_sha256_hashAAAAAAAAGAAAAZAX14QAAD0JAK62qfjGXDyj+1pXTLAes6//PdiHMIl5gHOkTjeXO/your_sha256_hashyour_sha256_hashAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 57, 1559579783, 'AAAAC0SUOqxg9zeCLLuO0J2tOs/2D5gR25zFbv4v1ggu1x+wSZEueVQpVrdX4o+your_sha256_hash3xcPTBAGeuB6CsnSMTpP8SjSsd9oj9l8Q/bO18WpeHxO1ThKTGbAtIm5RC4yqtX4KLaRH/your_sha256_hashjGXDyj+1pXTLAes6//PdiHMIl5gHOkTjeXO/your_sha256_hashyour_sha256_hashAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 58, 1559579784, your_sha256_hashKEHVRaXQBzZzXDjrizmBZaG28WoAAAAAXPVMiAAAAAAAAAAAGMfQBF/your_sha256_hashl0Kspveak/your_sha512_hashPdiHMIl5gHOkTjeXO/your_sha256_hashyour_sha256_hashAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 59, 1559579785, 'AAAACw6RZi1hu3so+vV1uaNQV2/EDxbjghdzEJZDlLsi3mWL+ICn3BLQXRs7fl4siWFC2ldDe+71dfZ+Ot6SzuRKboAAAAAAXPVMiQAAAAAAAAAAlNMwBDUEqtiETmU+aulkMrDuVtBffL8sVeqm0xm+your_sha256_hashAAAB0POxAAAAAQAAAAAAAAAGAAAAZAX14QAAD0JAK62qfjGXDyj+1pXTLAes6//PdiHMIl5gHOkTjeXO/your_sha256_hashyour_sha256_hashAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 60, 1559579786, 'AAAAC4XnJmTNGDUiYoZvBTVUATYrqM6movR+JxZHGrgNeoII58fVvlrThcLsRhZ/MWhMMf/your_sha256_hashf+ESisKsoFpU1cBZvSc7chbF3PheXP+z7+your_sha256_hashAAAAAAGAAAAZAX14QAAD0JAK62qfjGXDyj+1pXTLAes6//PdiHMIl5gHOkTjeXO/your_sha256_hashyour_sha256_hashAAAAAAA'); INSERT INTO ledgerheaders VALUES (your_sha256_hash, your_sha256_hash, your_sha256_hash, 61, 1559579787, 'AAAAC/yEPSFDx2vSnrOx/93D1I1gx6Hc+your_sha256_hashPVMiwAAAAAAAAAAosEhvRTCvadI/J9r+8kB+lYA6OphTjHH/5o2+iklI4P4rvPHAx3asi1o47MP12rNCQSIUVDj1Vrdu81your_sha512_hash//PdiHMIl5gHOkTjeXO/your_sha256_hashyour_sha256_hashAAAAAAA'); -- -- Data for Name: offers; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO offers VALUES ('GAXMF43TGZHW3QN3REOUA2U5PW5BTARXGGYJ3JIFHW3YT6QRKRL3CPPU', 1, 'AAAAAA==', 'AAAAAVVTRAAAAAAALsLzczZPbcG7iR1Aap19uhmCNzGwnaUFPbeJ+hFUV7E=', 2000000000, 1, 2, 0.5, 0, 19); INSERT INTO offers VALUES ('GB2QIYT2IAUFMRXKLSLLPRECC6OCOGJMADSPTRK7TGNT2SFR2YGWDARD', 4, 'AAAAAVVTRAAAAAAAdQRiekAoVkbqXJa3xIIXnCcZLADk+cVfmZs9SLHWDWE=', 'AAAAAA==', 100000000, 1, 1, 1, 0, 24); INSERT INTO offers VALUES ('GB6GN3LJUW6JYR7EDOJ47VBH7D45M4JWHXGK6LHJRAEI5JBSN2DBQY7Q', 5, 'AAAAAVVTRAAAAAAAfGbtaaW8nEfkG5PP1Cf4+dZxNj3MryzpiAiOpDJuhhg=', 'AAAAAA==', 2000000000, 1, 1, 1, 1, 26); INSERT INTO offers VALUES ('GB6GN3LJUW6JYR7EDOJ47VBH7D45M4JWHXGK6LHJRAEI5JBSN2DBQY7Q', 6, 'AAAAAA==', 'AAAAAVVTRAAAAAAAfGbtaaW8nEfkG5PP1Cf4+dZxNj3MryzpiAiOpDJuhhg=', 2000000000, 1, 1, 1, 1, 26); -- -- Data for Name: peers; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: publishqueue; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: pubsub; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: quoruminfo; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: scphistory; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 2, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashUlSQk9VwpPmG2+your_sha256_hashLwqSWZgt0ngLt0zkmOApnWe+GS+your_sha256_hashLm2XvuzUAW8SwZz0DxGe5xkYxrg+weZ8JtB3HgcSBQ=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 3, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashyour_sha256_hashApnWeyour_sha512_hashBeiQM9xQke5izGc27vYcgaCA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 4, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAAAQAAAACAAAAAQAAADBL5d5/gVdchPaRzVdx/Oc7UBg/your_sha256_hashpnWe+GS+RbRXMpDelWNPmmAAAABAO/your_sha256_hashVcGSOKr/mKk0j9gsILAA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 5, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashyour_sha256_hashApnWe+GS+RbRXMpDelWNPmmAAAABAAYb43jmh1IDIqDuH2ifTkDgv+irEQhrbnhAmFclyoLeEUzBTLKko98FjLFReIjQ7rT1Uhj0kp3/S/ZVQl2HTBg=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 6, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAAAYAAAACAAAAAQAAADA3L3uT/QXYBYfY8/qMHGh0hcyCOZEsnCEO07y1BmB/ywAAAABc9UxUAAAAAAAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GSyour_sha512_hashBxwBo8lXky1zMzW4s9xAw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 7, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashyour_sha256_hashApnWe+GS+RbRXMpDelWNPmmAAAABAHMeuajbZn8hqAtUDrlCM1G5DvsbFwQOiDc/meoSQsBDt3sE6koOKUMLYCp66K1des9xpR/snj4dpXRoVwowDCA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 8, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAAAgAAAACAAAAAQAAADBn+BUeHgQahFePEGUleB1vqjnl7ks8Hz+si1f6IEyaDQAAAABc9UxWAAAAAAAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GS+RbRXMpDelWNPmmAAAABABfeId9w7hBgyNCLhCbCvKZbeP/bo7KHwfFmGA3fAs2+LntyfOdAsmgwv47ZxON4SFeBZrWNDkmKpsKIPwc18Bg=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 9, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAAAkAAAACAAAAAQAAADAjVo5T4e3O/your_sha512_hash+RbRXMpDelWNPmmAAAABALXg6drtTi1/YP2KGu2ZEaE5Hx4M//81Cjj7F/z+q8jBw2PY58Y3m5Vs0QBkWw5FOrrAV/GYfDsumN7AMEoYsAA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 10, 'AAAAADctOgON3CTMpA8G1XJr/your_sha512_hash/B4stiQAAAABc9UxYAAAAAAAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GS+RbRXMpDelWNPmmAAAABA7N/e5jJ4Bk8M0y6KXA0I8rCsiQoBjV8Pgy/r4hQqy5B7f/Oq70K2RnW7pD9OpbGGOV4/YXoIRFgnby9gdgAFCw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 11, your_sha256_hashAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GS+your_sha256_hashWjM/0DAg2tEKcjvTdVjJJzRsR37rT8DY5IL4nl8EAQ=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 12, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hash/your_sha256_hashpnWe+GS+RbRXMpDelWNPmmAAAABA60B2GXrQLwOEUu5Nfn9kefuvJevcU2QB/YDBs7KJhiKkedkHzWZqHtFcxku1ydI1jZEGAUFHbe3c59dtMGxTCA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 13, your_sha256_hashdYHeBbX9xM4DCJKMZXGXYfyFaidAaXgnVTLSEf7X6eOZmTXqUW5iv0RKz5wNG/b9Bw5A5krbAA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 14, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAAA4AAAACAAAAAQAAADC/ly1h1wxISbzexK+your_sha256_hashgLt0zkmOApnWe+GS+your_sha256_hashKq5cJ+S6UAA22APX36ELPT3YJQHHc5RmaurnjoOlCw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 15, 'AAAAADctOgON3CTMpA8G1XJryour_sha512_hash/A+JAS8QAAAABc9UxdAAAAAAAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GS+RbRXMpDelWNPmmAAAABAqSkpRrwWEAu4NPwNPDWm4s5q1Of+136lBY3/EL3F2El1WTCBExFwYbLsG5pMpE9Y5bGuR1aTNGr2DRAsqca0Cg=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 16, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAABAAAAACAAAAAQAAADBjWABRYEbBBA8ypjo8/wUXKmmQeiwpHhMPXCxh3/your_sha512_hash/lAO0zMCQl6cC/ilsYPtA0g5I6DN6/Uk036Qr59WtGnb3v2mSwCfsH90F+9fO1L5Dh4RMlNN2q89CA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 17, your_sha256_hashrnXwZOKECHE1jvDZgIJcvv41b8T3R2YgF0sE/Kpy3G0R1F4K0O9hHbINeg65S7cuGyTabc5rAA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 18, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAABIAAAACAAAAAQAAADCnseL6QMEQtxRiU79V4mm8vq/your_sha256_hashApnWe+GS+RbRXMpDelWNPmmAAAABAOzKkxBDxHIeWokkLsrPpqyUlBwkvS77LuHpqGr+lqKflLXlUQFVfq+3XG+M3LHHDmhlRWnKtxlr8DHv3mTZKCw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 19, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAABMAAAACAAAAAQAAADBpj1IizH7abOVuT5/1ISi96ekuj8snJQ+HoD6D5UXyngAAAABc9UxhAAAAAAAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GS+RbRXMpDelWNPmmAAAABAGYXRJJLOQFIErZBhxk0BhQZKHVIRR0OJFF35ENUx+/t/XWqd2+gPsnzBN9sHR9TOqCvodArOuEV2RvGTwcYWBA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 20, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAABQAAAACAAAAAQAAADD5+jCwtwrPsnV0TfmAqdhExrbMDdyp+6g1QzV96Jk+7wAAAABc9UxiAAAAAAAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GS+your_sha256_hashEC2lmI48hKErIRW0m9nWcFVtM2R703Qbgemk/CaxDw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 21, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAABUAAAACAAAAAQAAADAWjv4aVqzaOKmgaVr2+sssrSigCIwjkZB46QtX+6P1wgAAAABc9UxjAAAAAAAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GS+your_sha256_hashEqE5uFXTiPWMGVOAYiMmFpcxHbGUItr4I00v5/xnCw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 22, 'AAAAADctOgON3CTMpA8G1XJryour_sha512_hash+QiO7/your_sha256_hashhash/RRzPoWZMlXHYI+tD6t3NKBQ=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 23, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAABcAAAACAAAAAQAAADA4+your_sha256_hashAABwLwqSWZgt0ngLt0zkmOApnWe+GS+RbRXMpDelWNPmmAAAABACncKAzoco5PObWW7mRg26eva48+FF24gIUaDJN3FjbPNhNI7dgBoOiU91viCqjLgAoAxvKRTCc0hORPtdArCDQ=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 24, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAABgAAAACAAAAAQAAADDeEzpzpLLABFKc9vdy0Xp+hV1uDLGGn9Hj+z5YT617kAAAAABc9UxmAAAAAAAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GS+RbRXMpDelWNPmmAAAABAxerUNZGvZYgte6FaNzA73v7p4ZS+ofheMjJoEvcbr4IM1U8j88PBmdlyES23swPdR2DGlBfmPzGAoCRIs7aGBQ=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 25, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAABkAAAACAAAAAQAAADALl2NjB4KR+your_sha512_hash+RbRXMpDelWNPmmAAAABAh7XF37XyWXc1LSzLx3+T3G2rVPU3xiD+03NjjB2yxwKPgVHYkBLYkzZiBQ1LeJ7qhvHcd/z6AcA+43bu3JbGAA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 26, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashA9Xgv4250+BJAl2wTnwAAAABc9UxoAAAAAAAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GS+your_sha256_hashcVCuOsZOOKZuXCJ8dLfVzlRN4q2qR/hslQZd+dB0Cw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 27, 'AAAAADctOgON3CTMpA8G1XJryour_sha512_hash/CBllo3AAAAABc9UxpAAAAAAAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GS+RbRXMpDelWNPmmAAAABA1x3hiTZYWD9lbHZSR8A0l5Gk1mIai2WQwX6+J0CDlS0evof5waRgg92HEvWtDiI97332+V3VhALjYmthnzn7Dw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 28, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashk6Y4YJEg2Y9wS+YGfmgAAAABc9UxqAAAAAAAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GS+RbRXMpDelWNPmmAAAABAhVk33BGL5BzspaumzHEQ9/7Ap9ZyPbdK0A/eGaBsJN4BdIuHSPpjB+VlvJKnKIgGLy1yjD4M/1vqPU+ICAAbDw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 29, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAAB0AAAACAAAAAQAAADAwcOyYmhOnJ8yvSftlGPU+your_sha256_hashkmOApnWe+GS+your_sha512_hash+Z8x8Nvf7NiDRJ7jXrBg=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 30, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAAB4AAAACAAAAAQAAADCTM5fPmZyour_sha512_hash+GS+RbRXMpDelWNPmmAAAABA1z/UtFZkvnZH9I3+your_sha256_hash4R3oCg=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 31, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAAB8AAAACAAAAAQAAADBwipWaPKyour_sha512_hash+GS+RbRXMpDelWNPmmAAAABAgbADn1DDkaOdsJRX+1u+NfkYkOOS2RvFfXRBqxAkQIfejE/ZlTIzkZLKCVhNG9UUVyHuNjjR258L8G1i/tYXDw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 32, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashyour_sha256_hashApnWe+GS+RbRXMpDelWNPmmAAAABAme1ZWb5ZisNOoB9yQeq0Ka2+jAMTZteGiWL5CPE3O/Nx4MJp6q4Z/oJnmYfwUcmnM2QLYiV0Thfmg9JFRhOzDg=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 33, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashyour_sha256_hashApnWe+GS+your_sha256_hashnzBvqjFebekwPcjWZb8sn3HiqdoJSu4nR947fL3eBw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 34, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAACIAAAACAAAAAQAAADDK00km4ri5GkGo0ToMD+your_sha256_hash0zkmOApnWe+GS+your_sha256_hash+z8CeEye/HxoNckIbfYJ9Fr4tqi1pLCzUQSxPbzBAA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 35, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashyour_sha256_hashApnWeyour_sha512_hash6XB3RoW3bLwIfOr+6M492BDA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 36, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAACQAAAACAAAAAQAAADC3jRym/your_sha256_hashLwqSWZgt0ngLt0zkmOApnWe+GS+RbRXMpDelWNPmmAAAABAdjKewmSukGCl7MrMx9liABLlUu0B/H1W7unx3IvV20SuBBIr8f6mLIAxSxEHgiT8DSkyGQlexjHdFakOHbEoBA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 37, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAACUAAAACAAAAAQAAADCN5d+zlFoL+your_sha512_hash+RbRXMpDelWNPmmAAAABAcsZNljpTmOAJW9T1S+SY4Db9oYkOS7VXEZ2jC/+sVa7iumM4ZPzO5/+opcP8hxg5P5gsymU4r4KFi1aueHmADg=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 38, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashGS+RbRXMpDelWNPmmAAAABASL+nj9+n9uSDVqvOP2SkwUpIpxrtpxS0klcX84YmSNzW3SzSze7ZHu6wD1nf+C1SLjOHJwghcPl2N/yRjnzIDg=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 39, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAACcAAAACAAAAAQAAADAeK8vHI/your_sha512_hash+GS+RbRXMpDelWNPmmAAAABAb9YhSUv6XQGX8Mb47+gZSX/UrGQrMCYwT8kEJxtFQo/EBvAEQ2WSbDSNKqyx3sFtaK7E6qkc05BkJqWzS6kQBg=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 40, 'AAAAADctOgON3CTMpA8G1XJryour_sha512_hash+sl4cnnQAAAABc9Ux2AAAAAAAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GS+your_sha256_hashnwfNrtVVNcrdoxH71ZZXujT/NT3YnQHToHzTvYkdDQ=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 41, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashyour_sha256_hashApnWe+GSyour_sha512_hashzhK86mQCPv/kAgmFw00Cw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 42, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashyour_sha256_hashApnWe+your_sha512_hash/l4t7i75FvBh+me2PeNtRAA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 43, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashyour_sha256_hashApnWe+GS+your_sha256_hash+sEolTle9uBE6RPOsA4OLSLTKxH1iKSHEO88dgjxDg=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 44, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashyour_sha256_hashApnWe+GS+RbRXMpDelWNPmmAAAABAYtj7hA8NuZiNVolpaniesCkJOrtOGwMd5FLWxDen4/2ggpXMfyh/wdOrWnh4ea5qdKAxzVZ0jOb5sWQR/JolBA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 45, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAAC0AAAACAAAAAQAAADCQYIcecDoo52g9xK+npHGGTaFRGUYXVU/ahJU0GQMj1wAAAABc9Ux7AAAAAAAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GS+RbRXMpDelWNPmmAAAABAY9RuTvfmAuAfn3375MIQ8rhhgzT13uAD2CU6KfVL7+tSH3xbvMm/tChux+YqauApDQZ6Tzv/JKx/ZK1d4TzVBA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 46, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashyour_sha256_hashApnWe+GS+RbRXMpDelWNPmmAAAABASYfhas+zMU3PwqERMN1iuYCPdHs2n+jNhfZPSimUwNz0HKua6drdCsDWsqzKFnnu1b3voNlgyWXMrTnbt9SADQ=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 47, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAAC8AAAACAAAAAQAAADDURXrU/mgQbWOm/your_sha256_hash0ngLt0zkmOApnWe+GS+RbRXMpDelWNPmmAAAABArZZ3GmclY3+9jBJKLRCTBw01Nxi5aXHwXBC1C+/ulXU9tlK2YruGVtmZ3z0lckk3Gg7OEhcrgcqMI+mvLLZmBQ=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 48, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashUAv0aZUqUxVsehoBPLAAAAABc9Ux+AAAAAAAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GS+RbRXMpDelWNPmmAAAABAPtSCDf2JruJ/your_sha256_hashEyDAw8mnAA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 49, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashF2jf5xOjjlhEkM749LgAAAABc9Ux/your_sha256_hash2AoYi6FWCpezv9CA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 50, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAADIAAAACAAAAAQAAADCLRtOwFtJ0M4WiH7Ll/xyXe36Ytl/OuEcbyour_sha512_hashzvx10WHiUoOy5pMRX4WxuB2Gld/ZQ4SMxcP3Mg8IrmIFaHjx+GyyuTThqqMe0MQbnvma0VqyRVUeW8xyXGDw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 51, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAADMAAAACAAAAAQAAADC3a8lMewrIwd1UIf+your_sha256_hashgLt0zkmOApnWe+GS+RbRXMpDelWNPmmAAAABArMim0aW4V5A4qZjwpYt+VhqBjIOBxC/IG83mJqgBCKRFqhZVtiLkPJhlyX8uC2wXQSv1b+xluy/ueyLQpgW0Aw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 52, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAADQAAAACAAAAAQAAADDN4URraPq0YbyBsz/UxHxoAFj8/your_sha256_hashnWe+GS+RbRXMpDelWNPmmAAAABAljO2tcOMxZy0Txf97VW8lTogemb94E0wI6MzWuzdI/SuOFnT3r+D2X5KXtrqCZDOq27092WF2psg9iSwFGa+Cw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 53, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashyour_sha256_hashApnWe+your_sha512_hash+qs3R9wKwkPsoZ/hVrZrUDw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 54, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashSa0FwKQVccPCRM+hiTAAAAABc9UyEAAAAAAAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GS+RbRXMpDelWNPmmAAAABA3Qhad1yWb8CXpugm/5YChV3OuJQBWcE7vY86YqH0h4g/ryc99YjYyYua+l3QUejF77Cy1szzCtI5NwgePfYvAg=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 55, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashtR/your_sha256_hashWe+GS+RbRXMpDelWNPmmAAAABAemcmk4ICf4N7wunMr0a1ZwlpkaHKK+leMkFWlGl4tZbfO9Lmuu4PZJN7YcFrfiWybh9jweIc2MBAWL6GLXlDDA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 56, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAADgAAAACAAAAAQAAADAB+u4TUg1w35pG+QCUw9zbZ1OCCCJ/your_sha256_hash+GS+RbRXMpDelWNPmmAAAABA3PHgZEBjiyByyF2YG9We7jMk2Tad6EswJH+V4+UABc9+i+e5Y2eay4UGIMHP1n7u5gQF8tZm777wbP9WHFx3DA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 57, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hash8RCDeEOAwZdXNZ1+DhgAAAABc9UyHAAAAAAAAAAAAAAABwLwqSWZgt0ngLt0zkmOApnWe+GS+RbRXMpDelWNPmmAAAABA2fmBWSFyA6w0z6v9OUM7nZt/KV/UpUP9X1GMco/H04DBaBVx1PHzxol1SvSkrrxoqCnwknZKesKiI8/aUgbDDA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 58, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashyour_sha256_hashApnWeyour_sha512_hashZ1joWAy45REwb9f8VCdyBHCA=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 59, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAADsAAAACAAAAAQAAADD4gKfcEtBdGzt+your_sha256_hasht0ngLt0zkmOApnWe+GS+your_sha256_hashpNltKMPYWRhSrY5y39Z5c3XKm/KAXkB0+BAtMZA8Cg=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 60, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAAAAADwAAAACAAAAAQAAADDnx9W+WtOFwuxGFn8xaEwx/your_sha256_hashmOApnWe+GS+your_sha256_hash4fJkN/59U4eeumlZXrMZyePQnhCKjJrZ4xkTZFZGCw=='); INSERT INTO scphistory VALUES ('GA3S2OQDRXOCJTFEB4DNK4TL72ZHIE6ZXTIZ7POZ62I4DFOOJLSUACND', 61, 'AAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+your_sha256_hashyour_sha256_hashApnWe+GS+RbRXMpDelWNPmmAAAABA8/Qrhku9ML9bbQDdUA6l5fik50kMPmaTHSW+3R2vVleaXtr1oDqYzezccDuiKbs7eFEFo72kxkmlhkHiGUG1AA=='); -- -- Data for Name: scpquorums; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO scpquorums VALUES (your_sha256_hash, 61, 'AAAAAQAAAAEAAAAANy06A43cJMykDwbVcmv+snQT2bzRn73Z9pHBlc5K5UAAAAAA'); -- -- Data for Name: storestate; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO storestate VALUES ('lastclosedledger ', your_sha256_hash); INSERT INTO storestate VALUES ('historyarchivestate ', '{ "version": 1, "server": "v11.1.0", "currentLedger": 61, "currentBuckets": [ { "curr": your_sha256_hash, "next": { "state": 0 }, "snap": your_sha256_hash }, { "curr": your_sha256_hash, "next": { "state": 1, "output": your_sha256_hash }, "snap": your_sha256_hash }, { "curr": your_sha256_hash, "next": { "state": 1, "output": your_sha256_hash }, "snap": your_sha256_hash }, { "curr": your_sha256_hash, "next": { "state": 1, "output": your_sha256_hash }, "snap": your_sha256_hash }, { "curr": your_sha256_hash, "next": { "state": 0 }, "snap": your_sha256_hash }, { "curr": your_sha256_hash, "next": { "state": 0 }, "snap": your_sha256_hash }, { "curr": your_sha256_hash, "next": { "state": 0 }, "snap": your_sha256_hash }, { "curr": your_sha256_hash, "next": { "state": 0 }, "snap": your_sha256_hash }, { "curr": your_sha256_hash, "next": { "state": 0 }, "snap": your_sha256_hash }, { "curr": your_sha256_hash, "next": { "state": 0 }, "snap": your_sha256_hash }, { "curr": your_sha256_hash, "next": { "state": 0 }, "snap": your_sha256_hash } ] }'); INSERT INTO storestate VALUES ('databaseschema ', '10'); INSERT INTO storestate VALUES ('networkpassphrase ', 'Test SDF Network ; September 2015'); INSERT INTO storestate VALUES ('forcescponnextlaunch ', 'false'); INSERT INTO storestate VALUES ('ledgerupgrades ', '{ "time": 0, "version": { "has": false }, "fee": { "has": false }, "maxtxsize": { "has": false }, "reserve": { "has": false } }'); INSERT INTO storestate VALUES ('lastscpdata ', 'AAAAAgAAAAA3LToDjdwkzKQPBtVya/your_sha256_hashyour_sha256_hashp0F3j2FgAAAABc9UyLAAAAAAAAAAEAAAAANy06A43cJMykDwbVcmv+your_sha256_hashVVsOzEtTHhxgyad8jB+d3lVLqQkWdzy7jLhbHsU5c5+your_sha256_hashAXPVMiwAAAAAAAAABAAAAADctOgON3CTMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAQE7pSFYrembN+EC1JN2bV2zH+your_sha256_hashyour_sha256_hash4qYf/skL1KT0cVigZcHBJczAwAAAAA3LToDjdwkzKQPBtVya/your_sha256_hashyour_sha256_hashdJ4C7dM5JjgKZ1nvhkvkW0VzKQ3pVjT5pgAAAAQPP0K4ZLvTC/your_sha256_hashpYZB4hlBtQAAAAAB/IQ9IUPHa9Kes7H/your_sha256_hashyour_sha256_hash2WS4AwAAAAAAAAABHK0SlAAAAECcI6ex0Dq6YAh6aK14jHxuAvhvKG2+NuzboAKrfYCaC1ZSQ77BYH/your_sha256_hashMpA8G1XJr/rJ0E9m80Z+92faRwZXOSuVAAAAAAA=='); -- -- Data for Name: trustlines; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO trustlines VALUES ('GANZGPKY5WSHWG5YOZMNG52GCK5SCJ4YGUWMJJVGZSK2FP4BI2JIJN2C', 1, 'GCHC4D2CS45CJRNN4QAHT2LFZAJIU5PA7H53K3VOP6WEJ6XWHNSNZKQG', 'USD', 9223372036854775807, 100000000, 1, 15, NULL, NULL); INSERT INTO trustlines VALUES ('GDRW375MAYR46ODGF2WGANQC2RRZL7O246DYHHCGWTV2RE7IHE2QUQLD', 1, 'GAXMF43TGZHW3QN3REOUA2U5PW5BTARXGGYJ3JIFHW3YT6QRKRL3CPPU', 'USD', 9223372036854775807, 0, 1, 19, NULL, NULL); INSERT INTO trustlines VALUES ('GACAR2AEYEKITE2LKI5RMXF5MIVZ6Q7XILROGDT22O7JX4DSWFS7FDDP', 1, 'GAXMF43TGZHW3QN3REOUA2U5PW5BTARXGGYJ3JIFHW3YT6QRKRL3CPPU', 'EUR', 9223372036854775807, 3000000000, 1, 20, NULL, NULL); INSERT INTO trustlines VALUES ('GBOK7BOUSOWPHBANBYM6MIRYZJIDIPUYJPXHTHADF75UEVIVYWHHONQC', 1, 'GB2QIYT2IAUFMRXKLSLLPRECC6OCOGJMADSPTRK7TGNT2SFR2YGWDARD', 'USD', 9223372036854775807, 200000000, 1, 24, 0, 0); INSERT INTO trustlines VALUES ('GCVW5LCRZFP7PENXTAGOVIQXADDNUXXZJCNKF4VQB2IK7W2LPJWF73UG', 1, 'GD4SMOE3VPSF7ZR3CTEQ3P5UNTBMEJDA2GLXTHR7MMARANKKJDZ7RPGF', 'USD', 9223372036854775807, 0, 1, 41, NULL, NULL); INSERT INTO trustlines VALUES ('GCVW5LCRZFP7PENXTAGOVIQXADDNUXXZJCNKF4VQB2IK7W2LPJWF73UG', 1, 'GD4SMOE3VPSF7ZR3CTEQ3P5UNTBMEJDA2GLXTHR7MMARANKKJDZ7RPGF', 'EUR', 9223372036854775807, 0, 0, 42, NULL, NULL); -- -- Data for Name: txfeehistory; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO txfeehistory VALUES (your_sha256_hash, 3, 1, 'AAAAAgAAAAMAAAABAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAADAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtrOnY/+cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 4, 1, 'AAAAAgAAAAMAAAADAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAEAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 5, 1, 'AAAAAgAAAAMAAAAEAAAAAAAAAADuUBkikJHBK1g6vYisHpqJcsb/Cw1WQcFi0EomKe4g1QAAAAJUC+your_sha256_hashAFAAAAAAAAAADuUBkikJHBK1g6vYisHpqJcsb/Cw1WQcFi0EomKe4g1QAAAAJUC+OcAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 5, 2, 'AAAAAgAAAAMAAAAFAAAAAAAAAADuUBkikJHBK1g6vYisHpqJcsb/Cw1WQcFi0EomKe4g1QAAAAJUC+your_sha256_hashAFAAAAAAAAAADuUBkikJHBK1g6vYisHpqJcsb/Cw1WQcFi0EomKe4g1QAAAAJUC+M4AAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 5, 3, 'AAAAAgAAAAMAAAAFAAAAAAAAAADuUBkikJHBK1g6vYisHpqJcsb/Cw1WQcFi0EomKe4g1QAAAAJUC+your_sha256_hashAFAAAAAAAAAADuUBkikJHBK1g6vYisHpqJcsb/Cw1WQcFi0EomKe4g1QAAAAJUC+LUAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 6, 1, 'AAAAAgAAAAMAAAAFAAAAAAAAAADuUBkikJHBK1g6vYisHpqJcsb/Cw1WQcFi0EomKe4g1QAAAAJUC+LUAAAABAAAAAMAAAABAAAAAAAAAAAAAAAAAQICAgAAAAEAAAAA9k+your_sha256_hashyour_sha256_hash3UuW6rOuemZPFQldOn8DcVHAAAAAQAAAAAAAAAA'); INSERT INTO txfeehistory VALUES (your_sha256_hash, 7, 1, 'AAAAAgAAAAMAAAAEAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtq7/your_sha256_hashAAAHAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtq7/TDbUAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 8, 1, 'AAAAAgAAAAMAAAAHAAAAAAAAAAA56sVBEtGr+Hdd/gQSsSrPugP3CTbTNf53+Hh1dzsNOgAAAAJUC+your_sha512_hash+Hdd/gQSsSrPugP3CTbTNf53+Hh1dzsNOgAAAAJUC+OcAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 8, 2, 'AAAAAgAAAAMAAAAIAAAAAAAAAAA56sVBEtGr+Hdd/gQSsSrPugP3CTbTNf53+Hh1dzsNOgAAAAJUC+your_sha512_hash+Hdd/gQSsSrPugP3CTbTNf53+Hh1dzsNOgAAAAJUC+M4AAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 8, 3, 'AAAAAgAAAAMAAAAIAAAAAAAAAAA56sVBEtGr+Hdd/gQSsSrPugP3CTbTNf53+Hh1dzsNOgAAAAJUC+your_sha512_hash+Hdd/gQSsSrPugP3CTbTNf53+Hh1dzsNOgAAAAJUC+LUAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 8, 4, 'AAAAAgAAAAMAAAAIAAAAAAAAAAA56sVBEtGr+Hdd/gQSsSrPugP3CTbTNf53+Hh1dzsNOgAAAAJUC+your_sha512_hash+Hdd/gQSsSrPugP3CTbTNf53+Hh1dzsNOgAAAAJUC+JwAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 9, 1, 'AAAAAgAAAAMAAAAIAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAJAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 10, 1, 'AAAAAgAAAAMAAAAJAAAAAAAAAAAN3U7egAPpmax0171jjN0hBbWtO8h8ARiL/SKX2QViXgAAAAJUC+your_sha256_hashAKAAAAAAAAAAAN3U7egAPpmax0171jjN0hBbWtO8h8ARiL/SKX2QViXgAAAAJUC+M4AAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 11, 1, 'AAAAAgAAAAMAAAAKAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAALAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 12, 1, 'AAAAAgAAAAMAAAALAAAAAAAAAADFWYTSISn1LvRh2SuEC7p1PiNKc+9tS7OK1DigFx9oMwAAAAJUC+your_sha256_hashAMAAAAAAAAAADFWYTSISn1LvRh2SuEC7p1PiNKc+9tS7OK1DigFx9oMwAAAAJUC+OcAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 13, 1, 'AAAAAgAAAAMAAAALAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAANAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 13, 2, 'AAAAAgAAAAMAAAANAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAANAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 14, 1, 'AAAAAgAAAAMAAAANAAAAAAAAAACOLg9Clzokxa3kAHnpZcgSinXg+fu1bq5/rET69jtk3AAAAAJUC+your_sha256_hashAOAAAAAAAAAACOLg9Clzokxa3kAHnpZcgSinXg+fu1bq5/rET69jtk3AAAAAJUC+OcAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 14, 2, 'AAAAAgAAAAMAAAANAAAAAAAAAAAbkz1Y7aR7G7h2WNN3RhK7ISeYNSzEpqbMlaK/gUaShAAAAAJUC+your_sha256_hashAOAAAAAAAAAAAbkz1Y7aR7G7h2WNN3RhK7ISeYNSzEpqbMlaK/gUaShAAAAAJUC+OcAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 15, 1, 'AAAAAgAAAAMAAAAOAAAAAAAAAACOLg9Clzokxa3kAHnpZcgSinXg+fu1bq5/your_sha256_hashAAAAAAAAAAAAAAEAAAAPAAAAAAAAAACOLg9Clzokxa3kAHnpZcgSinXg+fu1bq5/your_sha256_hashAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 16, 1, 'AAAAAgAAAAMAAAANAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAQAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 16, 2, 'AAAAAgAAAAMAAAAQAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAQAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 16, 3, 'AAAAAgAAAAMAAAAQAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAQAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 17, 1, 'AAAAAgAAAAMAAAAQAAAAAAAAAADjbf+sBiPPOGYurGA2AtRjlf3a54eDnEa066iT6Dk1CgAAAAJUC+your_sha256_hashARAAAAAAAAAADjbf+sBiPPOGYurGA2AtRjlf3a54eDnEa066iT6Dk1CgAAAAJUC+OcAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 17, 2, your_sha256_hashcrFl8gAAAAJUC+your_sha256_hashARAAAAAAAAAAAECOgEwRSJk0tSOxZcvWIrn0P3QuLjDnrTvpvwcrFl8gAAAAJUC+OcAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 18, 1, your_sha256_hashEVRXsQAAAAJUC+your_sha256_hashASAAAAAAAAAAAuwvNzNk9twbuJHUBqnX26GYI3MbCdpQU9t4n6EVRXsQAAAAJUC+OcAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 18, 2, your_sha256_hashEVRXsQAAAAJUC+your_sha256_hashASAAAAAAAAAAAuwvNzNk9twbuJHUBqnX26GYI3MbCdpQU9t4n6EVRXsQAAAAJUC+M4AAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 18, 3, your_sha256_hashEVRXsQAAAAJUC+your_sha256_hashASAAAAAAAAAAAuwvNzNk9twbuJHUBqnX26GYI3MbCdpQU9t4n6EVRXsQAAAAJUC+LUAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 19, 1, 'AAAAAgAAAAMAAAARAAAAAAAAAADjbf+sBiPPOGYurGA2AtRjlf3a54eDnEa066iT6Dk1CgAAAAJUC+your_sha256_hashATAAAAAAAAAADjbf+sBiPPOGYurGA2AtRjlf3a54eDnEa066iT6Dk1CgAAAAJUC+M4AAAAEAAAAAEAAAABAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 20, 1, 'AAAAAgAAAAMAAAATAAAAAAAAAADjbf+sBiPPOGYurGA2AtRjlf3a54eDnEa066iT6Dk1CgAAAAJUC+your_sha256_hashAUAAAAAAAAAADjbf+sBiPPOGYurGA2AtRjlf3a54eDnEa066iT6Dk1CgAAAAJUC+LUAAAAEAAAAAIAAAABAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 21, 1, 'AAAAAgAAAAMAAAAQAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAVAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtpxtOy+0AAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 21, 2, 'AAAAAgAAAAMAAAAVAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtpxtOy+your_sha256_hashVAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 22, 1, 'AAAAAgAAAAMAAAAVAAAAAAAAAABcr4XUk6zzhA0OGeYiOMpQND6YS+55nAMv+0JVFcWOdwAAAAJUC+your_sha256_hashAWAAAAAAAAAABcr4XUk6zzhA0OGeYiOMpQND6YS+55nAMv+0JVFcWOdwAAAAJUC+OcAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 23, 1, 'AAAAAgAAAAMAAAAWAAAAAAAAAABcr4XUk6zzhA0OGeYiOMpQND6YS+55nAMv+0JVFcWOdwAAAAJUC+your_sha256_hashAXAAAAAAAAAABcr4XUk6zzhA0OGeYiOMpQND6YS+55nAMv+0JVFcWOdwAAAAJUC+M4AAAAFQAAAAEAAAABAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 24, 1, 'AAAAAgAAAAMAAAAVAAAAAAAAAAB1BGJ6QChWRupclrfEghecJxksAOT5xV+Zmz1IsdYNYQAAAAJUC+your_sha256_hashAYAAAAAAAAAAB1BGJ6QChWRupclrfEghecJxksAOT5xV+Zmz1IsdYNYQAAAAJUC+OcAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 25, 1, 'AAAAAgAAAAMAAAAVAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAZAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 26, 1, 'AAAAAgAAAAMAAAAZAAAAAAAAAAB8Zu1ppbycR+Qbk8/UJ/j51nE2PcyvLOmICI6kMm6GGAAAAAJUC+your_sha256_hashAaAAAAAAAAAAB8Zu1ppbycR+Qbk8/UJ/j51nE2PcyvLOmICI6kMm6GGAAAAAJUC+OcAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 26, 2, 'AAAAAgAAAAMAAAAaAAAAAAAAAAB8Zu1ppbycR+Qbk8/UJ/j51nE2PcyvLOmICI6kMm6GGAAAAAJUC+your_sha256_hashAaAAAAAAAAAAB8Zu1ppbycR+Qbk8/UJ/j51nE2PcyvLOmICI6kMm6GGAAAAAJUC+M4AAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 27, 1, 'AAAAAgAAAAMAAAAZAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAbAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 28, 1, 'AAAAAgAAAAMAAAAbAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUCyour_sha512_hashkj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+OcAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 28, 2, 'AAAAAgAAAAMAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUCyour_sha512_hashkj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+M4AAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 28, 3, 'AAAAAgAAAAMAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUCyour_sha512_hashkj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+LUAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 28, 4, 'AAAAAgAAAAMAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUCyour_sha512_hashkj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+JwAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 28, 5, 'AAAAAgAAAAMAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUCyour_sha512_hashkj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+IMAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 28, 6, 'AAAAAgAAAAMAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUCyour_sha512_hashkj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+GoAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 28, 7, 'AAAAAgAAAAMAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUCyour_sha512_hashkj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+FEAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 29, 1, 'AAAAAgAAAAMAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+FEAAAAGwAAAAcAAAABAAAAAQAAAABi/your_sha256_hash20AAgACAgAAAAEAAAAAfJ3Zy1YgTyqjyQHEjYWc3Nph+your_sha256_hashI/your_sha256_hashyour_sha256_hashyour_sha256_hashWQxOQAAAAAQAAAAAAAAAA'); INSERT INTO txfeehistory VALUES (your_sha256_hash, 30, 1, 'AAAAAgAAAAMAAAAdAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+DgAAAAGwAAAAgAAAABAAAAAQAAAABi/your_sha256_hash20AAgACAgAAAAEAAAAAfJ3Zy1YgTyqjyQHEjYWc3Nph+your_sha256_hashI/your_sha256_hashyour_sha256_hashyour_sha256_hashWQxOQAAAAAQAAAAAAAAAA'); INSERT INTO txfeehistory VALUES (your_sha256_hash, 31, 1, 'AAAAAgAAAAMAAAAeAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+B8AAAAGwAAAAkAAAABAAAAAQAAAABi/your_sha256_hash20AAgACAgAAAAEAAAAAfJ3Zy1YgTyqjyQHEjYWc3Nph+your_sha256_hashI/your_sha256_hashyour_sha256_hashyour_sha256_hashWQxOQAAAAAQAAAAAAAAAA'); INSERT INTO txfeehistory VALUES (your_sha256_hash, 32, 1, 'AAAAAgAAAAMAAAAfAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+AYAAAAGwAAAAoAAAABAAAAAQAAAABi/your_sha256_hash20AAgACAgAAAAEAAAAAfJ3Zy1YgTyqjyQHEjYWc3Nph+your_sha256_hashI/your_sha256_hashyour_sha256_hashyour_sha256_hashWQxOQAAAABQAAAAAAAAAA'); INSERT INTO txfeehistory VALUES (your_sha256_hash, 32, 2, 'AAAAAgAAAAMAAAAgAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC9+0AAAAGwAAAAoAAAABAAAAAQAAAABi/your_sha256_hash20AAgACAgAAAAEAAAAAfJ3Zy1YgTyqjyQHEjYWc3Nph+your_sha256_hashI/your_sha256_hashyour_sha256_hashyour_sha256_hashWQxOQAAAABQAAAAAAAAAA'); INSERT INTO txfeehistory VALUES (your_sha256_hash, 33, 1, 'AAAAAgAAAAMAAAAbAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAhAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 34, 1, 'AAAAAgAAAAMAAAAhAAAAAAAAAACSpN3qCVB3O3zvbXsbohhzeDcFjEyBYY+kN9E+HLVltQAAAAJUC+your_sha256_hashAiAAAAAAAAAACSpN3qCVB3O3zvbXsbohhzeDcFjEyBYY+kN9E+HLVltQAAAAJUC+OcAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 35, 1, 'AAAAAgAAAAMAAAAiAAAAAAAAAACSpN3qCVB3O3zvbXsbohhzeDcFjEyBYY+kN9E+HLVltQAAAAJUC+your_sha256_hashAjAAAAAAAAAACSpN3qCVB3O3zvbXsbohhzeDcFjEyBYY+kN9E+HLVltQAAAAJUC+M4AAAAIQAAAAEAAAABAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 36, 1, 'AAAAAgAAAAMAAAAjAAAAAAAAAACSpN3qCVB3O3zvbXsbohhzeDcFjEyBYY+kN9E+HLVltQAAAAJUC+your_sha256_hashAkAAAAAAAAAACSpN3qCVB3O3zvbXsbohhzeDcFjEyBYY+kN9E+HLVltQAAAAJUC+LUAAAAIQAAAAIAAAABAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 37, 1, 'AAAAAgAAAAMAAAAkAAAAAAAAAACSpN3qCVB3O3zvbXsbohhzeDcFjEyBYY+kN9E+HLVltQAAAAJUC+your_sha256_hashAlAAAAAAAAAACSpN3qCVB3O3zvbXsbohhzeDcFjEyBYY+kN9E+HLVltQAAAAJUC+JwAAAAIQAAAAMAAAABAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 38, 1, 'AAAAAgAAAAMAAAAhAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtpDI/your_sha256_hashAAmAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtpDI/7nAAAAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 38, 2, 'AAAAAgAAAAMAAAAmAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtpDI/your_sha256_hashAAmAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtpDI/7lcAAAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 39, 1, 'AAAAAgAAAAMAAAAmAAAAAAAAAAD5Jjibq+Rf5jsUyQ2/tGzCwiRg0Zd5nj9jARA1Skjz+AAAAAJUC+your_sha256_hashAnAAAAAAAAAAD5Jjibq+Rf5jsUyQ2/tGzCwiRg0Zd5nj9jARA1Skjz+AAAAAJUC+OcAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 40, 1, 'AAAAAgAAAAMAAAAmAAAAAAAAAACrbqxRyV/3kbeYDOqiFwDG2l75SJqi8rAOkK/bS3psXwAAAAJUCyour_sha512_hash3kbeYDOqiFwDG2l75SJqi8rAOkK/bS3psXwAAAAJUC+OcAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 40, 2, 'AAAAAgAAAAMAAAAoAAAAAAAAAACrbqxRyV/3kbeYDOqiFwDG2l75SJqi8rAOkK/bS3psXwAAAAJUCyour_sha512_hash3kbeYDOqiFwDG2l75SJqi8rAOkK/bS3psXwAAAAJUC+M4AAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 41, 1, 'AAAAAgAAAAMAAAAnAAAAAAAAAAD5Jjibq+Rf5jsUyQ2/tGzCwiRg0Zd5nj9jARA1Skjz+AAAAAJUC+your_sha256_hashApAAAAAAAAAAD5Jjibq+Rf5jsUyQ2/tGzCwiRg0Zd5nj9jARA1Skjz+AAAAAJUC+M4AAAAJgAAAAEAAAAAAAAAAAAAAAMAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 41, 2, 'AAAAAgAAAAMAAAApAAAAAAAAAAD5Jjibq+Rf5jsUyQ2/tGzCwiRg0Zd5nj9jARA1Skjz+AAAAAJUC+your_sha256_hashApAAAAAAAAAAD5Jjibq+Rf5jsUyQ2/tGzCwiRg0Zd5nj9jARA1Skjz+AAAAAJUC+LUAAAAJgAAAAEAAAAAAAAAAAAAAAMAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 42, 1, 'AAAAAgAAAAMAAAApAAAAAAAAAAD5Jjibq+Rf5jsUyQ2/tGzCwiRg0Zd5nj9jARA1Skjz+AAAAAJUC+your_sha256_hashAqAAAAAAAAAAD5Jjibq+Rf5jsUyQ2/tGzCwiRg0Zd5nj9jARA1Skjz+AAAAAJUC+JwAAAAJgAAAAMAAAAAAAAAAAAAAAMAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 43, 1, 'AAAAAgAAAAMAAAAmAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtowg5/your_sha256_hashArAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtowg5/D4AAAAAAAAABEAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 44, 1, 'AAAAAgAAAAMAAAArAAAAAAAAAACO+5qjU8vVT4JoJ/v/7r4z/FScSdRR0OIwq2EviuPh7wAAAAJUC+your_sha256_hashAsAAAAAAAAAACO+5qjU8vVT4JoJ/v/7r4zyour_sha512_hash=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 45, 1, 'AAAAAgAAAAMAAAAsAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtowg5/your_sha256_hashAtAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtowg5/AwAAAAAAAAABIAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 46, 1, 'AAAAAgAAAAMAAAAtAAAAAAAAAADj3dgEQp1N5U3fBSOCx/nr5XtiCmNJ2oMJZMx+your_sha256_hashAAAAAAAAAAEAAAAuAAAAAAAAAADj3dgEQp1N5U3fBSOCx/nr5XtiCmNJ2oMJZMx+MYK3JwLGivC7E/+cAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 46, 2, 'AAAAAgAAAAMAAAAtAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9wsaK5tl0/your_sha256_hashAuAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9wsaK5tl0+/MAAAAAAAAABMAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 47, 1, 'AAAAAgAAAAMAAAAuAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9wsaK5tl0+/MAAAAAAAAABQAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAAvAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9wsaK5tl0+9oAAAAAAAAABQAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 48, 1, 'AAAAAgAAAAMAAAAvAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9wsatl/x+h/EAAAAAAAAABUAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAAwAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9wsatl/x+h9gAAAAAAAAABUAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 49, 1, 'AAAAAgAAAAMAAAAwAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+your_sha256_hashAxAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+OcAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 49, 2, 'AAAAAgAAAAMAAAAxAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+your_sha256_hashAxAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+M4AAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 49, 3, 'AAAAAgAAAAMAAAAxAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+your_sha256_hashAxAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+LUAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 50, 1, 'AAAAAgAAAAMAAAAxAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+your_sha256_hashAyAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+JwAAAAMAAAAAMAAAADAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 51, 1, 'AAAAAgAAAAMAAAAyAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+your_sha256_hashAzAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+IMAAAAMAAAAAQAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 52, 1, 'AAAAAgAAAAMAAAAzAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+your_sha256_hashA0AAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+GoAAAAMAAAAAUAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 53, 1, 'AAAAAgAAAAMAAAAwAAAAAAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAA1AAAAAAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 54, 1, 'AAAAAgAAAAMAAAA1AAAAAAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAA2AAAAAAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 55, 1, 'AAAAAgAAAAMAAAA2AAAAAAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAA3AAAAAAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 56, 1, your_sha256_hashXFH/1AAAAAJUC+your_sha256_hashA4AAAAAAAAAAAaXI4hE2dLocMSSYYAT2ClklSctk2diyPO36ldXFH/1AAAAAJUC+OcAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 57, 1, 'AAAAAgAAAAMAAAA3AAAAAAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAA5AAAAAAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 58, 1, 'AAAAAgAAAAMAAAA5AAAAAAAAAAChl+0U/eniJ9tObqFB2J6i27dnD0TTka2hKHkwHK0SlAAAAAJUC+your_sha256_hashA6AAAAAAAAAAChl+0U/eniJ9tObqFB2J6i27dnD0TTka2hKHkwHK0SlAAAAAJUC+OcAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 59, 1, 'AAAAAgAAAAMAAAA6AAAAAAAAAAChl+0U/eniJ9tObqFB2J6i27dnD0TTka2hKHkwHK0SlAAAAAJUC+your_sha256_hashA7AAAAAAAAAAChl+0U/eniJ9tObqFB2J6i27dnD0TTka2hKHkwHK0SlAAAAAJUC+M4AAAARdlkuAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 60, 1, 'AAAAAgAAAAMAAAA7AAAAAAAAAAChl+0U/eniJ9tObqFB2J6i27dnD0TTka2hKHkwHK0SlAAAAAJUC+your_sha256_hashA8AAAAAAAAAAChl+0U/eniJ9tObqFB2J6i27dnD0TTka2hKHkwHK0SlAAAAAJUC+LUAAAARdlkuAEAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txfeehistory VALUES (your_sha256_hash, 61, 1, 'AAAAAgAAAAMAAAA8AAAAAAAAAAChl+0U/eniJ9tObqFB2J6i27dnD0TTka2hKHkwHK0SlAAAAAJUC+your_sha256_hashA9AAAAAAAAAAChl+0U/eniJ9tObqFB2J6i27dnD0TTka2hKHkwHK0SlAAAAAJUC+JwAAAARdlkuAIAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); -- -- Data for Name: txhistory; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO txhistory VALUES (your_sha256_hash, 3, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashAAAAAAAAC6N7oJcJiUzTWRDL98Bj3fVrJUB19wFvCzEHh8nn/your_sha256_hashU98ds2ZXFqjXR4EiN0YDSAb/pJwXc0TjMa//SiX83UvUFSqLa8hOXICQ==', 'your_sha512_hash==', your_sha256_hashbQRHAlb8BfcN4Lazp2P/your_sha256_hashAwAAAAAAAAAAYvwdC9CRsrYcDdZWNGsqaNfTR8bywsjubQRHAlb8BfcN4Lazp2P/your_sha256_hashAwAAAAMAAAADAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtrOnY/+your_sha256_hashDAAAAAAAAAABi/your_sha256_hashyour_sha256_hashe6CXCYlM01kQy/fAY931ayVAdfcBbwsxB4fJ5/yDgAAAAJUC+QAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 4, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashr2IrB6aiXLG/wsNVkHBYtBKJinuINUAAAACVAvkAAAAAAAAAAABVvwF9wAAAECAUpO+hxiga/YgRsV3rFpBJydgOyn0TPImJCaQCMikkiG+sNXrQBsYXjJrlOiGjGsU3rk4uvGl85AriYD9PNYH', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAwAAAAMAAAAEAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAEAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtq7/your_sha256_hashAAAEAAAAAAAAAADuUBkikJHBK1g6vYisHpqJcsb/Cw1WQcFi0EomKe4g1QAAAAJUC+QAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 5, 1, your_sha256_hashyour_sha256_hashyour_sha256_hashKJfOE8aUTAuPR6pxMMbF337wxE3wzOTDaVcDQ2N5P3E9MKc+fbbFhZ9K+07+J0wMGltRBA==', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAABQAAAAAAAAAA7lAZIpCRwStYOr2IrB6aiXLG/your_sha256_hashAAAAAAAAAAAAAAAAAAAAAABAAAABQAAAAAAAAAA7lAZIpCRwStYOr2IrB6aiXLG/your_sha256_hashyour_sha256_hashYisHpqJcsb/Cw1WQcFi0EomKe4g1QAAAAJUC+your_sha256_hashAFAAAAAAAAAADuUBkikJHBK1g6vYisHpqJcsb/Cw1WQcFi0EomKe4g1QAAAAJUC+LUAAAABAAAAAEAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 5, 2, your_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAQAAAAD2T51Mi2fjmCY4Zyour_sha512_hash+BBe/gCKN1cVvEF1UBVeCCuGBTjury4TqoxplKl4NZHJST5/Orr4XCA==', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAABQAAAAAAAAAA7lAZIpCRwStYOr2IrB6aiXLG/your_sha256_hashAAAAAAAAAAAAAAAAAAAAAABAAAABQAAAAAAAAAA7lAZIpCRwStYOr2IrB6aiXLG/your_sha256_hashyour_sha256_hashYisHpqJcsb/Cw1WQcFi0EomKe4g1QAAAAJUC+your_sha256_hashAFAAAAAAAAAADuUBkikJHBK1g6vYisHpqJcsb/Cw1WQcFi0EomKe4g1QAAAAJUC+LUAAAABAAAAAIAAAABAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAA9k+dTItn45gmOGfkeSTjdS5bqs656Zk8VCV06fwNxUcAAAABAAAAAAAAAAA='); INSERT INTO txhistory VALUES (your_sha256_hash, 5, 3, your_sha256_hashyour_sha256_hashyour_sha256_hashmtLjw+ImmGwTiBTKE7X7+2CywlHw8qed+t520SbAggcqboy5KXJaEP51/wRSMxtZUgDOFfaDn9Df04EA', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashY4Z+R5JON1LluqzrnpmTxUJXTp/your_sha256_hashyour_sha256_hashAAAAAAAAAABAAAAAAAAAQAAAAD2T51Mi2fjmCY4Z+R5JON1LluqzrnpmTxUJXTp/your_sha256_hashsb/Cw1WQcFi0EomKe4g1QAAAAJUC+LUAAAABAAAAAMAAAABAAAAAAAAAAAAAAAAAQICAgAAAAEAAAAA9k+dTItn45gmOGfkeSTjdS5bqs656Zk8VCV06fwNxUcAAAABAAAAAAAAAAA='); INSERT INTO txhistory VALUES (your_sha256_hash, 6, 1, your_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAinuINUAAABA4PRAe0en/05ZH2leCeTOsxbT0cUu3wgUiWUcuDk4ya8G/gI90hlV6pzOYyAB6Zt5fN7pRrPRL/your_sha512_hash/C3LxP1tSvpXdU/OhYsODw==', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashY4Z+R5JON1LluqzrnpmTxUJXTp/your_sha256_hashyour_sha256_hashAAAAAAAAAABAgICAAAAAQAAAAD2T51Mi2fjmCY4Z+R5JON1LluqzrnpmTxUJXTp/your_sha256_hashsb/Cw1WQcFi0EomKe4g1QAAAAJUC+JwAAAABAAAAAQAAAABAAAAAAAAAAAAAAAAAgICAgAAAAEAAAAA9k+dTItn45gmOGfkeSTjdS5bqs656Zk8VCV06fwNxUcAAAABAAAAAAAAAAA='); INSERT INTO txhistory VALUES (your_sha256_hash, 7, 1, your_sha256_hashyour_sha256_hashfjoNUMKi6FJCY5BqemnDBxGox3jKS/xx4zpxAToEFp3Y2M+NRJIU4g/H0J', 'your_sha512_hash==', your_sha256_hashbQRHAlb8BfcN4Lau/your_sha256_hashAAABwAAAAAAAAAAYvwdC9CRsrYcDdZWNGsqaNfTR8bywsjubQRHAlb8BfcN4Lau/your_sha256_hashAAAAwAAAAMAAAAHAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtq7/your_sha256_hashAAAHAAAAAAAAAABi/your_sha256_hashyour_sha256_hashsVBEtGr+Hdd/gQSsSrPugP3CTbTNf53+Hh1dzsNOgAAAAJUC+QAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 8, 1, 'AAAAADnqxUES0av4d13+BBKxKs+6A/cJNtM1/your_sha256_hashQAAAABi/your_sha256_hashyour_sha256_hashWC3ZycHE+pDuu/6EKSqcNUri5AXzQmM+GYB', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAACAAAAAAAAAAAOerFQRLRq/h3Xf4EErEqz7oD9wk20zX+d/your_sha256_hashAAAAAAAAAAAAABAAAACAAAAAAAAAAAOerFQRLRq/h3Xf4EErEqz7oD9wk20zX+d/your_sha256_hashAAAAAAAAAAAAABAAAABAAAAAMAAAAHAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAIAAAAAAAAAABi/your_sha256_hashyour_sha256_hashsVBEtGr+Hdd/gQSsSrPugP3CTbTNf53+Hh1dzsNOgAAAAJUC+your_sha512_hash+Hdd/gQSsSrPugP3CTbTNf53+your_sha256_hashAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 8, 2, 'AAAAADnqxUES0av4d13+BBKxKs+6A/cJNtM1/your_sha256_hashyour_sha256_hashACYloAAAAAAAAAAAXc7DToAAABAS2+MaPA79AjD0B7qjl0qEz0N6CkDmoS4kgnXjZfbvdc9IkqNm0S+vKBNgV80pSfixY147L+jvS/ganovqbLiAQ==', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAACAAAAAAAAAAAOerFQRLRq/h3Xf4EErEqz7oD9wk20zX+d/your_sha256_hashAAAAAAAAAAAAABAAAACAAAAAAAAAAAOerFQRLRq/h3Xf4EErEqz7oD9wk20zX+d/your_sha256_hashAAAAAAAAAAAAABAAAABAAAAAMAAAAIAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAIAAAAAAAAAABi/your_sha256_hashh+Hdd/gQSsSrPugP3CTbTNf53+your_sha256_hashAAAAAAAAAAAAAEAAAAIAAAAAAAAAAA56sVBEtGr+Hdd/gQSsSrPugP3CTbTNf53+your_sha256_hashAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 8, 3, 'AAAAADnqxUES0av4d13+BBKxKs+6A/cJNtM1/your_sha256_hashQEBAQEBAQEBAQEBAQAAAAEAAAAAAAAAAQAAAABi/your_sha256_hashyour_sha256_hashg5Dsgy2oCMD1J7khIL9jz/VWjcPhvTVvC8L', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAACAAAAAAAAAAAOerFQRLRq/h3Xf4EErEqz7oD9wk20zX+d/your_sha256_hashAAAAAAAAAAAAABAAAACAAAAAAAAAAAOerFQRLRq/h3Xf4EErEqz7oD9wk20zX+d/your_sha256_hashAAAAAAAAAAAAABAAAABAAAAAMAAAAIAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtqyscX/your_sha256_hashIAAAAAAAAAABi/your_sha256_hashyour_sha256_hashsVBEtGr+Hdd/gQSsSrPugP3CTbTNf53+your_sha256_hashAAAAAAAAAAAAAEAAAAIAAAAAAAAAAA56sVBEtGr+Hdd/gQSsSrPugP3CTbTNf53+your_sha256_hashAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 8, 4, 'AAAAADnqxUES0av4d13+BBKxKs+6A/cJNtM1/your_sha256_hashgICAgICAgICAgICAgAAAAEAAAAAAAAAAQAAAABi/your_sha256_hashyour_sha256_hashEddjiES3bPZUF5efGQvRjoEKgiB2dU3f2wF', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAACAAAAAAAAAAAOerFQRLRq/h3Xf4EErEqz7oD9wk20zX+d/your_sha256_hashAAAAAAAAAAAAABAAAACAAAAAAAAAAAOerFQRLRq/h3Xf4EErEqz7oD9wk20zX+d/your_sha256_hashAAAAAAAAAAAAABAAAABAAAAAMAAAAIAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAIAAAAAAAAAABi/your_sha256_hashyour_sha256_hashsVBEtGr+Hdd/gQSsSrPugP3CTbTNf53+your_sha256_hashAAAAAAAAAAAAAEAAAAIAAAAAAAAAAA56sVBEtGr+Hdd/gQSsSrPugP3CTbTNf53+your_sha256_hashAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 9, 1, your_sha256_hashyour_sha256_hashCRJKl/NoKyJcrd1kGs3ygpp55xu80YlFwgNVErZ/cEAHYOq06CwNfnE2sC', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAwAAAAMAAAAJAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAJAAAAAAAAAABi/your_sha256_hashyour_sha256_hashU7egAPpmax0171jjN0hBbWtO8h8ARiL/SKX2QViXgAAAAJUC+QAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 10, 1, 'AAAAAA3dTt6AA+your_sha256_hashyour_sha256_hashAAAAAAAAX14QAAAAAAAAAAAQAAAABi/your_sha256_hashAAB2QViXgAAAEAxyl5gvCCDC7l0pq9b/Btd3cOUUcY9Rv0ALxVjul4EVSL1Vygr107GjDo11+YswdmlCuWf7KItU0chlogpns4L', '/your_sha256_hashAAAAAAAAAEAAAAAAAAAAAAAAAEAAAAAAAAAAA==', your_sha256_hashi/your_sha256_hashAAAAAAAAAAAAABAAAACgAAAAAAAAAADd1O3oAD6ZmsdNe9Y4zdIQW1rTvIfAEYi/your_sha256_hashAAAAAAAAAAAAACAAAABAAAAAMAAAAJAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAKAAAAAAAAAABi/your_sha256_hashyour_sha256_hashU7egAPpmax0171jjN0hBbWtO8h8ARiL/SKX2QViXgAAAAJUC+your_sha256_hashAKAAAAAAAAAAAN3U7egAPpmax0171jjN0hBbWtO8h8ARiL/your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAEYi/your_sha256_hashAAAAAAAAAAAAABAAAACgAAAAAAAAAADd1O3oAD6ZmsdNe9Y4zdIQW1rTvIfAEYi/your_sha256_hashAAAAAAAAA='); INSERT INTO txhistory VALUES (your_sha256_hash, 11, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashyour_sha256_hashko6/Tbv0v/your_sha256_hashzlpvYRA0B', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAwAAAAMAAAALAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAALAAAAAAAAAABi/your_sha256_hashyour_sha256_hashYTSISn1LvRh2SuEC7p1PiNKc+9tS7OK1DigFx9oMwAAAAJUC+QAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 12, 1, 'AAAAAMVZhNIhKfUu9GHZK4QLunU+your_sha256_hashAAAAg/K/Blr9FO/your_sha256_hashwY9HQAR2SMPe3JPvmBBtBk2jfog0GFEFYkLNFzQNqvYl7iZitmO5FQmkKlv/NO5ZcaWBqXcHhOQpk0s2XSBQF', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashPiNKc+9tS7OK1DigFx9oMwAAAAJUC+your_sha256_hashAMAAAAAAAAAADFWYTSISn1LvRh2SuEC7p1PiNKc+your_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAACD8r8GWv0U7+your_sha256_hashAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 13, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashAB56WXIEop14Pn7tW6uf6xE+vY7ZNwAAAACVAvkAAAAAAAAAAABVvwF9wAAAEAUtdYWyr64yv/rKPr0/vV4vYyonfsWxpxHsiYLHKJ3bm6k+ypiAByc8t0K+7bzxSLPjmjKKN5Prw7AdenlC7MB', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAwAAAAMAAAANAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAANAAAAAAAAAABi/your_sha256_hashyour_sha256_hashg9Clzokxa3kAHnpZcgSinXg+fu1bq5/rET69jtk3AAAAAJUC+QAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 13, 2, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashyour_sha256_hashTiMj+qj8+zYb2Vb60h+your_sha256_hash, 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAwAAAAMAAAANAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAANAAAAAAAAAABi/your_sha256_hashyour_sha256_hashz1Y7aR7G7h2WNN3RhK7ISeYNSzEpqbMlaK/gUaShAAAAAJUC+QAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 14, 1, 'AAAAAI4uD0KXOiTFreQAeellyBKKdeD5+7Vurn+your_sha256_hashyour_sha256_hash7ZNwAAABAieZSSuOZqlwtyjnj5d/your_sha256_hashGCA==', 'your_sha512_hash==', your_sha256_hashf6xE+your_sha256_hashAAAAAAAAAABAAAADgAAAAAAAAAAji4PQpc6JMWt5AB56WXIEop14Pn7tW6uf6xE+your_sha256_hashyour_sha256_hashSzEpqbMlaK/gUaShAAAAAJUC+your_sha256_hashAOAAAAAAAAAAAbkz1Y7aR7G7h2WNN3RhK7ISeYNSzEpqbMlaK/your_sha256_hashAAAAAAAAAAMAAAAOAAAAAAAAAACOLg9Clzokxa3kAHnpZcgSinXg+fu1bq5/rET69jtk3AAAAAJUC+your_sha256_hashAOAAAAAAAAAACOLg9Clzokxa3kAHnpZcgSinXg+fu1bq5/your_sha256_hashAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 14, 2, 'AAAAABuTPVjtpHsbuHZY03dGErshJ5g1LMSmpsyVor+your_sha256_hashOLg9Clzokxa3kAHnpZcgSinXg+fu1bq5/rET69jtk3H//////////AAAAAAAAAAGBRpKEAAAAQGDAV/5Op2DmFUP84dmyT5G/gxn1WzgdMrkSSU7wfpu39ycq36Sg+gs2ypRjw5hxxeMUj/GVEKipcDGndei38Aw=', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashISeYNSzEpqbMlaK/your_sha256_hashAAAAAAAAAAEAAAAOAAAAAAAAAAAbkz1Y7aR7G7h2WNN3RhK7ISeYNSzEpqbMlaK/your_sha256_hashyour_sha256_hashour_sha512_hashwAAAAEAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 15, 1, 'AAAAAI4uD0KXOiTFreQAeellyBKKdeD5+7Vurn+your_sha256_hashyour_sha256_hashkAHnpZcgSinXg+fu1bq5/your_sha256_hashBRv3u95jXbyzuqeZ/kjsyMsU0jO/g03Rf1zgect1hj4hDYGN8mW4oEot0sSTZgw=', 'your_sha512_hash==', your_sha256_hashf6xE+your_sha256_hashAAAAAAAAAABAAAADwAAAAAAAAAAji4PQpc6JMWt5AB56WXIEop14Pn7tW6uf6xE+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 16, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/AX3AAAAZAAAAAAAAAAIAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAA423/rAYjzzhmLqxgNgLUY5X92ueHg5xGtOuok+g5NQoAAAACVAvkAAAAAAAAAAABVvwF9wAAAEBhFD/your_sha256_hashfYCS5XXPRg86sAGUK', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAwAAAAMAAAAQAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAQAAAAAAAAAABi/your_sha256_hashyour_sha256_hashf+sBiPPOGYurGA2AtRjlf3a54eDnEa066iT6Dk1CgAAAAJUC+QAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 16, 2, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashyour_sha256_hash5cl7tkjQI0cfFZTiIFDuo0SwyYnNqTUH2hxDBtm7h/vUkBG3cgwGXS87ninVkhmvdIpTWfeIeGiw7kgefUA', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAwAAAAMAAAAQAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAQAAAAAAAAAABi/your_sha256_hashyour_sha256_hashOgEwRSJk0tSOxZcvWIrn0P3QuLjDnrTvpvwcrFl8gAAAAJUC+QAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 16, 3, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashR1Aap19uhmCNzGwnaUFPbeJ+hFUV7EAAAACVAvkAAAAAAAAAAABVvwF9wAAAEC/RVto6ytAqHpd6ZFWjwXQyXopKORz8QSvz0d8RoPrOEBgNEuAj8+kbyhS7QieOqwbiJrS0AU8YWaBQQ4zc+wL', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAwAAAAMAAAAQAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAQAAAAAAAAAABi/your_sha256_hashyour_sha256_hashvNzNk9twbuJHUBqnX26GYI3MbCdpQU9t4n6EVRXsQAAAAJUC+QAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 17, 1, 'AAAAAONt/6wGI884Zi6sYDYC1GOV/your_sha256_hashAABVVNEAAAAAAAuwvNzNk9twbuJHUBqnX26GYI3MbCdpQU9t4n6EVRXsX//////////your_sha256_hash9kFXjfvvLDlWizGAr2B9MFDrfDRDvjnBxKKhJifEcQM=', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAEQAAAAAAAAAA423/rAYjzzhmLqxgNgLUY5X92ueHg5xGtOuok+your_sha256_hashAAAAAAAAABAAAAEQAAAAAAAAAA423/rAYjzzhmLqxgNgLUY5X92ueHg5xGtOuok+your_sha256_hashAAAAAAAAABAAAAAwAAAAMAAAARAAAAAAAAAADjbf+sBiPPOGYurGA2AtRjlf3a54eDnEa066iT6Dk1CgAAAAJUC+your_sha256_hashARAAAAAAAAAADjbf+sBiPPOGYurGA2AtRjlf3a54eDnEa066iT6Dk1CgAAAAJUC+your_sha256_hashARAAAAAQAAAADjbf+your_sha256_hashBu4kdQGqdfboZgjcxsJ2lBT23ifoRVFexAAAAAAAAAAB//////////wAAAAEAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 17, 2, 'AAAAAAQI6ATBFImTS1I7Fly9YiufQ/dC4uMOetO+m/your_sha256_hashAuwvNzNk9twbuJHUBqnX26GYI3MbCdpQU9t4n6EVRXsX//////////AAAAAAAAAAFysWXyAAAAQI7hbwZc1+KWfheVnYAq5TXFX9ancHJmJq0wV0c9ONIfG6U8trhIVeVoiED2eUFFmhx+bBtF9TPSvifF/mfDlQk=', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashn0P3QuLjDnrTvpvwcrFl8gAAAAJUC+your_sha256_hashARAAAAAAAAAAAECOgEwRSJk0tSOxZcvWIrn0P3QuLjDnrTvpvwcrFl8gAAAAJUC+your_sha256_hashyour_sha256_hashIAAAAAAC7C83M2T23Bu4kdQGqdfboZgjcxsJ2lBT23ifoRVFexAAAAAAAAAAB//////////wAAAAEAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 18, 1, your_sha256_hashAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAA423/rAYjzzhmLqxgNgLUY5X92ueHg5xGtOuok+your_sha256_hashyour_sha256_hashWGmT007oH59gai3eNu7/WVoHtW8hsgHjs1mZK709FzzRF2cbD2tQE=', 'your_sha512_hash==', your_sha256_hashPbeJ+your_sha256_hashAAAAAAAAAABAAAAEgAAAAAAAAAALsLzczZPbcG7iR1Aap19uhmCNzGwnaUFPbeJ+your_sha256_hashAAAAAAAAAABAAAAAgAAAAMAAAARAAAAAQAAAADjbf+your_sha256_hashBu4kdQGqdfboZgjcxsJ2lBT23ifoRVFexAAAAAAAAAAB//////////wAAAAEAAAAAAAAAAAAAAAEAAAASAAAAAQAAAADjbf+your_sha256_hashBu4kdQGqdfboZgjcxsJ2lBT23ifoRVFexAAAAADuaygB//////////wAAAAEAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 22, 1, 'AAAAAFyvhdSTrPOEDQ4Z5iI4ylA0PphL7nmcAy/your_sha256_hashAAAB1BGJ6QChWRupclrfEghecJxksAOT5xV+Zmz1IsdYNYX//////////AAAAAAAAAAEVxY53AAAAQDMCWfC0eGNJuYIX3s5AUNLernpcHTn8O6ygq/Nw3S5vny/W42O5G4G6UsihVU1xd5bR4im2+VzQlQYQhe0jhwg=', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAFgAAAAAAAAAAXK+F1JOs84QNDhnmIjjKUDQ+mEvueZwDL/your_sha256_hashAAAAAAAAAAAAABAAAAFgAAAAAAAAAAXK+F1JOs84QNDhnmIjjKUDQ+mEvueZwDL/your_sha256_hashyour_sha256_hash6YS+55nAMv+0JVFcWOdwAAAAJUC+your_sha256_hashAWAAAAAAAAAABcr4XUk6zzhA0OGeYiOMpQND6YS+55nAMv+0JVFcWOdwAAAAJUC+your_sha256_hashAWAAAAAQAAAABcr4XUk6zzhA0OGeYiOMpQND6YSyour_sha512_hash//////////wAAAAEAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 18, 2, your_sha256_hashyour_sha256_hashap19uhmCNzGwnaUFPbeJ+your_sha256_hashQxceFbtAiC5nkntNVnvSPeWR+C+FgplPAdRgRS+PPESpUiSCyuiwuhmvuDw7kwxn+A6E0M4ca1s2qzMAg==', 'ynVtFRnO2nn4ciBCsSzqe6AEw72WGttitZ+your_sha256_hashzczZPbcG7iR1Aap19uhmCNzGwnaUFPbeJ+your_sha256_hashbCdpQU9t4n6EVRXsQAAAADuaygAAAAAAQAAAAIAAAAAAAAAAAAAAAA=', your_sha256_hashPbeJ+your_sha256_hashAAAAAAAAAABAAAAEgAAAAAAAAAALsLzczZPbcG7iR1Aap19uhmCNzGwnaUFPbeJ+your_sha256_hashyour_sha256_hashbCdpQU9t4n6EVRXsQAAAAJUC+your_sha256_hashASAAAAAAAAAAAuwvNzNk9twbuJHUBqnX26GYI3MbCdpQU9t4n6EVRXsQAAAAJUC+your_sha256_hashyour_sha256_hashyour_sha256_hash1Aap19uhmCNzGwnaUFPbeJ+hFUV7EAAAAA7msoAAAAAAEAAAACAAAAAAAAAAAAAAAA'); INSERT INTO txhistory VALUES (your_sha256_hash, 18, 3, your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAARFUV7EAAABArzp9Fxxql+yoysglDjXm9+rsJeNX2GsSa7TOy3AzHOu4Y5Z8ICx52Q885gQGQWMtEP0w6yh83d6+o6kjC/WuAg==', your_sha256_hashyour_sha256_hashPbeJ+your_sha256_hashT23ifoRVFexAAAAAAAAAACy0F4AAAAAAQAAAAEAAAAAAAAAAAAAAAA=', your_sha256_hashPbeJ+your_sha256_hashyour_sha256_hashbuJHUBqnX26GYI3MbCdpQU9t4n6EVRXsQAAAAJUC+your_sha256_hashyour_sha256_hash1Aap19uhmCNzGwnaUFPbeJ+your_sha256_hashyour_sha256_hashbuJHUBqnX26GYI3MbCdpQU9t4n6EVRXsQAAAAJUC+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAA'); INSERT INTO txhistory VALUES (your_sha256_hash, 19, 1, 'AAAAAONt/6wGI884Zi6sYDYC1GOV/your_sha256_hashyour_sha256_hashsoAAAAAAAQI6ATBFImTS1I7Fly9YiufQ/dC4uMOetO+m/BysWXyAAAAAUVVUgAAAAAALsLzczZPbcG7iR1Aap19uhmCNzGwnaUFPbeJ+your_sha256_hashTakovW//DDTbs/9oPj1RAix5ElC/d7gbWaaNNJxKQR7eMNO6rB+ntGqee4WurTJgA4k2ws=', 'GYhEyLRy2qzFtxdpWkyhaseZoT+your_sha256_hashyour_sha256_hash3NZQAAAAAAVVTRAAAAAAALsLzczZPbcG7iR1Aap19uhmCNzGwnaUFPbeJ+your_sha256_hashQAAAAAAAAACAAAAAUVVUgAAAAAALsLzczZPbcG7iR1Aap19uhmCNzGwnaUFPbeJ+your_sha256_hashyour_sha256_hashT23ifoRVFexAAAAAHc1lAAAAAAA', 'AAAAAQAAAAIAAAADAAAAEwAAAAAAAAAA423/rAYjzzhmLqxgNgLUY5X92ueHg5xGtOuok+your_sha256_hashAAAAAAAAABAAAAEwAAAAAAAAAA423/rAYjzzhmLqxgNgLUY5X92ueHg5xGtOuok+your_sha256_hashyour_sha256_hashyour_sha256_hash23ifoRVFexAAAAAAAAAAB//////////your_sha256_hashyour_sha256_hashT23ifoRVFexAAAAAHc1lAB//////////wAAAAEAAAAAAAAAAAAAAAMAAAASAAAAAQAAAADjbf+your_sha256_hashBu4kdQGqdfboZgjcxsJ2lBT23ifoRVFexAAAAADuaygB//////////wAAAAEAAAAAAAAAAAAAAAEAAAATAAAAAQAAAADjbf+your_sha256_hashBu4kdQGqdfboZgjcxsJ2lBT23ifoRVFexAAAAAAAAAAB//////////your_sha256_hashyour_sha256_hashhmCNzGwnaUFPbeJ+your_sha256_hashyour_sha256_hashUVVUgAAAAAALsLzczZPbcG7iR1Aap19uhmCNzGwnaUFPbeJ+your_sha256_hashAAAAAAuwvNzNk9twbuJHUBqnX26GYI3MbCdpQU9t4n6EVRXsQAAAAJUC+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAALsLzczZPbcG7iR1Aap19uhmCNzGwnaUFPbeJ+your_sha256_hashyour_sha256_hashwAAAAIAAAAALsLzczZPbcG7iR1Aap19uhmCNzGwnaUFPbeJ+your_sha256_hashbCdpQU9t4n6EVRXsQAAAAB3NZQAAAAAAQAAAAIAAAAAAAAAAAAAAAA='); INSERT INTO txhistory VALUES (your_sha256_hash, 20, 1, 'AAAAAONt/6wGI884Zi6sYDYC1GOV/your_sha256_hashyour_sha256_hashyour_sha256_hashsoAAAAAAAAAAAAAAAAB6Dk1CgAAAEB+7jxesBKKrF343onyycjp2tiQLZiGH2ETl+9fuOqotveY2rIgvt9ng+QJ2aDP3+PnDsYEa9ZUaA+Zne2nIGgE', '8I3B/sFQ8nZWKGbOT1Jy9ljPC9n9jB2WoiwZa+your_sha256_hashyour_sha256_hashZPbcG7iR1Aap19uhmCNzGwnaUFPbeJ+your_sha256_hashyour_sha256_hashT23ifoRVFexAAAAADuaygAAAAAA', 'AAAAAQAAAAIAAAADAAAAFAAAAAAAAAAA423/rAYjzzhmLqxgNgLUY5X92ueHg5xGtOuok+your_sha256_hashAAAAAAAAABAAAAFAAAAAAAAAAA423/rAYjzzhmLqxgNgLUY5X92ueHg5xGtOuok+your_sha256_hashyour_sha256_hashyour_sha256_hash23ifoRVFexAAAAAHc1lAB//////////your_sha256_hashyour_sha256_hashT23ifoRVFexAAAAALLQXgB//////////your_sha256_hashyour_sha256_hashhmCNzGwnaUFPbeJ+your_sha256_hashyour_sha256_hashAAAAAAAAAAA423/rAYjzzhmLqxgNgLUY5X92ueHg5xGtOuok+your_sha256_hashAAAAAAAAABAAAAFAAAAAAAAAAA423/rAYjzzhmLqxgNgLUY5X92ueHg5xGtOuok+your_sha256_hashAAAAAAAAADAAAAEwAAAAAAAAAALsLzczZPbcG7iR1Aap19uhmCNzGwnaUFPbeJ+your_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAQAAAAAAAAAAAAABAAAAAAAAAAAAAAAAdzWUAAAAAAAAAAAA'); INSERT INTO txhistory VALUES (your_sha256_hash, 21, 1, your_sha256_hash_sha512_hash/K8KyZCg4ejDTFnhu9qAh4GLZLkbBraGncT9DcYF', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAwAAAAMAAAAVAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAVAAAAAAAAAABi/your_sha256_hashyour_sha256_hash4XUk6zzhA0OGeYiOMpQND6YS+55nAMv+0JVFcWOdwAAAAJUC+QAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 21, 2, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashJa3xIIXnCcZLADk+cVfmZs9SLHWDWEAAAACVAvkAAAAAAAAAAABVvwF9wAAAEDdJGdvdZ2S4QoXdO+Odt8ZRdeVu7mBvq7FtP9okqr98pGD/jSAraklQvaRmCyMALIMD2kG8R2KjhKvy7oIL6IB', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAwAAAAMAAAAVAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAVAAAAAAAAAABi/your_sha256_hashyour_sha256_hashGJ6QChWRupclrfEghecJxksAOT5xV+Zmz1IsdYNYQAAAAJUC+QAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 23, 1, 'AAAAAFyvhdSTrPOEDQ4Z5iI4ylA0PphL7nmcAy/your_sha256_hashTRAAAAAAAdQRiekAoVkbqXJa3xIIXnCcZLADk+cVfmZs9SLHWDWEAAAAAC+your_sha256_hashcvILZ0/pQkfGuwwAoIZNefr7ydIwlcuL44XPM7pJ/6jDSbqBudTNWdE2JRjuq7HI7IAA==', '2LJQgSNlax3x7hfCdngpvCKrQZWa0l5szFIOhJUW+6EAAAAAAAAAZAAAAAAAAAABAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAXK+F1JOs84QNDhnmIjjKUDQ+mEvueZwDL/your_sha256_hashksAOT5xV+Zmz1IsdYNYQAAAAAL68IAAAAAAQAAAAEAAAAAAAAAAAAAAAA=', 'AAAAAQAAAAIAAAADAAAAFwAAAAAAAAAAXK+F1JOs84QNDhnmIjjKUDQ+mEvueZwDL/your_sha256_hashAAAAAAAAAAAAABAAAAFwAAAAAAAAAAXK+F1JOs84QNDhnmIjjKUDQ+mEvueZwDL/your_sha256_hashyour_sha256_hash6YS+55nAMv+0JVFcWOdwAAAAJUC+your_sha256_hashAXAAAAAAAAAABcr4XUk6zzhA0OGeYiOMpQND6YS+your_sha256_hashrPOEDQ4Z5iI4ylA0PphL7nmcAy/your_sha256_hashZLADk+your_sha256_hashiekAoVkbqXJa3xIIXnCcZLADk+cVfmZs9SLHWDWEAAAAAAAAAAH//////////your_sha256_hash7nmcAy/7QlUVxY53AAAAAVVTRAAAAAAAdQRiekAoVkbqXJa3xIIXnCcZLADk+cVfmZs9SLHWDWEAAAAAAAAAAH//////////AAAAAQAAAAEAAAAAC+vCAAAAAAAAAAAAAAAAAAAAAAA='); INSERT INTO txhistory VALUES (your_sha256_hash, 24, 1, your_sha256_hashyour_sha256_hashJxksAOT5xV+your_sha256_hashAAABA0L+69D1hxpytAkX6cvPiBuO80ql8SQKZ15POVxx9wYl6mZrL+6UWGab/+6ng2M+a29E7ON+Xs46Y9MNqTh91AQ==', 'ATRt4cowzgMUnZ9UlFlWoi+cvtPYH4HGK7Wc+your_sha256_hashA0OGeYiOMpQND6YS+your_sha512_hash+cVfmZs9SLHWDWEAAAAAC+vCAAAAAAAAAAAAdQRiekAoVkbqXJa3xIIXnCcZLADk+your_sha256_hashSwA5PnFX5mbPUix1g1hAAAAAAAAAAAF9eEAAAAAAQAAAAEAAAAAAAAAAAAAAAA=', 'AAAAAQAAAAIAAAADAAAAGAAAAAAAAAAAdQRiekAoVkbqXJa3xIIXnCcZLADk+your_sha256_hashAAAAAAAAAAAAAAAAAABAAAAGAAAAAAAAAAAdQRiekAoVkbqXJa3xIIXnCcZLADk+your_sha256_hashyour_sha256_hashMpQND6YS+55nAMv+your_sha256_hashyour_sha256_hashAACAAAAAFyvhdSTrPOEDQ4Z5iI4ylA0PphL7nmcAy/7QlUVxY53AAAAAAAAAAMAAAADAAAAFwAAAAEAAAAAXK+F1JOs84QNDhnmIjjKUDQ+mEvueZwDL/tCVRXFjncAAAABVVNEAAAAAAB1BGJ6QChWRupclrfEghecJxksAOT5xV+Zmz1IsdYNYQAAAAAAAAAAf/////////your_sha256_hashBcr4XUk6zzhA0OGeYiOMpQND6YSyour_sha512_hash//////////your_sha256_hashFyvhdSTrPOEDQ4Z5iI4ylA0PphL7nmcAy/your_sha256_hashAAAEAAAAAAAAAAAAAAAAL68IAAAAAAAAAAAAAAAABAAAAGAAAAAAAAAAAXK+F1JOs84QNDhnmIjjKUDQ+mEvueZwDL/your_sha256_hashyour_sha256_hashhWRupclrfEghecJxksAOT5xV+your_sha256_hashk+your_sha256_hashAAYAAAAAAAAAAB1BGJ6QChWRupclrfEghecJxksAOT5xV+Zmz1IsdYNYQAAAAJUC+your_sha256_hashAYAAAAAAAAAAB1BGJ6QChWRupclrfEghecJxksAOT5xV+your_sha256_hashAAAABAAAAAAX14QAAAAAAAAAAAAAAAAAAAAAA'); INSERT INTO txhistory VALUES (your_sha256_hash, 25, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hash5PP1Cf4+your_sha256_hashZkKRNK3pHBa/eG8zq8Af9gFPWlYvEdRo6jzA5D9fYOcDpKD3dEAuPLNNAHj9tNbZUJA3rwxN94B', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAwAAAAMAAAAZAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAZAAAAAAAAAABi/your_sha256_hashyour_sha256_hashu1ppbycR+Qbk8/UJ/j51nE2PcyvLOmICI6kMm6GGAAAAAJUC+QAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 26, 1, 'AAAAAHxm7WmlvJxH5BuTz9Qn+your_sha256_hashAQAAAABVVNEAAAAAAB8Zu1ppbycR+Qbk8your_sha512_hashjXhfEVxEGigMCJGoOBCK92lUb3Um15PgwSJ63tNl+FpH8+y5c+mCs/rzcvdyo9uXdodd4LXWiQg=', 'p24CYPa4PG6pP1RdF95yHAedwx6B7l7cQfFZ7F+your_sha256_hash8nEfkG5PP1Cf4+your_sha256_hash9Qn+your_sha256_hashAA=', 'AAAAAQAAAAIAAAADAAAAGgAAAAAAAAAAfGbtaaW8nEfkG5PP1Cf4+your_sha256_hashAEAAAAAAAAAAAAAAAAAAAAAAAABAAAAGgAAAAAAAAAAfGbtaaW8nEfkG5PP1Cf4+your_sha256_hashyour_sha256_hash+Qbk8/UJ/j51nE2PcyvLOmICI6kMm6GGAAAAAJUC+your_sha256_hashAaAAAAAAAAAAB8Zu1ppbycR+Qbk8/UJ/j51nE2PcyvLOmICI6kMm6GGAAAAAJUC+your_sha256_hashAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAACAAAAAHxm7WmlvJxH5BuTz9Qn+PnWcTY9zK8s6YgIjqQyboYYAAAAAAAAAAUAAAABVVNEAAAAAAB8Zu1ppbycR+Qbk8/UJ/your_sha256_hashAA'); INSERT INTO txhistory VALUES (your_sha256_hash, 26, 2, 'AAAAAHxm7WmlvJxH5BuTz9Qn+your_sha256_hashAQAAAAAAAAAAVVTRAAAAAAAfGbtaaW8nEfkG5PP1Cf4+your_sha256_hashBbE9T7oBKoN0/S3AV7GoSRe+xT79SlWNCYEtL1RPExL8FLhw5EDsXLoAvIBbBvHIr9NKcPtWDyhcHlIuaZKIg8=', your_sha256_hashAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAfGbtaaW8nEfkG5PP1Cf4+your_sha256_hash+Qbk8/UJ/j51nE2PcyvLOmICI6kMm6GGAAAAAB3NZQAAAAAAQAAAAEAAAABAAAAAAAAAAA=', 'AAAAAQAAAAIAAAADAAAAGgAAAAAAAAAAfGbtaaW8nEfkG5PP1Cf4+your_sha256_hashyour_sha256_hashAAAAAB8Zu1ppbycR+Qbk8/UJ/j51nE2PcyvLOmICI6kMm6GGAAAAAJUC+your_sha256_hashyour_sha256_hashPP1Cf4+your_sha256_hashyour_sha256_hashAAAAAB8Zu1ppbycR+Qbk8/UJ/j51nE2PcyvLOmICI6kMm6GGAAAAAJUC+your_sha256_hashAAdzWUAAAAAAAAAAAAAAAAAAAAABoAAAACAAAAAHxm7WmlvJxH5BuTz9Qn+your_sha256_hashEfkG5PP1Cf4+dZxNj3MryzpiAiOpDJuhhgAAAAAdzWUAAAAAAEAAAABAAAAAQAAAAAAAAAA'); INSERT INTO txhistory VALUES (your_sha256_hash, 27, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/AX3AAAAZAAAAAAAAAAOAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashq3GPDVeRPfwqtW45GZNiUdQ9j6E9Nsz/lMYWcWDWGCZADSsEiEoXar1HWFK6drptsGEl9P6I9f7C2GBKb4YQM', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAwAAAAMAAAAbAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAbAAAAAAAAAABi/your_sha256_hashyour_sha256_hashsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+QAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 28, 1, 'AAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashAAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashAABMJ4wUAAAAEA/GIgE9sYPGwbCiIdLdhoEu25CyB0ZAcmjQonQItu6SE0gaSBVT/le355A/dw1NPaoXY9P/u0ou9D7h5Vb1fcK', '/jcH+9XIRDlcWY8x3HGcYSGNTOpOjd2ttnM/SGYIkQAAAAAAAAAAZAAAAAAAAAABAAAAAAAAAAUAAAAAAAAAAA==', 'AAAAAQAAAAIAAAADAAAAHAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAABAAAAHAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUCyour_sha512_hashkj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+FEAAAAGwAAAAEAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 28, 2, 'AAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashyour_sha256_hashMJ4wUAAAAEDYxq3zpaFIC2JcuJUbrQ3MFXzqvu+5G7XUi4NnHlfbLutn76ylQcjuwLgbUG2lqcQfl75doPUZyurKtFP1rkMO', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAHAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAABAAAAHAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAABAAAAAgAAAAMAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+FEAAAAGwAAAAIAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+FEAAAAGwAAAAIAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 28, 3, 'AAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashyour_sha256_hashyour_sha256_hasha/1uYEVJnvvY/EoJM5RpVjh2ZCs30VYA', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAHAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAABAAAAHAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAABAAAAAgAAAAMAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+FEAAAAGwAAAAMAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+FEAAAAGwAAAAMAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 28, 4, 'AAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashyour_sha256_hashAAAAATCeMFAAAABAAd6MzHDjUdRtHozzDnD3jJA+uRDCar3PQtuH/43pnROzk1HkovJPQ1YyzcpOb/NeuU/LKNzseL0PJNasVX1lAQ==', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAHAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAABAAAAHAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAABAAAAAgAAAAMAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+FEAAAAGwAAAAQAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+FEAAAAGwAAAAQAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 28, 5, 'AAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABMJ4wUAAAAEAnFzc6kqweyIL4TzIDbr+8GUOGGs1W5jcX5iSNw4DeonzQARlejYJ9NOn/XkrcoC9Hvd8hc5lNx+1h991GxJUJ', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAHAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAABAAAAHAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAABAAAAAgAAAAMAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+FEAAAAGwAAAAUAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+FEAAAAGwAAAAUAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 41, 2, 'AAAAAPkmOJur5F/mOxTJDb+your_sha256_hashAAAcAAAAAq26sUclf95G3mAzqohcAxtpe+UiaovKwDpCv20t6bF8AAAABRVVSAAAAAAEAAAAAAAAAAUpI8/your_sha256_hasho3IVym6Rfd6JdQW8QcLkFTX1MGCg==', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAKQAAAAAAAAAA+SY4m6vkX+Y7FMkNv7RswsIkYNGXeZ4/YwEQNUpI8/your_sha512_hash+SY4m6vkX+Y7FMkNv7RswsIkYNGXeZ4/YwEQNUpI8/your_sha256_hashAAAAABAAAAAgAAAAMAAAAoAAAAAQAAAACrbqxRyV/3kbeYDOqiFwDG2l75SJqi8rAOkK/your_sha512_hashwAAAAAAAAAAAAAAAAAAAAEAAAApAAAAAQAAAACrbqxRyV/3kbeYDOqiFwDG2l75SJqi8rAOkK/your_sha512_hashwAAAAEAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 28, 6, 'AAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashyour_sha256_hashyour_sha256_hashmLxaiI1YaVKZaKJxz5P85x+6wzpYxxbs6Bd2l4qxVjS7Q36DwRiqBA==', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAHAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAABAAAAHAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAAAAAAABAAAAAgAAAAMAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+FEAAAAGwAAAAYAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+FEAAAAGwAAAAYAAAAAAAAAAQAAAABi/your_sha256_hash20AAgACAgAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 28, 7, 'AAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashyour_sha256_hashyour_sha256_hashtYtlsqMReQo1UoU2GYjb3h52wEKvnouCSO6LQO1xm/ArhtQO/sX5q35St8BjaYWEiFnp+SQj2FZC89OswCldAw==', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAHAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashwbGUuY29tAAIAAgIAAAAAAAAAAAAAAAAAAAABAAAAHAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashyour_sha256_hashQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+FEAAAAGwAAAAcAAAAAAAAAAQAAAABi/your_sha256_hash20AAgACAgAAAAAAAAAAAAAAAAAAAAEAAAAcAAAAAAAAAACQUsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+FEAAAAGwAAAAcAAAABAAAAAQAAAABi/your_sha256_hash20AAgACAgAAAAEAAAAAfJ3Zy1YgTyqjyQHEjYWc3Nph+30O0bcxshQPJhZDE5AAAAABAAAAAAAAAAA='); INSERT INTO txhistory VALUES (your_sha256_hash, 29, 1, 'AAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashyour_sha256_hashyour_sha256_hashAxOOcCPpIalU6P1pYRX3K4OlKHZ4hIdxJzD6BQ==', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAHQAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashyour_sha256_hashWQxOQAAAAAQAAAAAAAAAAAAAAAQAAAB0AAAAAAAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashHA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashyour_sha256_hashAAAAAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashHA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashyour_sha256_hashsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+DgAAAAGwAAAAgAAAABAAAAAQAAAABi/your_sha256_hash20AAgACAgAAAAEAAAAAfJ3Zy1YgTyqjyQHEjYWc3Nph+30O0bcxshQPJhZDE5AAAAABAAAAAAAAAAA='); INSERT INTO txhistory VALUES (your_sha256_hash, 30, 1, 'AAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashyour_sha256_hashyour_sha256_hash7ZMKq80ucQSt+55q+your_sha256_hashFRtAg==', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAHgAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashyour_sha256_hashWQxOQAAAAAQAAAAAAAAAAAAAAAQAAAB4AAAAAAAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashHA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashyour_sha256_hashAAAAAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashHA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashyour_sha256_hashsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+B8AAAAGwAAAAkAAAABAAAAAQAAAABi/your_sha256_hash20AAgACAgAAAAEAAAAAfJ3Zy1YgTyqjyQHEjYWc3Nph+30O0bcxshQPJhZDE5AAAAABAAAAAAAAAAA='); INSERT INTO txhistory VALUES (your_sha256_hash, 31, 1, 'AAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashyour_sha256_hashyour_sha256_hash0wriernSr+5P2QCeon1uj5mrOLNTOrPYPPi5ricLug/nreEUhsgS/k3lA9JGpVbd+tacMEKmXKmFxHCEMjWPBg==', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAHwAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashyour_sha256_hashWQxOQAAAAAQAAAAAAAAAAAAAAAQAAAB8AAAAAAAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashHA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashyour_sha256_hashAAAAAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashHA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashyour_sha256_hashsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC+AYAAAAGwAAAAoAAAABAAAAAQAAAABi/your_sha256_hash20AAgACAgAAAAEAAAAAfJ3Zy1YgTyqjyQHEjYWc3Nph+30O0bcxshQPJhZDE5AAAAAFAAAAAAAAAAA='); INSERT INTO txhistory VALUES (your_sha256_hash, 51, 1, your_sha256_hashyour_sha256_hashAAAAAS6Z+xkAAABAIW4yrFdk66fgDDir7YFATEd2llOubzx/iaJcM2wkF3ouqJQN+Aziy2rVtK5AoyphokiwsYXvHS6UF9MhdnUADQ==', 'your_sha512_hash==', your_sha256_hash4uwI1C6Z+your_sha256_hashAAAAAABAAAAMwAAAAAAAAAAMSExUMeJhd3PnPyXvdcbKtDZE3zllFbW4uwI1C6Z+your_sha256_hashAAAAAABAAAAAgAAAAMAAAAxAAAAAwAAAAAxITFQx4mF3c+c/your_sha256_hashAAAAAABAAAAMwAAAAMAAAAAMSExUMeJhd3PnPyXvdcbKtDZE3zllFbW4uwI1C6Z+xkAAAAFbmFtZTEAAAAAAAAEMTIzNAAAAAAAAAAA'); INSERT INTO txhistory VALUES (your_sha256_hash, 32, 1, 'AAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashyour_sha256_hashMJ4wUAAAAEAFytUxjxN4bnJMrEJkSprnES9iGpOxAsNOFYrTP/xtGVk/PZ2oThUW+/hLRIk+hYYEgF21Gf58N/abJKFpqlsI', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAIAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashyour_sha256_hashWQxOQAAAABQAAAAAAAAAAAAAAAQAAACAAAAAAAAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashHA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashyour_sha256_hashAAAAAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashHA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashyour_sha256_hashsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC99QAAAAGwAAAAsAAAABAAAAAQAAAABi/your_sha256_hash20AAgACAgAAAAEAAAAAfJ3Zy1YgTyqjyQHEjYWc3Nph+30O0bcxshQPJhZDE5AAAAAFAAAAAAAAAAA='); INSERT INTO txhistory VALUES (your_sha256_hash, 32, 2, 'AAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashyour_sha256_hashyour_sha256_hashOb0qGWnk1WrSUXS6iQFocaIOY/BDmgG1zTmlPyg0boSid3jTBK3z9U8+IPGAOELNLgkQHtgGYFgFGMio1xY+BQ==', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAIAAAAAAAAAAAkFLGCjsP5I/your_sha256_hashyour_sha256_hashyour_sha256_hashWQxOQAAAABQAAAAAAAAAAAAAAAQAAACAAAAAAAAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashHA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashyour_sha256_hashAAAAAAAAJBSxgo7D+SP4ldcjl6iwJjYtL5+your_sha256_hashHA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashyour_sha256_hashsYKOw/kj+JXXI5eosCY2LS+fgH0zFHZXnenMJ4wUAAAAAJUC99QAAAAGwAAAAwAAAAAAAAAAQAAAABi/your_sha256_hash20AAgACAgAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 33, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hash217G6IYc3g3BYxMgWGPpDfRPhy1ZbUAAAACVAvkAAAAAAAAAAABVvwF9wAAAEC+mgKIzZqflQIKIqWn9LrciuyEx7XPfXGUhvyQ3sIQBnGdOWhkOt57UU/75LtUy4recT+jrY2cHKZj33puue8F', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAwAAAAMAAAAhAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAhAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtpDI/your_sha256_hashAAhAAAAAAAAAACSpN3qCVB3O3zvbXsbohhzeDcFjEyBYY+kN9E+HLVltQAAAAJUC+QAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 34, 1, your_sha256_hashAAAAAAAAAAAAAAABAAAAAAAAAAYAAAABVVNEAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF93//////////AAAAAAAAAAEctWW1AAAAQBYUnV3I1O35EAyay0msjg3MzZfanCtvalKGG+94pe6RxgE/kCk2kTT9HXgXjbraq//Q/0vJ0AoCAXSeT18Ujgk=', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hasheDcFjEyBYY+kN9E+HLVltQAAAAJUC+your_sha256_hashAiAAAAAAAAAACSpN3qCVB3O3zvbXsbohhzeDcFjEyBYY+kN9E+HLVltQAAAAJUC+your_sha256_hashAiAAAAAQAAAACSpN3qCVB3O3zvbXsbohhzeDcFjEyBYY+kN9Eyour_sha512_hashwAAAAEAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 35, 1, your_sha256_hashAAAAAAAAAAAAAAABAAAAAAAAAAYAAAABVVNEAAAAAABi/your_sha256_hashWW1AAAAQNugq+B30pdbzvVVGz9RO3+DMeRdWqc/Xsd2NYdg6NBu7esvOdTWQ3nvoBEJyeGz8EE9zRQiSiqorwHlm+AGfwI=', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hasheDcFjEyBYY+your_sha256_hashVB3O3zvbXsbohhzeDcFjEyBYY+kN9E+HLVltQAAAAFVU0QAAAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/AX3AAAAAAAAAAAAAAAAO5rKAAAAAAEAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 36, 1, your_sha256_hashAAAAAAAAAAAAAAABAAAAAAAAAAYAAAABVVNEAAAAAABi/your_sha256_hashWW1AAAAQO+eTIPXUZk+GAq7O6H8d1/your_sha256_hash=', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hasheDcFjEyBYY+kN9E+HLVltQAAAAFVU0QAAAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashN3qCVB3O3zvbXsbohhzeDcFjEyBYY+kN9E+HLVltQAAAAFVU0QAAAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/AX3AAAAAAAAAAAAAAAAO5rKAAAAAAEAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 37, 1, your_sha256_hashAAAAAAAAAAAAAAABAAAAAAAAAAYAAAABVVNEAAAAAABi/your_sha256_hashWW1AAAAQM5SCoW10EJoKBBwwMu0Vw+f+bQ0GjQ9FO6w3l9Q/FIctm87248t9jXTbl0Rd4NgGcom0yoGxgcJiERwZGBMXQc=', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hasheDcFjEyBYY+kN9E+HLVltQAAAAFVU0QAAAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAEAAAAAAAAAAAAAAAAAAAA='); INSERT INTO txhistory VALUES (your_sha256_hash, 38, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashAzqohcAxtpe+your_sha256_hashyour_sha256_hashShLXpQH', 'your_sha512_hash==', your_sha256_hashbQRHAlb8BfcN4LaQyP+your_sha256_hashAJgAAAAAAAAAAYvwdC9CRsrYcDdZWNGsqaNfTR8bywsjubQRHAlb8BfcN4LaQyP+your_sha256_hashAAwAAAAMAAAAmAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtpDI/your_sha256_hashAAmAAAAAAAAAABi/your_sha256_hashyour_sha256_hashqxRyV/3kbeYDOqiFwDG2l75SJqi8rAOkK/bS3psXwAAAAJUC+QAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 38, 2, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/AX3AAAAZAAAAAAAAAARAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAA+SY4m6vkX+Y7FMkNv7RswsIkYNGXeZ4/YwEQNUpI8/gAAAACVAvkAAAAAAAAAAABVvwF9wAAAEDD6WvAYL1wilsd7zYDJt0iFO/lppQ6GJJn/A8UJl9jTjMNOjuQPBtA7fSxR5KT0BZLbtQy8qFlys0I6fTe/cwO', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAwAAAAMAAAAmAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAmAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtowg5/your_sha256_hashAmAAAAAAAAAAD5Jjibq+Rf5jsUyQ2/tGzCwiRg0Zd5nj9jARA1Skjz+AAAAAJUC+QAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 39, 1, 'AAAAAPkmOJur5F/mOxTJDb+your_sha256_hashyour_sha256_hashAAAAAAAABSkjz+AAAAECyjDa1e+jtXukTrHluO7x0Mx7Wj4mRoM4S5UAFmRV+2rVoxjMwqFJhtYnEAUV19+C5ycp5jOLLpWxrCeRKJQUG', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAJwAAAAAAAAAA+SY4m6vkX+Y7FMkNv7RswsIkYNGXeZ4/YwEQNUpI8/your_sha512_hash+SY4m6vkX+Y7FMkNv7RswsIkYNGXeZ4/YwEQNUpI8/your_sha256_hashAAAAABAAAAAgAAAAMAAAAnAAAAAAAAAAD5Jjibq+Rf5jsUyQ2/tGzCwiRg0Zd5nj9jARA1Skjz+AAAAAJUC+your_sha256_hashAnAAAAAAAAAAD5Jjibq+Rf5jsUyQ2/tGzCwiRg0Zd5nj9jARA1Skjz+AAAAAJUC+OcAAAAJgAAAAEAAAAAAAAAAAAAAAMAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 40, 1, 'AAAAAKturFHJX/your_sha256_hashABAAAAAAAAAAYAAAABVVNEAAAAAAD5Jjibq+Rf5jsUyQ2/tGzCwiRg0Zd5nj9jARA1Skjz+H//////////your_sha256_hash1jxoalzDwDS3W+N2HOHdjSJlEQaTxGBfQKHhr6nNsAA=', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAKAAAAAAAAAAAq26sUclf95G3mAzqohcAxtpe+your_sha256_hashAAAAAAAAAAAAAAAAAAAAAABAAAAKAAAAAAAAAAAq26sUclf95G3mAzqohcAxtpe+your_sha256_hashAAAAAAAAAAAAAAAAAAAAAABAAAAAwAAAAMAAAAoAAAAAAAAAACrbqxRyV/3kbeYDOqiFwDG2l75SJqi8rAOkK/bS3psXwAAAAJUCyour_sha512_hash3kbeYDOqiFwDG2l75SJqi8rAOkK/bS3psXwAAAAJUCyour_sha512_hash3kbeYDOqiFwDG2l75SJqi8rAOkK/your_sha512_hashwAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 40, 2, 'AAAAAKturFHJX/your_sha256_hashABAAAAAAAAAAYAAAABRVVSAAAAAAD5Jjibq+Rf5jsUyQ2/tGzCwiRg0Zd5nj9jARA1Skjz+H//////////AAAAAAAAAAFLemxfAAAAQMPVgYf+w09depDSxMcJnjVZHA2FlkBmhPmi0N66FuhAzTekWcCOMdCI0cUc+xJhywLXSMiKA6wP6K94NRlFlQE=', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAKAAAAAAAAAAAq26sUclf95G3mAzqohcAxtpe+your_sha256_hashAAAAAAAAAAAAAAAAAAAAAABAAAAKAAAAAAAAAAAq26sUclf95G3mAzqohcAxtpe+your_sha256_hashAAAAAAAAAAAAAAAAAAAAAABAAAAAwAAAAMAAAAoAAAAAAAAAACrbqxRyV/3kbeYDOqiFwDG2l75SJqi8rAOkK/bS3psXwAAAAJUCyour_sha512_hash3kbeYDOqiFwDG2l75SJqi8rAOkK/bS3psXwAAAAJUCyour_sha512_hash3kbeYDOqiFwDG2l75SJqi8rAOkK/your_sha512_hashwAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 41, 1, 'AAAAAPkmOJur5F/mOxTJDb+your_sha256_hashAAAcAAAAAq26sUclf95G3mAzqohcAxtpe+UiaovKwDpCv20t6bF8AAAABVVNEAAAAAAEAAAAAAAAAAUpI8/your_sha256_hash2kIGvWgls1dXuXHZY/IOlaK01rBQ==', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAKQAAAAAAAAAA+SY4m6vkX+Y7FMkNv7RswsIkYNGXeZ4/YwEQNUpI8/your_sha512_hash+SY4m6vkX+Y7FMkNv7RswsIkYNGXeZ4/YwEQNUpI8/your_sha256_hashAAAAABAAAAAgAAAAMAAAAoAAAAAQAAAACrbqxRyV/3kbeYDOqiFwDG2l75SJqi8rAOkK/your_sha512_hashwAAAAAAAAAAAAAAAAAAAAEAAAApAAAAAQAAAACrbqxRyV/3kbeYDOqiFwDG2l75SJqi8rAOkK/your_sha512_hashwAAAAEAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 42, 1, 'AAAAAPkmOJur5F/mOxTJDb+your_sha256_hashAAAcAAAAAq26sUclf95G3mAzqohcAxtpe+UiaovKwDpCv20t6bF8AAAABRVVSAAAAAAAAAAAAAAAAAUpI8/gAAABAEPKcQmATGpevrtlAcZnNI/GjfLLQEp9aODGGRFV+2C4UO8dU+UAMTkCSXQLD+xPaRQxzw93ScEok6GzYCtt7Bg==', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAAKgAAAAAAAAAA+SY4m6vkX+Y7FMkNv7RswsIkYNGXeZ4/YwEQNUpI8/your_sha512_hash+SY4m6vkX+Y7FMkNv7RswsIkYNGXeZ4/YwEQNUpI8/your_sha256_hashAAAAABAAAAAgAAAAMAAAApAAAAAQAAAACrbqxRyV/3kbeYDOqiFwDG2l75SJqi8rAOkK/your_sha512_hashwAAAAEAAAAAAAAAAAAAAAEAAAAqAAAAAQAAAACrbqxRyV/3kbeYDOqiFwDG2l75SJqi8rAOkK/your_sha512_hashwAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 43, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/AX3AAAAZAAAAAAAAAASAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAjvuao1PL1U+CaCf7/+6+M/your_sha256_hashslNVslTHH8j8x0ggew1eHHOUTNajMPy8GYn52RSwRncwwvv1ejEfA+g/mTXMpXrBO847C46KoA', 'your_sha512_hash==', your_sha256_hashbQRHAlb8BfcN4LaMIOfw+your_sha256_hashwAAAAAAAAAAYvwdC9CRsrYcDdZWNGsqaNfTR8bywsjubQRHAlb8BfcN4LaMIOfw+your_sha256_hashwAAAAMAAAArAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtowg5/your_sha256_hashArAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAArAAAAAAAAAACO+5qjU8vVT4JoJ/v/7r4zyour_sha512_hash=='); INSERT INTO txhistory VALUES (your_sha256_hash, 44, 1, 'AAAAAI77mqNTy9VPgmgn+//uvjP8VJxJ1FHQ4jCrYS+K4+your_sha256_hashyour_sha256_hashBQWjyzwvVz2v5UJ56G60IhgsaWQFSf+7om462KToc+HJ27aLVOQ83dGh1ivp+VIuREJq/SBw==', '4Hc9B6uiPRHmoGsCFoIpS+H58gKikmgnAiU5Zizix/wAAAAAAAAAZAAAAAAAAAABAAAAAAAAAAgAAAAAAAAAAlQL45wAAAAA', 'AAAAAQAAAAIAAAADAAAALAAAAAAAAAAAjvuao1PL1U+CaCf7/+6+M/your_sha256_hashEAAAAAAAAAAAAAAAAAAAAAAAABAAAALAAAAAAAAAAAjvuao1PL1U+CaCf7/+6+M/your_sha256_hashEAAAAAAAAAAAAAAAAAAAAAAAABAAAABAAAAAMAAAArAAAAAAAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAAsAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtowg5/your_sha256_hashAsAAAAAAAAAACO+5qjU8vVT4JoJ/v/7r4z/FScSdRR0OIwq2EviuPh7wAAAAJUC+your_sha512_hash+//uvjP8VJxJ1FHQ4jCrYS+K4+Hv'); INSERT INTO txhistory VALUES (your_sha256_hash, 45, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashwUjgsf56+your_sha256_hash/WKroo3/3dfchP/yI8TRDrrjt/chZ83ULiTc54l5wcz1AkbLa6CAapdSGpUWXk5ksTqDXLn4AA', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAwAAAAMAAAAtAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9w3gtowg5/your_sha256_hashAtAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9wsaK5tl0/your_sha256_hashAtAAAAAAAAAADj3dgEQp1N5U3fBSOCx/nr5XtiCmNJ2oMJZMx+your_sha256_hashAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 46, 1, 'AAAAAOPd2ARCnU3lTd8FI4LH+your_sha256_hashAUAAAABAAAAAOPd2ARCnU3lTd8FI4LH+your_sha256_hashAAAAAAAAAAAAAAAAAAAAAABMYK3JwAAAEAOkGOPTOBDSQ7nW2Zn+bls2PDUebk2/k3/gqHKQ8eYOFsD6nBeEvyMD858vo5BabjQwB9injABIM8esDh7bEkC', 'your_sha512_hash==', 'AAAAAQAAAAIAAAADAAAALgAAAAAAAAAA493YBEKdTeVN3wUjgsf56+V7YgpjSdqDCWTMfjGCtycCxorwuxP/your_sha256_hashLgAAAAAAAAAA493YBEKdTeVN3wUjgsf56+V7YgpjSdqDCWTMfjGCtycCxorwuxP/your_sha256_hashAgAAAAMAAAAuAAAAAAAAAADj3dgEQp1N5U3fBSOCx/nr5XtiCmNJ2oMJZMx+MYK3JwLGivC7E/+your_sha256_hashuAAAAAAAAAADj3dgEQp1N5U3fBSOCx/nr5XtiCmNJ2oMJZMx+MYK3JwLGivC7E/+cAAAALQAAAAEAAAAAAAAAAQAAAADj3dgEQp1N5U3fBSOCx/nr5XtiCmNJ2oMJZMx+MYK3JwAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 46, 2, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashyour_sha256_hashMghpIMfaS7MWdHuGY81+FBozOsS+/HGohQD', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAgAAAAMAAAAuAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9wsaK5tl0+/your_sha256_hashuAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9wsaK5tl0+/MAAAAAAAAABQAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 52, 1, your_sha256_hashyour_sha256_hashAAAAAS6Z+your_sha256_hashO+ne9spUXlVHMjEuhOHoPhl1hrMCg==', 'your_sha512_hash==', your_sha256_hash4uwI1C6Z+your_sha256_hashAAAAAABAAAANAAAAAAAAAAAMSExUMeJhd3PnPyXvdcbKtDZE3zllFbW4uwI1C6Z+your_sha256_hashAAAAAABAAAAAgAAAAMAAAAzAAAAAwAAAAAxITFQx4mF3c+c/your_sha256_hashAAAAAABAAAANAAAAAMAAAAAMSExUMeJhd3PnPyXvdcbKtDZE3zllFbW4uwI1C6Z+xkAAAAFbmFtZTEAAAAAAAAEMDAwMAAAAAAAAAAA'); INSERT INTO txhistory VALUES (your_sha256_hash, 47, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashABABUHuXY+MTgW/wDv5+NDVh9fw4meszxeXO98HEQfgXVeCZ7eObCI2orSGUNA/SK6HV9/uTVSxIQQWIso1QoxHBQ==', your_sha256_hashAAAAAAAAAAkAAAAAAAAAAgAAAABi/your_sha256_hashU3lTd8FI4LH+evle2IKY0nagwlkzH4xgrcnAAAisSN9x4sAAAAA', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9wsaK5tl0+9oAAAAAAAAABUAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAAvAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9wsatl/x+h/EAAAAAAAAABUAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAMAAAAuAAAAAAAAAADj3dgEQp1N5U3fBSOCx/nr5XtiCmNJ2oMJZMx+MYK3JwLGivC7E/+cAAAALQAAAAEAAAAAAAAAAQAAAADj3dgEQp1N5U3fBSOCx/nr5XtiCmNJ2oMJZMx+your_sha256_hashQp1N5U3fBSOCx/nr5XtiCmNJ2oMJZMx+MYK3JwLGraHekccnAAAALQAAAAEAAAAAAAAAAQAAAADj3dgEQp1N5U3fBSOCx/nr5XtiCmNJ2oMJZMx+MYK3JwAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 48, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashPyXvdcbKtDZE3zllFbW4uwI1C6Zyour_sha512_hash+yITgm2+mOaWc6zVuxiLjHllzBeQ/xKvQN', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAABi/B0L0JGythwN1lY0aypo19NHxvLCyO5tBEcCVvwF9wsatl/x+h9gAAAAAAAAABYAAAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAAwAAAAAAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+QAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 49, 1, your_sha256_hashyour_sha256_hashAAAAAS6Z+xkAAABAxKiHYYNLJiW3r5+kCJm8ucaoV7BcrEnQXFb3s1RyRyUbAkDlaCvE+RKwMZoNUfbkQUGrouyVKy1ZpUeccByqDg==', 'your_sha512_hash==', your_sha256_hash4uwI1C6Z+your_sha256_hashAAAAAABAAAAMQAAAAAAAAAAMSExUMeJhd3PnPyXvdcbKtDZE3zllFbW4uwI1C6Z+your_sha256_hashAAAAAABAAAAAwAAAAMAAAAxAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+your_sha256_hashAxAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+your_sha256_hashAxAAAAAwAAAAAxITFQx4mF3c+c/your_sha256_hashAA='); INSERT INTO txhistory VALUES (your_sha256_hash, 49, 2, your_sha256_hashyour_sha256_hashAAAAAS6Z+your_sha256_hashwCRt5L8ylmWiATXVI3Zyfi3yTKqBA==', 'your_sha512_hash==', your_sha256_hash4uwI1C6Z+your_sha256_hashAAAAAABAAAAMQAAAAAAAAAAMSExUMeJhd3PnPyXvdcbKtDZE3zllFbW4uwI1C6Z+your_sha256_hashAAAAAABAAAAAwAAAAMAAAAxAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+your_sha256_hashAxAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+your_sha256_hashAxAAAAAwAAAAAxITFQx4mF3c+c/your_sha256_hashAA='); INSERT INTO txhistory VALUES (your_sha256_hash, 49, 3, your_sha256_hashyour_sha256_hashc3BhY2VzIQAAAAAAAAAAAS6Z+xkAAABANmYginYhX+6VAsl1JumfxkB57y2LHraWDUkR+KDxWW8l5pfTViLxx7J85KrOV0qNCY4RfasgqxF0FC3ErYceCQ==', 'your_sha512_hash==', your_sha256_hash4uwI1C6Z+your_sha256_hashAAAAAABAAAAMQAAAAAAAAAAMSExUMeJhd3PnPyXvdcbKtDZE3zllFbW4uwI1C6Z+your_sha256_hashAAAAAABAAAAAwAAAAMAAAAxAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+your_sha256_hashAxAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+your_sha256_hashAxAAAAAwAAAAAxITFQx4mF3c+c/your_sha256_hashWNlcyEAAAAAAAAAAAA='); INSERT INTO txhistory VALUES (your_sha256_hash, 50, 1, your_sha256_hashyour_sha256_hashAAAAQAYRZNPhJCTwjJgAJ9beE3ZO/H3kYJhYmV1pCmy7c8Zr2sKdKOmaLn4fmA5qaL+lQMKwOShtjwkZ8JHxPUd8GAk=', 'your_sha512_hash==', your_sha256_hash4uwI1C6Z+your_sha256_hashAAAAAABAAAAMgAAAAAAAAAAMSExUMeJhd3PnPyXvdcbKtDZE3zllFbW4uwI1C6Z+your_sha256_hashAAAAAABAAAABAAAAAMAAAAxAAAAAwAAAAAxITFQx4mF3c+c/your_sha256_hashAAAAAACAAAAAwAAAAAxITFQx4mF3c+c/your_sha256_hashAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+your_sha256_hashAyAAAAAAAAAAAxITFQx4mF3c+c/Je91xsq0NkTfOWUVtbi7AjULpn7GQAAAAJUC+JwAAAAMAAAAAQAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 61, 1, your_sha256_hashyour_sha256_hash0Dq6YAh6aK14jHxuAvhvKG2+NuzboAKrfYCaC1ZSQ77BYH/5MghPX97JO9WXV17ehNK7d0umxBgaJj8A', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 53, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/AX3AAAAZAAAAAAAAAAXAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAABJeTmKR1qr+CZoIyjAfGxrIXZ/your_sha256_hashbbeqSjxYzhv5IC08K2vSkxzYTwJykvQ8l0+e4M4h2guoK89s8HUfIqIOzDmoGsNTaLcYUG', 'your_sha512_hash==', your_sha256_hashbQRHAlb8BfcLGrZdne46/your_sha256_hashyour_sha256_hash9CRsrYcDdZWNGsqaNfTR8bywsjubQRHAlb8BfcLGrZdne46/your_sha256_hashyour_sha256_hashAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAA1AAAAAAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAA1AAAAAAAAAAAEl5OYpHWqv4JmgjKMB8bGshdn+0jVUh3Y59mRGjAPPgAAAAJUC+QAAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 54, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/AX3AAAAyAAAAAAAAAAYAAAAAAAAAAAAAAACAAAAAAAAAAEAAAAABJeTmKR1qr+CZoIyjAfGxrIXZyour_sha512_hash+AAAAAQAAAABi/your_sha256_hashAACVvwF9wAAAEDRRWwMrdLrhnl+FIP+your_sha256_hashs40IGjAPPgAAAEDXbXWVdzmN6NWBjYU5OvB33WTUaa2wDZX3RmFTZQQ/+7JvPdblMtNCxo8IOYePQg90RajV9rB+k8P+SEpPHCUH', your_sha256_hashAAAAAAAAAAEAAAAAAAAAAAAAAAEAAAAAAAAAAA==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAEl5OYpHWqv4JmgjKMB8bGshdn+0jVUh3Y59mRGjAPPgAAAAJUC+your_sha256_hashA2AAAAAAAAAAAEl5OYpHWqv4JmgjKMB8bGshdn+your_sha256_hashAAAAAAAAAAAAAAAAAAAAAMAAAA2AAAAAAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAA2AAAAAAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashyour_sha256_hashsjubQRHAlb8BfcLGrZbQ+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAEAAAAAAAAAAAAAAAAAAAAAAAADAAAANgAAAAAAAAAABJeTmKR1qr+CZoIyjAfGxrIXZ/your_sha256_hashAAAAAAAAAAAAAAAAAAAAABAAAANgAAAAAAAAAABJeTmKR1qr+CZoIyjAfGxrIXZ/your_sha256_hashAAAAAAAAAAAAAAAAA='); INSERT INTO txhistory VALUES (your_sha256_hash, 55, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJWyour_sha512_hash+pXVxR/9QAAAACVAvkAAAAAAAAAAABVvwF9wAAAEBCMMjX9xO3XKpQ6uS/U1BqdzRhSBYQ35ivmZxPBgfqQsTDma1BzOsq/bmHJ4P+fkYJRJUdZZazXJM2i4mF7nUH', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAA3AAAAAAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashyour_sha256_hash6ldXFH/1AAAAAJUC+QAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 56, 1, 'AAAAABpcjiETZ0uhwxJJhgBPYKWSVJy2TZ2LI87fqV1cUf/your_sha256_hashGAE9gpZJUnLZNnYsjzt+pXVxR/9QAAAAAAAAAAAX14QAAAAAAAAAAAVxR/9QAAABAK6pcXYMzAEmH08CZ1LWmvtNDKauhx+OImtP/Lk4hVTMJRVBOebVs5WEPj9iSrgGT0EswuDCZ2i5AEzwgGof9Ag==', 'your_sha512_hash==', your_sha256_hashzt+pXVxR/your_sha256_hashAAAAAABAAAAOAAAAAAAAAAAGlyOIRNnS6HDEkmGAE9gpZJUnLZNnYsjzt+pXVxR/your_sha256_hashAAAAAABAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 57, 1, 'AAAAAGL8HQvQkbK2HA3WVjRrKmjX00fG8sLI7m0ERwJW/your_sha256_hashyour_sha256_hash95E9wxgETD8TqxUrkgC0/7XHyNDts6Q5huRHfDRyRcoHdv7aMp/sPvC3RPkXjOMjgbKJUX7SgExUeYB5f8F', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAEAAAA5AAAAAAAAAABi/your_sha256_hashAAAAAAAAQAAAABi/your_sha256_hashAAAAAAAAAAAAAAAAAA5AAAAAAAAAAChl+0U/eniJ9tObqFB2J6i27dnD0TTka2hKHkwHK0SlAAAAAJUC+QAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 58, 1, your_sha256_hashyour_sha256_hashKNIq9ag0sR+R/cv3d9tEuaYEm2BazIzILRdGj9alaVMZBhxoJ3ZIpP3rraCJzyoKZO+p5HBVe10a2+UG', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAgAAAAMAAAA6AAAAAAAAAAChl+0U/eniJ9tObqFB2J6i27dnD0TTka2hKHkwHK0SlAAAAAJUC+your_sha256_hashA6AAAAAAAAAAChl+0U/eniJ9tObqFB2J6i27dnD0TTka2hKHkwHK0SlAAAAAJUC+OcAAAARdlkuAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 59, 1, your_sha256_hashyour_sha256_hashFnT3JvmT1P5lJ/lggpZe4nxH5WvJ9K/SLOD49wfqq84suncoZIn3IAf0PExMw3etu5FiDVw3c3jYYhAL', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAA=='); INSERT INTO txhistory VALUES (your_sha256_hash, 60, 1, your_sha256_hashyour_sha256_hashntOUXDMg4MfoCPlbLRQZH7VwNpUHMvtnRWqWIiY/qnYYu0bvgYUVtoFOOeqElRKLYqtOW3Fz9iKl0WQJ', 'your_sha512_hash==', your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashAAAAAAAAAAAAAAABAAAAAA=='); -- -- Data for Name: upgradehistory; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO upgradehistory VALUES (2, 1, 'AAAAAQAAAAs=', 'AAAAAA=='); INSERT INTO upgradehistory VALUES (2, 2, 'AAAAAwAPQkA=', 'AAAAAA=='); -- -- Name: accountdata accountdata_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY accountdata ADD CONSTRAINT accountdata_pkey PRIMARY KEY (accountid, dataname); -- -- Name: accounts accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY accounts ADD CONSTRAINT accounts_pkey PRIMARY KEY (accountid); -- -- Name: ban ban_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY ban ADD CONSTRAINT ban_pkey PRIMARY KEY (nodeid); -- -- Name: ledgerheaders ledgerheaders_ledgerseq_key; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY ledgerheaders ADD CONSTRAINT ledgerheaders_ledgerseq_key UNIQUE (ledgerseq); -- -- Name: ledgerheaders ledgerheaders_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY ledgerheaders ADD CONSTRAINT ledgerheaders_pkey PRIMARY KEY (ledgerhash); -- -- Name: offers offers_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY offers ADD CONSTRAINT offers_pkey PRIMARY KEY (offerid); -- -- Name: peers peers_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY peers ADD CONSTRAINT peers_pkey PRIMARY KEY (ip, port); -- -- Name: publishqueue publishqueue_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY publishqueue ADD CONSTRAINT publishqueue_pkey PRIMARY KEY (ledger); -- -- Name: pubsub pubsub_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY pubsub ADD CONSTRAINT pubsub_pkey PRIMARY KEY (resid); -- -- Name: quoruminfo quoruminfo_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY quoruminfo ADD CONSTRAINT quoruminfo_pkey PRIMARY KEY (nodeid); -- -- Name: scpquorums scpquorums_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY scpquorums ADD CONSTRAINT scpquorums_pkey PRIMARY KEY (qsethash); -- -- Name: storestate storestate_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY storestate ADD CONSTRAINT storestate_pkey PRIMARY KEY (statename); -- -- Name: trustlines trustlines_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY trustlines ADD CONSTRAINT trustlines_pkey PRIMARY KEY (accountid, issuer, assetcode); -- -- Name: txfeehistory txfeehistory_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY txfeehistory ADD CONSTRAINT txfeehistory_pkey PRIMARY KEY (ledgerseq, txindex); -- -- Name: txhistory txhistory_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY txhistory ADD CONSTRAINT txhistory_pkey PRIMARY KEY (ledgerseq, txindex); -- -- Name: upgradehistory upgradehistory_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY upgradehistory ADD CONSTRAINT upgradehistory_pkey PRIMARY KEY (ledgerseq, upgradeindex); -- -- Name: accountbalances; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX accountbalances ON accounts USING btree (balance) WHERE (balance >= 1000000000); -- -- Name: bestofferindex; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX bestofferindex ON offers USING btree (sellingasset, buyingasset, price); -- -- Name: histbyseq; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX histbyseq ON txhistory USING btree (ledgerseq); -- -- Name: histfeebyseq; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX histfeebyseq ON txfeehistory USING btree (ledgerseq); -- -- Name: ledgersbyseq; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX ledgersbyseq ON ledgerheaders USING btree (ledgerseq); -- -- Name: scpenvsbyseq; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX scpenvsbyseq ON scphistory USING btree (ledgerseq); -- -- Name: scpquorumsbyseq; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX scpquorumsbyseq ON scpquorums USING btree (lastledgerseq); -- -- Name: upgradehistbyseq; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX upgradehistbyseq ON upgradehistory USING btree (ledgerseq); -- -- PostgreSQL database dump complete -- ```
```yaml dataversion: draft1 created: 1463618411 id: 503796cf-3308-458e-bac1-62a340ce46de USID: '' name: city: province: address: '' type: '' location: '' principal: '' shareholder: [] url: [] phone: [] baiduad: {} news: {} putian: {} comments: {} note: '' ```
```xml import { Match, RouteProps } from "found"; import React from "react"; import { Environment } from "relay-runtime"; import { Overwrite } from "coral-framework/types"; import { resolveModule } from "../relay/helpers"; export type RouteConfig<Props = any, QueryResponse = undefined> = Partial< Pick<RouteProps, "query" | "getQuery" | "Component"> > & Partial<Pick<RouteProps, "data" | "getData" | "defer">> & { cacheConfig?: { force?: boolean; }; prepareVariables?: ( params: Record<string, string>, match: Overwrite<Match, { context: { relayEnvironment: Environment } }>, environment: Environment ) => Record<string, any>; render?: (args: { error: Error; data: QueryResponse | null; retry: () => void; match: Match; Component: React.ComponentType<Partial<Props>>; }) => React.ReactElement; }; export default function createRouteConfig<Props, QueryResponse>( config: RouteConfig<Props, QueryResponse> ): RouteProps { return { ...config, query: config.query ? resolveModule(config.query) : undefined, getQuery: config.getQuery ? (...args: any[]) => { return resolveModule(config.getQuery(...args)); } : undefined, render: function WithRouteConfig({ error, props: data, retry, match, Component, }: any) { if (config.render) { return config.render({ error, data, retry, match, Component }); } return React.createElement(Component, { error, data, retry, match, }); }, }; } ```
Cynthia MacLeod is a Canadian fiddler from Prince Edward Island. She describes her fiddling style as "Cape Breton". In addition to recording, hosting standing-room-only ceilidhs in Brackley Beach, and touring, she teaches workshops both in Canada and the United States. Discography Head over Heels (2002) Crackerjack (2004) Hot Off the Floor (2007) Riddle (2010) Live at the Brackley Beach Ceilidh (2012) Awards Notes External links Artist's bio page Cape Breton Fiddle Recording Artist Index Music Prince Edward Island Living people Musicians from Prince Edward Island Canadian women violinists and fiddlers 21st-century Canadian violinists and fiddlers Year of birth missing (living people) Cape Breton fiddlers
```php <?php /* * This file is part of the GlobalState package. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace SebastianBergmann\GlobalState; use ArrayObject; use PHPUnit_Framework_TestCase; use SebastianBergmann\GlobalState\TestFixture\SnapshotClass; /** */ class SnapshotTest extends PHPUnit_Framework_TestCase { public function testStaticAttributes() { $blacklist = $this->getBlacklist(); $blacklist->method('isStaticAttributeBlacklisted')->willReturnCallback(function ($class) { return $class !== 'SebastianBergmann\GlobalState\TestFixture\SnapshotClass'; }); SnapshotClass::init(); $snapshot = new Snapshot($blacklist, false, true, false, false, false, false, false, false, false); $expected = array('SebastianBergmann\GlobalState\TestFixture\SnapshotClass' => array( 'string' => 'snapshot', 'arrayObject' => new ArrayObject(array(1, 2, 3)), 'stdClass' => new \stdClass(), )); $this->assertEquals($expected, $snapshot->staticAttributes()); } public function testConstants() { $snapshot = new Snapshot($this->getBlacklist(), false, false, true, false, false, false, false, false, false); $this->assertArrayHasKey('GLOBALSTATE_TESTSUITE', $snapshot->constants()); } public function testFunctions() { require_once __DIR__.'/_fixture/SnapshotFunctions.php'; $snapshot = new Snapshot($this->getBlacklist(), false, false, false, true, false, false, false, false, false); $functions = $snapshot->functions(); $this->assertThat( $functions, $this->logicalOr( // Zend $this->contains('sebastianbergmann\globalstate\testfixture\snapshotfunction'), // HHVM $this->contains('SebastianBergmann\GlobalState\TestFixture\snapshotFunction') ) ); $this->assertNotContains('assert', $functions); } public function testClasses() { $snapshot = new Snapshot($this->getBlacklist(), false, false, false, false, true, false, false, false, false); $classes = $snapshot->classes(); $this->assertContains('PHPUnit_Framework_TestCase', $classes); $this->assertNotContains('Exception', $classes); } public function testInterfaces() { $snapshot = new Snapshot($this->getBlacklist(), false, false, false, false, false, true, false, false, false); $interfaces = $snapshot->interfaces(); $this->assertContains('PHPUnit_Framework_Test', $interfaces); $this->assertNotContains('Countable', $interfaces); } /** * @requires PHP 5.4 */ public function testTraits() { spl_autoload_call('SebastianBergmann\GlobalState\TestFixture\SnapshotTrait'); $snapshot = new Snapshot($this->getBlacklist(), false, false, false, false, false, false, true, false, false); $this->assertContains('SebastianBergmann\GlobalState\TestFixture\SnapshotTrait', $snapshot->traits()); } public function testIniSettings() { $snapshot = new Snapshot($this->getBlacklist(), false, false, false, false, false, false, false, true, false); $iniSettings = $snapshot->iniSettings(); $this->assertArrayHasKey('date.timezone', $iniSettings); $this->assertEquals('Etc/UTC', $iniSettings['date.timezone']); } public function testIncludedFiles() { $snapshot = new Snapshot($this->getBlacklist(), false, false, false, false, false, false, false, false, true); $this->assertContains(__FILE__, $snapshot->includedFiles()); } /** * @return \SebastianBergmann\GlobalState\Blacklist */ private function getBlacklist() { return $this->getMockBuilder('SebastianBergmann\GlobalState\Blacklist') ->disableOriginalConstructor() ->getMock(); } } ```
The Mundial Tour was a concert tour by the reggaeton performer Daddy Yankee in support of his sixth studio album, Mundial (2010). The tour visited the United States, South and Central America and Europe. Tour dates Cancelled shows Notes References 2010 concert tours 2011 concert tours Concert tours of the United States Concert tours of South America Concert tours of Europe Concert tours of Canada Daddy Yankee concert tours
```smalltalk namespace Microsoft.MixedReality.Toolkit.Rendering { /// <summary> /// Optional interface to use with objects which need to take ownership of <see cref="MaterialInstance"/>(s). /// </summary> public interface IMaterialInstanceOwner { /// <summary> /// Method which is invoked by a <see cref="MaterialInstance"/> when an external material change is detected. /// This normally occurs when materials are changed via <see href="path_to_url">Renderer.material</see>, /// <see href="path_to_url">Renderer.materials</see>, or via the editor. /// </summary> /// <param name="materialInstance">The material instance which contains the updated materials.</param> void OnMaterialChanged(MaterialInstance materialInstance); } } ```
Todd Russ (born January 8, 1961) is an American politician who has served as the Treasurer of Oklahoma since 2023. He previously served in the Oklahoma House of Representatives representing the 55th district from 2009 to 2022. He was term limited from the Oklahoma Legislature in 2022. Career He was first elected in a 2009 special election after Ryan McMullen resigned for a federal agricultural position. He was the first Republican to represent the district. In January 2022, Russ announced his campaign for Oklahoma state treasurer. He won the November general election and is the Oklahoma State Treasurer elect in 2022. Electoral history 2006 2009 2010, 2012, and 2014 Russ ran unopposed for re-election. 2016 2018 2020 2022 References 1961 births 21st-century American politicians Living people Republican Party members of the Oklahoma House of Representatives People from Washita County, Oklahoma State treasurers of Oklahoma
Styphlodromus bicolor is a species of beetle in the family Carabidae, the only species in the genus Styphlodromus. References Brachininae Monotypic Carabidae genera
Youth Without Youth can refer to: Youth Without Youth (novella), a 1976 novella by Romanian writer Mircea Eliade Youth Without Youth (film), a 2007 film by Francis Ford Coppola based on the novella "Youth Without Youth" (song), a 2012 single by Canadian indie band Metric
```go // // path_to_url // // Unless required by applicable law or agreed to in writing, software // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. package clientv3_test import ( "context" . "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo/extensions/table" . "github.com/onsi/gomega" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" apiv3 "github.com/projectcalico/api/pkg/apis/projectcalico/v3" "github.com/projectcalico/calico/libcalico-go/lib/apiconfig" "github.com/projectcalico/calico/libcalico-go/lib/backend" "github.com/projectcalico/calico/libcalico-go/lib/backend/encap" "github.com/projectcalico/calico/libcalico-go/lib/backend/model" "github.com/projectcalico/calico/libcalico-go/lib/clientv3" "github.com/projectcalico/calico/libcalico-go/lib/options" "github.com/projectcalico/calico/libcalico-go/lib/testutils" "github.com/projectcalico/calico/libcalico-go/lib/watch" ) var _ = testutils.E2eDatastoreDescribe("IPPool KDD v1 to v3 migration tests", testutils.DatastoreK8s, func(config apiconfig.CalicoAPIConfig) { ctx := context.Background() name1 := "ippool-1" name2 := "ippool-2" spec1_v3 := apiv3.IPPoolSpec{ CIDR: "1.2.3.0/24", NATOutgoing: true, IPIPMode: apiv3.IPIPModeCrossSubnet, VXLANMode: apiv3.VXLANModeNever, BlockSize: 26, NodeSelector: "all()", AllowedUses: []apiv3.IPPoolAllowedUse{apiv3.IPPoolAllowedUseWorkload, apiv3.IPPoolAllowedUseTunnel}, } kvp1 := &model.KVPair{ Key: model.ResourceKey{ Name: name1, Kind: apiv3.KindIPPool, }, Value: &apiv3.IPPool{ TypeMeta: metav1.TypeMeta{ Kind: apiv3.KindIPPool, APIVersion: apiv3.GroupVersionCurrent, }, ObjectMeta: metav1.ObjectMeta{ Name: name1, }, Spec: apiv3.IPPoolSpec{ CIDR: "1.2.3.0/24", Disabled: false, NATOutgoing: true, NodeSelector: "all()", VXLANMode: apiv3.VXLANModeNever, IPIP: &apiv3.IPIPConfiguration{ Enabled: true, Mode: encap.CrossSubnet, }, BlockSize: 26, }, }, } spec2_v3 := apiv3.IPPoolSpec{ CIDR: "2001::/120", NATOutgoing: true, IPIPMode: apiv3.IPIPModeNever, VXLANMode: apiv3.VXLANModeNever, BlockSize: 122, NodeSelector: "all()", AllowedUses: []apiv3.IPPoolAllowedUse{apiv3.IPPoolAllowedUseWorkload, apiv3.IPPoolAllowedUseTunnel}, } kvp2 := &model.KVPair{ Key: model.ResourceKey{ Name: name1, Kind: apiv3.KindIPPool, }, Value: &apiv3.IPPool{ TypeMeta: metav1.TypeMeta{ Kind: apiv3.KindIPPool, APIVersion: apiv3.GroupVersionCurrent, }, ObjectMeta: metav1.ObjectMeta{ Name: name1, }, Spec: apiv3.IPPoolSpec{ CIDR: "2001::/120", Disabled: false, NATOutgoing: true, BlockSize: 122, NodeSelector: "all()", VXLANMode: apiv3.VXLANModeNever, IPIP: &apiv3.IPIPConfiguration{ Enabled: false, }, }, }, } spec3_v3 := apiv3.IPPoolSpec{ CIDR: "1.1.1.0/24", NATOutgoing: false, IPIPMode: apiv3.IPIPModeAlways, VXLANMode: apiv3.VXLANModeNever, BlockSize: 26, NodeSelector: "all()", AllowedUses: []apiv3.IPPoolAllowedUse{apiv3.IPPoolAllowedUseWorkload, apiv3.IPPoolAllowedUseTunnel}, } kvp3 := &model.KVPair{ Key: model.ResourceKey{ Name: name1, Kind: apiv3.KindIPPool, }, Value: &apiv3.IPPool{ TypeMeta: metav1.TypeMeta{ Kind: apiv3.KindIPPool, APIVersion: apiv3.GroupVersionCurrent, }, ObjectMeta: metav1.ObjectMeta{ Name: name1, }, Spec: apiv3.IPPoolSpec{ CIDR: "1.1.1.0/24", Disabled: false, VXLANMode: apiv3.VXLANModeNever, IPIP: &apiv3.IPIPConfiguration{ Enabled: true, }, BlockSize: 26, NodeSelector: "all()", }, }, } spec5_v3 := apiv3.IPPoolSpec{ CIDR: "1.2.3.0/24", NATOutgoing: true, IPIPMode: apiv3.IPIPModeAlways, VXLANMode: apiv3.VXLANModeNever, BlockSize: 26, NodeSelector: "all()", AllowedUses: []apiv3.IPPoolAllowedUse{apiv3.IPPoolAllowedUseWorkload, apiv3.IPPoolAllowedUseTunnel}, } kvp5 := &model.KVPair{ Key: model.ResourceKey{ Name: name1, Kind: apiv3.KindIPPool, }, Value: &apiv3.IPPool{ TypeMeta: metav1.TypeMeta{ Kind: apiv3.KindIPPool, APIVersion: apiv3.GroupVersionCurrent, }, ObjectMeta: metav1.ObjectMeta{ Name: name1, }, Spec: apiv3.IPPoolSpec{ CIDR: "1.2.3.0/24", Disabled: false, VXLANMode: apiv3.VXLANModeNever, IPIP: &apiv3.IPIPConfiguration{ Enabled: true, Mode: encap.Always, }, NATOutgoing: true, NATOutgoingV1: false, BlockSize: 26, NodeSelector: "all()", }, }, } spec6_v3 := apiv3.IPPoolSpec{ CIDR: "1.2.3.0/24", NATOutgoing: true, IPIPMode: apiv3.IPIPModeCrossSubnet, VXLANMode: apiv3.VXLANModeNever, BlockSize: 26, NodeSelector: "has(x)", AllowedUses: []apiv3.IPPoolAllowedUse{apiv3.IPPoolAllowedUseWorkload, apiv3.IPPoolAllowedUseTunnel}, } kvp6 := &model.KVPair{ Key: model.ResourceKey{ Name: name1, Kind: apiv3.KindIPPool, }, Value: &apiv3.IPPool{ TypeMeta: metav1.TypeMeta{ Kind: apiv3.KindIPPool, APIVersion: apiv3.GroupVersionCurrent, }, ObjectMeta: metav1.ObjectMeta{ Name: name1, }, Spec: apiv3.IPPoolSpec{ CIDR: "1.2.3.0/24", Disabled: false, VXLANMode: apiv3.VXLANModeNever, IPIPMode: apiv3.IPIPModeCrossSubnet, IPIP: nil, NATOutgoing: false, NATOutgoingV1: true, BlockSize: 26, NodeSelector: "has(x)", }, }, } DescribeTable("IPPool CRD with v1 IPIP field tests", func(name1, name2 string, spec_v3 apiv3.IPPoolSpec, kvp *model.KVPair) { c, err := clientv3.New(config) Expect(err).NotTo(HaveOccurred()) be, err := backend.NewClient(config) Expect(err).NotTo(HaveOccurred()) be.Clean() By("Attempting to creating a new IPPool with the non-writable v1 IPIP field") _, outError := c.IPPools().Create(ctx, &apiv3.IPPool{ ObjectMeta: metav1.ObjectMeta{Name: name1}, Spec: kvp.Value.(*apiv3.IPPool).Spec, }, options.SetOptions{}) Expect(outError).To(HaveOccurred()) By("Creating IPPool with v1 IPIP field directly in the backend") outKVP1, err := be.Create(ctx, kvp) Expect(err).NotTo(HaveOccurred()) outPool, err := be.Get(ctx, kvp.Key, outKVP1.Revision) Expect(err).NotTo(HaveOccurred()) Expect(outPool.Value.(*apiv3.IPPool).Spec.IPIP).To(BeNil()) // We don't expect the AllowedUses field to be filled in by the backend client. That is defaulted // in the frontend. spec_v3_copy := spec_v3 spec_v3_copy.AllowedUses = nil Expect(outPool.Value.(*apiv3.IPPool).Spec).To(Equal(spec_v3_copy)) By("Updating the IPPool from the API client with the non-writable v1 IPIP field") _, outError = c.IPPools().Update(ctx, &apiv3.IPPool{ // R.I.P: 'a-rabbit-ate-my-carrot' is no longer a valid UID according to Calico. ObjectMeta: metav1.ObjectMeta{Name: name1, ResourceVersion: "555", CreationTimestamp: metav1.Now(), UID: uid}, Spec: kvp.Value.(*apiv3.IPPool).Spec, }, options.SetOptions{}) Expect(outError).To(HaveOccurred()) By("Listing all the IPPools, expecting a single result with name1/spec_v1") outList, outError := c.IPPools().List(ctx, options.ListOptions{}) Expect(outError).NotTo(HaveOccurred()) Expect(outList.Items).To(ConsistOf( testutils.Resource(apiv3.KindIPPool, testutils.ExpectNoNamespace, name1, spec_v3), )) By("Creating a new IPPool with name2/spec_v3") By("Creating another IPPool with v1 IPIP field directly in the backend name2/kvp_v3") kvpName2 := *kvp kvpName2.Key = model.ResourceKey{ Name: name2, Kind: apiv3.KindIPPool, } // Also need to change the Value Metadata Name because that will be the CRD key and needs to be unique. kvpName2.Value.(*apiv3.IPPool).Name = name2 _, err = be.Create(ctx, &kvpName2) Expect(err).NotTo(HaveOccurred()) By("Listing all the IPPools, expecting a two results with name1/spec_v1 and name2/spec_v3") outList, outError = c.IPPools().List(ctx, options.ListOptions{}) Expect(outError).NotTo(HaveOccurred()) Expect(outList.Items).To(ConsistOf( testutils.Resource(apiv3.KindIPPool, testutils.ExpectNoNamespace, name1, spec_v3), testutils.Resource(apiv3.KindIPPool, testutils.ExpectNoNamespace, name2, spec_v3), )) }, Entry("IPv4 IPPool CRD with v1 IPIP field and IPIP Enabled set to true and Mode CrossSubnet", name1, name2, spec1_v3, kvp1), Entry("IPv6 IPPool CRD with v1 IPIP field and IPIP Enabled set to false and Mode Never", name1, name2, spec2_v3, kvp2), Entry("IPv4 IPPool CRD with v1 IPIP field and IPIP Enabled set to true and Mode Always", name1, name2, spec3_v3, kvp3), Entry("IPv4 IPPool CRD with v1 NATOutgoingV1 field set to false and v3 NATOutgoing set to true", name1, name2, spec5_v3, kvp5), Entry("IPv4 IPPool CRD with v1 NATOutgoingV1 field set to true (v1 IPIP set to nil) and v3 NATOutgoing set to false", name1, name2, spec6_v3, kvp6), ) Describe("IPPool watch functionality", func() { It("should handle watch events for backend IPPool with v1 IPIP field", func() { c, err := clientv3.New(config) Expect(err).NotTo(HaveOccurred()) be, err := backend.NewClient(config) Expect(err).NotTo(HaveOccurred()) be.Clean() By("Listing IPPools with no resource version and checking for no results") outList, outError := c.IPPools().List(ctx, options.ListOptions{}) Expect(outError).NotTo(HaveOccurred()) Expect(outList.Items).To(HaveLen(0)) rev0 := outList.ResourceVersion By("Creating IPPool with v1 IPIP field directly in the backend") kvp1Name1 := *kvp1 kvp1Name1.Key = model.ResourceKey{ Name: name1, Kind: apiv3.KindIPPool, } // Also need to change the Value Metadata Name because that will be the CRD key and needs to be unique. kvp1Name1.Value.(*apiv3.IPPool).Name = name1 outKVP1, err := be.Create(ctx, &kvp1Name1) Expect(err).NotTo(HaveOccurred()) outRes1 := outKVP1.Value.(*apiv3.IPPool) By("Creating another IPPool with v1 IPIP field directly in the backend") kvp2Name2 := *kvp2 kvp2Name2.Key = model.ResourceKey{ Name: name2, Kind: apiv3.KindIPPool, } // Also need to change the Value Metadata Name because that will be the CRD key and needs to be unique. kvp2Name2.Value.(*apiv3.IPPool).Name = name2 outKVP2, err := be.Create(ctx, &kvp2Name2) Expect(err).NotTo(HaveOccurred()) outRes2 := outKVP2.Value.(*apiv3.IPPool) By("Deleting IPPool with v1 IPIP field directly in the backend") outKVP3, err := be.Delete(ctx, kvp1.Key, "") Expect(err).NotTo(HaveOccurred()) outRes3 := outKVP3.Value.(*apiv3.IPPool) By("Starting a watcher from rev0 - this should get all events") w, err := c.IPPools().Watch(ctx, options.ListOptions{ResourceVersion: rev0}) Expect(err).NotTo(HaveOccurred()) testWatcher2 := testutils.NewTestResourceWatch(config.Spec.DatastoreType, w) defer testWatcher2.Stop() By("Modifying res2") outRes4, err := c.IPPools().Update( ctx, &apiv3.IPPool{ ObjectMeta: metav1.ObjectMeta{Name: name2, ResourceVersion: outRes2.ResourceVersion, CreationTimestamp: metav1.Now(), UID: outKVP2.Value.(*apiv3.IPPool).ObjectMeta.UID}, Spec: spec2_v3, }, options.SetOptions{}, ) Expect(err).NotTo(HaveOccurred()) testWatcher2.ExpectEvents(apiv3.KindIPPool, []watch.Event{ { Type: watch.Added, Object: outRes1, }, { Type: watch.Added, Object: outRes2, }, { Type: watch.Deleted, Previous: outRes3, }, { Type: watch.Modified, Previous: outRes2, Object: outRes4, }, }) testWatcher2.Stop() }) }) }) ```
```objective-c /* * PROGRAM: Firebird utilities * MODULE: nbk_proto.h * DESCRIPTION: nbackup prototypes * * The contents of this file are subject to the Initial * you may not use this file except in compliance with the * path_to_url * * WITHOUT WARRANTY OF ANY KIND, either express or implied. * * The Original Code was created by Alex Peshkov * for the Firebird Open Source RDBMS project. * * and all contributors signed below. * * All Rights Reserved. * Contributor(s): ______________________________________. */ #ifndef NBK_PROTO_H #define NBK_PROTO_H #include "../common/ThreadData.h" #include "../common/UtilSvc.h" void nbackup(Firebird::UtilSvc*); int NBACKUP_main(Firebird::UtilSvc*); #endif // NBK_PROTO_H ```
```python import re import sys import array import struct import logging import pathlib import argparse from typing import List, Tuple, Iterable, Optional from pathlib import Path from itertools import chain from dataclasses import dataclass import pefile from typing_extensions import TypeAlias import floss.utils from floss.results import StaticString, StringEncoding from floss.language.utils import StructString, find_lea_xrefs, get_struct_string_candidates logger = logging.getLogger(__name__) MIN_STR_LEN = 4 def find_stack_strings_with_regex( extract_stackstring_pattern, section_data, offset, min_length ) -> Iterable[StaticString]: """ Find stack strings using a regex pattern. """ for m in extract_stackstring_pattern.finditer(section_data): for i in range(1, 8): try: binary_string = m.group(i) if not binary_string: continue if binary_string.endswith(b"\x00"): binary_string = binary_string[:-1] addr = m.start() # need to subtract opcode bytes offset off_regex = len(m.group(0)) - len(binary_string) addr = offset + off_regex + m.start() try: string = StaticString.from_utf8(binary_string, addr, min_length) yield string except ValueError: pass except AttributeError: break def find_amd64_stackstrings(section_data, offset, min_length): """ Stackstrings in amd64 architecture are found by searching for the following pattern: .text:000000000048FFA9 48 83 FB 0F cmp rbx, 0Fh .text:000000000048FFAD 75 69 jnz short loc_490018 .text:000000000048FFAF 48 BA 50 61 73 73 77 6F 72 64 mov rdx, 64726F7773736150h .text:000000000048FFB9 48 39 10 cmp [rax], rdx .text:000000000048FFBC 75 5A jnz short loc_490018 .text:000000000048FFBE 81 78 08 69 73 50 72 cmp dword ptr [rax+8], 72507369h .text:000000000048FFC5 75 51 jnz short loc_490018 .text:000000000048FFC7 66 81 78 0C 61 6E cmp word ptr [rax+0Ch], 6E61h .text:000000000048FFCD 75 49 jnz short loc_490018 .text:000000000048FFCF 80 78 0E 6B cmp byte ptr [rax+0Eh], 6Bh ; 'k' .text:000000000048FFD3 75 43 jnz short loc_490018 """ extract_stackstring_pattern = re.compile( b"\x48\xba(........)|\x48\xb8(........)|\x81\x78\x08(....)|\x81\x79\x08(....)|\x66\x81\x78\x0c(..)|\x66\x81\x79\x0c(..)|\x80\x78\x0e(.)|\x80\x79\x0e(.)" ) yield from find_stack_strings_with_regex(extract_stackstring_pattern, section_data, offset, min_length) def find_i386_stackstrings(section_data, offset, min_length): """ Stackstrings in i386 architecture are found by searching for the following pattern: .text:0048CED3 75 6D jnz short loc_48CF42 .text:0048CED5 81 7D 00 50 61 73 73 cmp dword ptr [ebp+0], 73736150h .text:0048CEDC 75 64 jnz short loc_48CF42 .text:0048CEDE 66 81 7D 04 77 6F cmp word ptr [ebp+4], 6F77h .text:0048CEE4 75 5C jnz short loc_48CF42 .text:0048CEE6 80 7D 06 72 cmp byte ptr [ebp+6], 72h ; 'r' .text:0048CEEA 75 56 jnz short loc_48CF42 """ extract_stackstring_pattern = re.compile( b"\x81\xf9(....)|\x81\x38(....)|\x81\x7d\x00(....)|\x81\x3B(....)|\x66\x81\xf9(..)|\x66\x81\x7b\x04(..)|\x66\x81\x78\x04(..)|\x66\x81\x7d\x04(..)|\x80\x7b\x06(.)|\x80\x7d\x06(.)|\x80\xf8(.)|\x80\x78\x06(.)", re.DOTALL, ) yield from find_stack_strings_with_regex(extract_stackstring_pattern, section_data, offset, min_length) def get_stackstrings(pe: pefile.PE, min_length: int) -> Iterable[StaticString]: """ Find stackstrings in the given PE file. TODO(mr-tz): algorithms need improvements / rethinking of approach path_to_url """ for section in pe.sections: if not section.IMAGE_SCN_MEM_EXECUTE: continue code = section.get_data() code_raw_data = section.PointerToRawData if pe.FILE_HEADER.Machine == pefile.MACHINE_TYPE["IMAGE_FILE_MACHINE_AMD64"]: stack_string = find_amd64_stackstrings(code, code_raw_data, min_length) elif pe.FILE_HEADER.Machine == pefile.MACHINE_TYPE["IMAGE_FILE_MACHINE_I386"]: stack_string = find_i386_stackstrings(code, code_raw_data, min_length) else: raise ValueError("unhandled architecture") yield from stack_string VA: TypeAlias = int def find_longest_monotonically_increasing_run(l: List[int]) -> Tuple[int, int]: """ for the given sorted list of values, find the (start, end) indices of the longest run of values such that each value is greater than or equal to the previous value. for example: [4, 4, 1, 2, 3, 0, 0] -> (2, 4) ^^^^^^^ """ max_run_length = 0 max_run_end_index = 0 current_run_length = 0 prior_value = 0 for i, value in enumerate(l): if value >= prior_value: current_run_length += 1 else: current_run_length = 1 if current_run_length > max_run_length: max_run_length = current_run_length max_run_end_index = i prior_value = value max_run_start_index = max_run_end_index - max_run_length + 1 return max_run_start_index, max_run_end_index def read_struct_string(pe: pefile.PE, instance: StructString) -> str: """ read the string for the given struct String instance, validating that it looks like UTF-8, or raising a ValueError. """ image_base = pe.OPTIONAL_HEADER.ImageBase instance_rva = instance.address - image_base # fetch data for the string *and* the next byte, # which we'll use to ensure the string is not NULL terminated. buf = pe.get_data(instance_rva, instance.length + 1) instance_data = buf[: instance.length] next_byte = buf[instance.length] try: s = instance_data.decode("utf-8") except UnicodeDecodeError: raise ValueError("struct string instance does not contain valid UTF-8") # re-encoding the string should produce the same bytes, # otherwise, the string may not be the length intended. if s.encode("utf-8") != instance_data: raise ValueError("struct string length incorrect") # string in string blob should not be NULL terminated if next_byte == 0x00: raise ValueError("struct string is NULL terminated") return s def find_string_blob_range(pe: pefile.PE, struct_strings: List[StructString]) -> Tuple[VA, VA]: """ find the range of the string blob, as loaded in memory. the current algorithm relies on the fact that the Go compiler stores the strings in length-sorted order, from shortest to longest. so we use the recovered candidate struct String instances to find the longest run of monotonically increasing lengths, which should be the string blob. then we carve for all the data between | 00 00 00 00 |. in practice, the longest run is hundreds or thousands of entries long, versus a dozen or so for the next longest non-string blob run. so its pretty clear. we use this algorithm because it lets us find the string blob without reading all the data of the candidate struct string instances, of which there might be hundreds of thousands and takes many minutes. note: this algorithm relies heavily on the strings being stored in length-sorted order. """ image_base = pe.OPTIONAL_HEADER.ImageBase struct_strings.sort(key=lambda s: s.address) run_start, run_end = find_longest_monotonically_increasing_run(list(map(lambda s: s.length, struct_strings))) # pick the mid string, so that we avoid any junk data on the edges of the string blob run_mid = (run_start + run_end) // 2 instance = struct_strings[run_mid] s = read_struct_string(pe, instance) assert s is not None logger.debug("string blob: struct string instance: 0x%x: %s...", instance.address, s[:16]) instance_rva = instance.address - image_base section = pe.get_section_by_rva(instance_rva) section_data = section.get_data() instance_offset = instance_rva - section.VirtualAddress # kubelet.exe has an embedded non-UTF-8 sequence of bytes, including | 00 00 | # so we use a larger needle | 00 00 00 00 | # # see: path_to_url#issuecomment-1623354852 next_null = section_data.find(b"\x00\x00\x00\x00", instance_offset) assert next_null != -1 prev_null = section_data.rfind(b"\x00\x00\x00\x00", 0, instance_offset) assert prev_null != -1 section_start = image_base + section.VirtualAddress blob_start, blob_end = (section_start + prev_null, section_start + next_null) logger.debug("string blob: [0x%x-0x%x]", blob_start, blob_end) return blob_start, blob_end def get_string_blob_strings(pe: pefile.PE, min_length) -> Iterable[StaticString]: """ for the given PE file compiled by Go, find the string blob and then extract strings from it. we rely on code and memory scanning techniques to identify pointers into this table, which is then segmented into strings. we expect the string blob to generally contain UTF-8 strings; however, this isn't guaranteed: > // string is the set of all strings of 8-bit bytes, conventionally but not > // necessarily representing UTF-8-encoded text. A string may be empty, but > // not nil. Values of string type are immutable. > type string string path_to_url#L70-L73 its still the best we can do, though. """ image_base = pe.OPTIONAL_HEADER.ImageBase with floss.utils.timing("find struct string candidates"): struct_strings = list(sorted(set(get_struct_string_candidates(pe)), key=lambda s: s.address)) if not struct_strings: logger.warning( "Failed to find struct string candidates: Is this a Go binary? If so, the Go version may be unsupported." ) return with floss.utils.timing("find string blob"): try: string_blob_start, string_blob_end = find_string_blob_range(pe, struct_strings) except ValueError: logger.warning( "Failed to find string blob range: Is this a Go binary? If so, the Go version may be unsupported." ) return with floss.utils.timing("collect string blob strings"): string_blob_size = string_blob_end - string_blob_start string_blob_buf = pe.get_data(string_blob_start - image_base, string_blob_size) string_blob_pointers: List[VA] = [] for instance in struct_strings: if not (string_blob_start <= instance.address < string_blob_end): continue string_blob_pointers.append(instance.address) for xref in find_lea_xrefs(pe): if not (string_blob_start <= xref < string_blob_end): continue string_blob_pointers.append(xref) last_size = 0 string_blob_pointers = list(sorted(set(string_blob_pointers))) for start, end in zip(string_blob_pointers, string_blob_pointers[1:]): assert string_blob_start <= start < string_blob_end assert string_blob_start <= end < string_blob_end size = end - start string_blob_offset = start - string_blob_start sbuf = string_blob_buf[string_blob_offset : string_blob_offset + size] try: s = sbuf.decode("utf-8") except UnicodeDecodeError: continue if not s: continue if last_size > len(s): # today, the string blob is stored in order of length, # shortest to longest, so we can detect when we missed a string. # # for example: # # 0x4aab99: nmidlelocked= # 0x4aaba7: on zero Value # 0x4aabb5: out of range procedure in <<< missed! # 0x4aabd1: to finalizer # 0x4aabdf: untyped args # 0x4aabed: -thread limit # # we probably missed the string: " procedure in " logger.warning("probably missed a string blob string ending at: 0x%x", start - 1) try: string = StaticString.from_utf8(sbuf, pe.get_offset_from_rva(start - image_base), min_length) yield string except ValueError: pass # when we recover the last string from the string blob table, # it may have some junk at the end. # # this is because the string blob might be stored next to non-zero, non-string data. # when we search for the | 00 00 00 00 | for the end of the string blob, # we may pick up some of this non-string data. # # so we try to recover the last string by searching for the longest # valid UTF-8 string from that last pointer. # it still may have junk appended to it, but at least its UTF-8. last_pointer = string_blob_pointers[-1] last_pointer_offset = last_pointer - string_blob_start last_buf = string_blob_buf[last_pointer_offset:] for size in range(len(last_buf), 0, -1): try: _ = last_buf[:size].decode("utf-8") except UnicodeDecodeError: continue else: try: string = StaticString.from_utf8( last_buf[:size], pe.get_offset_from_rva(last_pointer - image_base), min_length ) yield string except ValueError: pass break def extract_go_strings(sample, min_length) -> List[StaticString]: """ extract Go strings from the given PE file """ p = pathlib.Path(sample) buf = p.read_bytes() pe = pefile.PE(data=buf, fast_load=True) go_strings: List[StaticString] = list() go_strings.extend(get_string_blob_strings(pe, min_length)) go_strings.extend(get_stackstrings(pe, min_length)) return go_strings def get_static_strings_from_blob_range(sample: pathlib.Path, static_strings: List[StaticString]) -> List[StaticString]: pe = pefile.PE(data=pathlib.Path(sample).read_bytes(), fast_load=True) struct_strings = list(sorted(set(get_struct_string_candidates(pe)), key=lambda s: s.address)) if not struct_strings: return [] try: string_blob_start, string_blob_end = find_string_blob_range(pe, struct_strings) except ValueError: return [] image_base = pe.OPTIONAL_HEADER.ImageBase string_blob_start = pe.get_offset_from_rva(string_blob_start - image_base) string_blob_end = pe.get_offset_from_rva(string_blob_end - image_base) return list(filter(lambda s: string_blob_start <= s.offset < string_blob_end, static_strings)) def main(argv=None): parser = argparse.ArgumentParser(description="Get Go strings") parser.add_argument("path", help="file or path to analyze") parser.add_argument( "-n", "--minimum-length", dest="min_length", type=int, default=MIN_STR_LEN, help="minimum string length", ) args = parser.parse_args(args=argv) logging.basicConfig(level=logging.DEBUG) go_strings = sorted(extract_go_strings(args.path, args.min_length), key=lambda s: s.offset) for string in go_strings: print(f"{string.offset:#x}: {string.string}") if __name__ == "__main__": sys.exit(main()) ```
```java package org.lognet.springboot.grpc.simple; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.node.ObjectNode; import com.jayway.jsonpath.Configuration; import com.jayway.jsonpath.DocumentContext; import com.jayway.jsonpath.JsonPath; import com.jayway.jsonpath.TypeRef; import com.jayway.jsonpath.spi.json.JacksonJsonProvider; import com.jayway.jsonpath.spi.mapper.JacksonMappingProvider; import io.micrometer.prometheus.PrometheusConfig; import org.awaitility.Awaitility; import org.hamcrest.Matchers; import org.junit.Test; import org.junit.runner.RunWith; import org.lognet.springboot.grpc.GrpcServerTestBase; import org.lognet.springboot.grpc.TestConfig; import org.lognet.springboot.grpc.demo.DemoApp; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.actuate.health.Status; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.boot.test.web.client.TestRestTemplate; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.test.context.ActiveProfiles; import org.springframework.test.context.junit4.SpringRunner; import java.time.Duration; import java.util.Optional; import java.util.Set; import java.util.Spliterator; import java.util.Spliterators; import java.util.concurrent.Callable; import java.util.concurrent.ExecutionException; import java.util.stream.Stream; import java.util.stream.StreamSupport; import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.Assert.assertEquals; import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT; /** * Created by alexf on 28-Jan-16. */ @RunWith(SpringRunner.class) @SpringBootTest(classes = {DemoApp.class}, webEnvironment = RANDOM_PORT , properties = { "management.endpoints.web.exposure.include=*" , "spring.main.web-application-type=servlet" }) @ActiveProfiles({"disable-security"}) public class Issue295Test extends GrpcServerTestBase { @Autowired private TestRestTemplate restTemplate; @Test public void configPropertiesTest() throws ExecutionException, InterruptedException { ResponseEntity<String> response = restTemplate.getForEntity("/actuator/configprops", String.class); assertEquals(HttpStatus.OK, response.getStatusCode()); } } ```
```javascript 'use strict'; const common = require('../common'); if (!common.hasCrypto) common.skip('missing crypto'); const http2 = require('http2'); const msecs = common.platformTimeout(1); const server = http2.createServer(); server.on('request', (req, res) => { req.setTimeout(msecs, common.mustCall(() => { res.end(); })); req.on('timeout', common.mustCall()); res.on('finish', common.mustCall(() => { req.setTimeout(msecs, common.mustNotCall()); process.nextTick(() => { req.setTimeout(msecs, common.mustNotCall()); server.close(); }); })); }); server.listen(0, common.mustCall(() => { const port = server.address().port; const client = http2.connect(`path_to_url{port}`); const req = client.request({ ':path': '/', ':method': 'GET', ':scheme': 'http', ':authority': `localhost:${port}` }); req.on('end', common.mustCall(() => { client.close(); })); req.resume(); req.end(); })); ```
```objective-c /* * The copyright in this software is being made available under the 2-clauses * party and contributor rights, including patent rights, and no such rights * are granted under this license. * * All rights reserved. * * 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. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `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 THE COPYRIGHT OWNER OR 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. */ #ifndef OPJ_MCT_H #define OPJ_MCT_H /** @file mct.h @brief Implementation of a multi-component transforms (MCT) The functions in MCT.C have for goal to realize reversible and irreversible multicomponent transform. The functions in MCT.C are used by some function in TCD.C. */ /** @defgroup MCT MCT - Implementation of a multi-component transform */ /*@{*/ /** @name Exported functions */ /*@{*/ /* your_sha256_hash------- */ /** Apply a reversible multi-component transform to an image @param c0 Samples for red component @param c1 Samples for green component @param c2 Samples blue component @param n Number of samples for each component */ void opj_mct_encode(OPJ_INT32* OPJ_RESTRICT c0, OPJ_INT32* OPJ_RESTRICT c1, OPJ_INT32* OPJ_RESTRICT c2, OPJ_SIZE_T n); /** Apply a reversible multi-component inverse transform to an image @param c0 Samples for luminance component @param c1 Samples for red chrominance component @param c2 Samples for blue chrominance component @param n Number of samples for each component */ void opj_mct_decode(OPJ_INT32* OPJ_RESTRICT c0, OPJ_INT32* OPJ_RESTRICT c1, OPJ_INT32* OPJ_RESTRICT c2, OPJ_SIZE_T n); /** Get norm of the basis function used for the reversible multi-component transform @param compno Number of the component (0->Y, 1->U, 2->V) @return */ OPJ_FLOAT64 opj_mct_getnorm(OPJ_UINT32 compno); /** Apply an irreversible multi-component transform to an image @param c0 Samples for red component @param c1 Samples for green component @param c2 Samples blue component @param n Number of samples for each component */ void opj_mct_encode_real(OPJ_INT32* OPJ_RESTRICT c0, OPJ_INT32* OPJ_RESTRICT c1, OPJ_INT32* OPJ_RESTRICT c2, OPJ_SIZE_T n); /** Apply an irreversible multi-component inverse transform to an image @param c0 Samples for luminance component @param c1 Samples for red chrominance component @param c2 Samples for blue chrominance component @param n Number of samples for each component */ void opj_mct_decode_real(OPJ_FLOAT32* OPJ_RESTRICT c0, OPJ_FLOAT32* OPJ_RESTRICT c1, OPJ_FLOAT32* OPJ_RESTRICT c2, OPJ_SIZE_T n); /** Get norm of the basis function used for the irreversible multi-component transform @param compno Number of the component (0->Y, 1->U, 2->V) @return */ OPJ_FLOAT64 opj_mct_getnorm_real(OPJ_UINT32 compno); /** FIXME DOC @param p_coding_data MCT data @param n size of components @param p_data components @param p_nb_comp nb of components (i.e. size of p_data) @param is_signed tells if the data is signed @return OPJ_FALSE if function encounter a problem, OPJ_TRUE otherwise */ OPJ_BOOL opj_mct_encode_custom( OPJ_BYTE * p_coding_data, OPJ_SIZE_T n, OPJ_BYTE ** p_data, OPJ_UINT32 p_nb_comp, OPJ_UINT32 is_signed); /** FIXME DOC @param pDecodingData MCT data @param n size of components @param pData components @param pNbComp nb of components (i.e. size of p_data) @param isSigned tells if the data is signed @return OPJ_FALSE if function encounter a problem, OPJ_TRUE otherwise */ OPJ_BOOL opj_mct_decode_custom( OPJ_BYTE * pDecodingData, OPJ_SIZE_T n, OPJ_BYTE ** pData, OPJ_UINT32 pNbComp, OPJ_UINT32 isSigned); /** FIXME DOC @param pNorms MCT data @param p_nb_comps size of components @param pMatrix components @return */ void opj_calculate_norms(OPJ_FLOAT64 * pNorms, OPJ_UINT32 p_nb_comps, OPJ_FLOAT32 * pMatrix); /** FIXME DOC */ const OPJ_FLOAT64 * opj_mct_get_mct_norms(void); /** FIXME DOC */ const OPJ_FLOAT64 * opj_mct_get_mct_norms_real(void); /* your_sha256_hash------- */ /*@}*/ /*@}*/ #endif /* OPJ_MCT_H */ ```
```go // // // path_to_url // // Unless required by applicable law or agreed to in writing, software // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. package echo import ( "testing" "github.com/google/go-cmp/cmp" "istio.io/istio/pkg/test/framework/components/namespace" ) func TestParseConfigs(t *testing.T) { cfgs, err := ParseConfigs([]byte(` - Service: "foo" Namespace: "bar" DeployAsVM: true VMDistro: "Centos8" `)) if err != nil { t.Fatal(err) } if diff := cmp.Diff(cfgs, []Config{{ Service: "foo", Namespace: namespace.Static("bar"), DeployAsVM: true, VMDistro: "Centos8", }}); diff != "" { t.Fatal(diff) } } ```
Dodging Bullets (foaled 16 April 2008) is a British Thoroughbred racehorse, best known for his performances in National Hunt races. Bred by the leading jockey Frankie Dettori he had a flat racing career of limited importance, winning two minor races from nine starts as a three-year-old in 2011. He showed better form when switched to hurdles, winning the Sharp Novices' Hurdle in 2012. He proved even better when he began to compete in steeplechases, winning the November Novices' Chase and the Wayward Lad Novices' Chase in 2013. In the 2014/2015 National Hunt season he emerged as one of the best chasers in Britain, recording three consecutive Grade 1 wins in the Tingle Creek Chase, Clarence House Chase and Queen Mother Champion Chase. Background Dodging Bullets is a bay gelding with a white star and two white socks bred in the United Kingdom by Frankie Dettori. He was sired by Dubawi a top-class son of Dubai Millennium, whose wins included the Irish 2,000 Guineas and the Prix Jacques Le Marois. At stud, Dubawi has been a highly-successful breeding stallion, siring major flat winners such as Monterosso, Al Kazeem, Makfi, Lucky Nine and Poet's Voice. Dodging Bullets' dam Nova Cyngi, was an unraced daughter of the Prix Vermeille winner Northern Trick, whose other descendants include Main Sequence and Light Shift. In November 2009, the yearling Dodging Bullets was sent to the Tattersalls sales and was bought for 8,000 guineas by the Irish trainer Andrew Oliver. The horse entered the ownership of R A Pegum and was trained by Oliver at Caledon, County Tyrone. Racing career 2011: three-year-old season Dodging Bullets began his racing career in a maiden race over one mile at Cork Racecourse on 13 May when he finished seventh of the seventeen runners at odds of 50/1. He failed to win in his next six races, consisting of maiden races and minor handicaps in Ireland before winning a handicap race over eight and a half furlongs at Galway Races on 27 July. On his final appearance on the flat, he won a ten furlong handicap at Sligo Racecourse in August. At the end of the year, Dodging Bullets was sold and sent to England to be trained for a National Hunt career by Paul Nicholls. 2011/2012 National Hunt season: novice hurdles On his first appearance over hurdles he was immediately entered against good-class opposition when he contested the Grade 2 Dovecote Novices' Hurdle at Kempton Park Racecourse on 25 February. Ridden by Ruby Walsh he started at odds of 9/2 and finished second of the six runners, one and a half lengths behind the odds-on favourite Grumeti. In the following month, Dodging Bullets was sent to the Cheltenham Festival for the first time and started a 20/1 outsider for the Triumph Hurdle in which he was ridden by Daryl Jacob. He finished fourth of the twenty runners behind Countrywide Flame, Hisaabaat and Grumeti. On his third and final appearance of the season, he finished sixth behind Grumeti in the Anniversary 4-Y-O Novices' Hurdle after being badly hampered at the fifth hurdle. 2012/2013 National Hunt season: novice hurdles As he had failed to win in his three races in the spring of 2012, Dodging Bullets remained eligible to compete in novice hurdle races in the 2012/2013 National Hunt season. On his seasonal debut on 20 October, he recorded his first jump race win in a novice hurdle at Cheltenham, taking the lead approaching the last and going clear of his rivals to win by eight lengths at odds of 10/11. On 16 November the gelding was moved up in class for the Grade 2 Sharp Novices' Hurdle at the same course and started 5/4 favourite against seven opponents. Ridden by Ruby Walsh, he led from the start and survived a mistake at the last flight of hurdles to win by one and a half lengths from River Maigue. The gelding was stepped up again in class and matched against more experienced hurdlers when he contested the Grade 1 Christmas Hurdle at Kempton on 26 December. He stayed on in the closing stages to finish third behind Darlan and Raya Star, and ahead of Countrywide Flame, Cinders and Ashes (winner of the Supreme Novices' Hurdle) and Punjabi. Dodging Bullets went to the Cheltenham for the festival again in March 2013 and started at odds of 12/1 for the Supreme Novices' Hurdle. After moving up to challenge the leaders three hurdles from the finish he weakened badly in the closing stages and finished ninth, fifty lengths behind the winner Champagne Fever. He was moved up in distance for the Mersey Novices' Hurdle over two and a half miles at Aintree Racecourse in April, but again ran poorly and came home last of the seven finishers behind Ubak. 2013/2014 National Hunt season: novice chases In the 2013/2014 National Hunt season, Dodging Bullets competed in novice steeplechases. On his debut over the larger obstacles, he started 8/11 favourite for a minor event at Kempton on 20 October and won by four lengths after taking the lead at the tenth of the twelve fences. In the following month he was matched against Raya Star and the County Hurdle winner Ted Veale in the November Novices' Chase at Cheltenham. Ridden by Jacob, he took the lead after the penultimate fence and won by five lengths from Raya Star with Ted Veale another three and a quarter lengths back in third. On 27 December he started 7/4 second favourite behind the odds-on Grandouet (whose wins included the Champion Four Year Old Hurdle and the International Hurdle) in the Grade 2 Wayward Lad Novices' Chase over two miles at Kempton. Dodging Bullets tracked Grandouet before taking the lead four fences from the finish and drew away to win by ten lengths. Dodging Bullets took on more experienced chasers in the Grade 2 Game Spirit Chase at Newbury Racecourse in February and finished second, beaten a neck by the seven-year-old favourite Module. On his third appearance at the Cheltenham Festival, Dodging Bullets started the 6/1 fourth choice in the betting (behind Champagne Fever, Trifolium and Rock On Ruby) for the Grade 1 Arkle Challenge Trophy and finished fourth, beaten five lengths by the 33/1 outsider Western Warhorse. On his final appearance of the season, the gelding again ran poorly at Aintree, finishing last of five behind Uxizandre in the Manifesto Novices' Chase. 2014/2015 National Hunt season: steeplechases On his first appearance of the 2014/2015 season Dodging Bullets finished third behind Uxizandre and Simply Ned in the Shloer Chase at Cheltenham on 16 November. On 6 December, the gelding was moved up in class for the Grade 1 Tingle Creek Chase at Sandown Park Racecourse. He started at odds of 9/1 in a ten-runner field which also included Balder (Maghull Novices' Chase), God's Own (Ryanair Novice Chase, Haldon Gold Cup), Oscar Whisky and Somersby (Clarence House Chase). Ridden by Sam Twiston-Davies he tracked the leaders before moving up to take second place at the ninth fence. He took the lead approaching the last fence and won by two and a half lengths from Somersby. Dodging Bullets' next race was the Grade 1 Clarence House Chase at Ascot Racecourse on 17 January in which he started 7/2 second favourite behind the nine-year-old Sprinter Sacre, who was returning after a long break caused by health problems. Ridden by Noel Fehily, he settled in third place as Somersby led before Sprinter Sacre moved up to lead at the second last. Dodging Bullets overtook Sprinter Sacre approaching the last and won by three lengths with the Irish challenger Twinlight (winner of the Paddy Power Dial-A-Bet Chase) a further five lengths back in third. On 11 March 2015, Dodging Bullets contested the 56th running of the Queen Mother Champion Chase. He started the 9/2 third choice in the betting behind Sprinter Sacre (winner of the race in 2013) and the 2014 winner Sire de Grugy. The other contenders included Somersby, Simply Ned, the thirteen-year-old Irish veteran Sizing Europe, the Game Spirit Chase winner Mr Mole and the Desert Orchid Chase winner Special Tiara. Sam Twiston-Davies positioned the gelding in second as Special Tiara led from the start and opened up a clear advantage. Dodging Bullets moved up to challenge at the third last and took the lead at the final fence. On the run-in he got the better of Special Tiara and held off the challenge of Somersby to win by one and a quarter lengths. Special Tiara was a length and three quarters back in third, seven lengths clear of Sire de Grugy. Pedigree References External links Career 1-2-3 Colour Chart – Dodging Bullets 2008 racehorse births Racehorses bred in the United Kingdom Racehorses trained in Ireland Racehorses trained in the United Kingdom Thoroughbred family 4-m Cheltenham Festival winners
```javascript import Link from 'next/link' export const fetchCache = 'default-cache' export default function Layout({ children }) { return ( <html> <body> <header> <Link id="nav-link" href={'/link'}> /link </Link> <br /> <Link id="nav-headers" href={'/headers'}> /headers </Link> <br /> <Link id="nav-default-cache" href={'/default-cache'}> /default-cache </Link> <br /> <Link id="nav-cache-revalidate" href={'/cache-revalidate'}> /cache-revalidate </Link> <br /> <Link id="nav-many-requests" href={'/many-requests'}> /many-requests </Link> <br /> </header> <div>{children}</div> </body> </html> ) } ```
Harry Halliday (9 February 1920 – 27 August 1967) was an English first-class cricketer, who played 182 games for Yorkshire County Cricket Club between 1938 and 1953. He also appeared in three games for the Combined Services, once for the Marylebone Cricket Club (MCC) and once for an 'Over 33' side in first-class cricket. Halliday was born in Pudsey, Yorkshire, and was a useful county all-rounder, Halliday scored 8,556 runs at 31.80, with 12 centuries to his name, including three against Gloucestershire. His highest score, 144, came against Derbyshire at Queen's Park, Chesterfield in 1950. He scored 54 fifties and took 144 catches. His occasional off breaks took 107 wickets at 29.91, with a best of 6 for 79 against Derbyshire at Bramall Lane in 1952. He also claimed 5 for 73 against Kent. He won his Yorkshire cap in 1948. Halliday scored 1,000 runs in a season four times, his best season coming in 1950 when he scored 1,484 runs at 38.05, although with only one century. After his retirement from the first-class game he served as coach to Scarborough College and Scarborough Cricket Club. Halliday died in August 1967 in Stanley, Wakefield, Yorkshire, aged 47. References External links Cricinfo Profile 1920 births 1967 deaths Yorkshire cricketers Combined Services cricketers Cricketers from Pudsey English cricketers Cumberland cricketers Marylebone Cricket Club cricketers English cricketers of 1919 to 1945 English cricketers of 1946 to 1968
```java package com.jsh.erp.datasource.entities; import java.math.BigDecimal; import java.util.ArrayList; import java.util.Date; import java.util.List; public class SerialNumberExample { protected String orderByClause; protected boolean distinct; protected List<Criteria> oredCriteria; public SerialNumberExample() { oredCriteria = new ArrayList<>(); } public void setOrderByClause(String orderByClause) { this.orderByClause = orderByClause; } public String getOrderByClause() { return orderByClause; } public void setDistinct(boolean distinct) { this.distinct = distinct; } public boolean isDistinct() { return distinct; } public List<Criteria> getOredCriteria() { return oredCriteria; } public void or(Criteria criteria) { oredCriteria.add(criteria); } public Criteria or() { Criteria criteria = createCriteriaInternal(); oredCriteria.add(criteria); return criteria; } public Criteria createCriteria() { Criteria criteria = createCriteriaInternal(); if (oredCriteria.size() == 0) { oredCriteria.add(criteria); } return criteria; } protected Criteria createCriteriaInternal() { Criteria criteria = new Criteria(); return criteria; } public void clear() { oredCriteria.clear(); orderByClause = null; distinct = false; } protected abstract static class GeneratedCriteria { protected List<Criterion> criteria; protected GeneratedCriteria() { super(); criteria = new ArrayList<>(); } public boolean isValid() { return criteria.size() > 0; } public List<Criterion> getAllCriteria() { return criteria; } public List<Criterion> getCriteria() { return criteria; } protected void addCriterion(String condition) { if (condition == null) { throw new RuntimeException("Value for condition cannot be null"); } criteria.add(new Criterion(condition)); } protected void addCriterion(String condition, Object value, String property) { if (value == null) { throw new RuntimeException("Value for " + property + " cannot be null"); } criteria.add(new Criterion(condition, value)); } protected void addCriterion(String condition, Object value1, Object value2, String property) { if (value1 == null || value2 == null) { throw new RuntimeException("Between values for " + property + " cannot be null"); } criteria.add(new Criterion(condition, value1, value2)); } public Criteria andIdIsNull() { addCriterion("id is null"); return (Criteria) this; } public Criteria andIdIsNotNull() { addCriterion("id is not null"); return (Criteria) this; } public Criteria andIdEqualTo(Long value) { addCriterion("id =", value, "id"); return (Criteria) this; } public Criteria andIdNotEqualTo(Long value) { addCriterion("id <>", value, "id"); return (Criteria) this; } public Criteria andIdGreaterThan(Long value) { addCriterion("id >", value, "id"); return (Criteria) this; } public Criteria andIdGreaterThanOrEqualTo(Long value) { addCriterion("id >=", value, "id"); return (Criteria) this; } public Criteria andIdLessThan(Long value) { addCriterion("id <", value, "id"); return (Criteria) this; } public Criteria andIdLessThanOrEqualTo(Long value) { addCriterion("id <=", value, "id"); return (Criteria) this; } public Criteria andIdIn(List<Long> values) { addCriterion("id in", values, "id"); return (Criteria) this; } public Criteria andIdNotIn(List<Long> values) { addCriterion("id not in", values, "id"); return (Criteria) this; } public Criteria andIdBetween(Long value1, Long value2) { addCriterion("id between", value1, value2, "id"); return (Criteria) this; } public Criteria andIdNotBetween(Long value1, Long value2) { addCriterion("id not between", value1, value2, "id"); return (Criteria) this; } public Criteria andMaterialIdIsNull() { addCriterion("material_id is null"); return (Criteria) this; } public Criteria andMaterialIdIsNotNull() { addCriterion("material_id is not null"); return (Criteria) this; } public Criteria andMaterialIdEqualTo(Long value) { addCriterion("material_id =", value, "materialId"); return (Criteria) this; } public Criteria andMaterialIdNotEqualTo(Long value) { addCriterion("material_id <>", value, "materialId"); return (Criteria) this; } public Criteria andMaterialIdGreaterThan(Long value) { addCriterion("material_id >", value, "materialId"); return (Criteria) this; } public Criteria andMaterialIdGreaterThanOrEqualTo(Long value) { addCriterion("material_id >=", value, "materialId"); return (Criteria) this; } public Criteria andMaterialIdLessThan(Long value) { addCriterion("material_id <", value, "materialId"); return (Criteria) this; } public Criteria andMaterialIdLessThanOrEqualTo(Long value) { addCriterion("material_id <=", value, "materialId"); return (Criteria) this; } public Criteria andMaterialIdIn(List<Long> values) { addCriterion("material_id in", values, "materialId"); return (Criteria) this; } public Criteria andMaterialIdNotIn(List<Long> values) { addCriterion("material_id not in", values, "materialId"); return (Criteria) this; } public Criteria andMaterialIdBetween(Long value1, Long value2) { addCriterion("material_id between", value1, value2, "materialId"); return (Criteria) this; } public Criteria andMaterialIdNotBetween(Long value1, Long value2) { addCriterion("material_id not between", value1, value2, "materialId"); return (Criteria) this; } public Criteria andDepotIdIsNull() { addCriterion("depot_id is null"); return (Criteria) this; } public Criteria andDepotIdIsNotNull() { addCriterion("depot_id is not null"); return (Criteria) this; } public Criteria andDepotIdEqualTo(Long value) { addCriterion("depot_id =", value, "depotId"); return (Criteria) this; } public Criteria andDepotIdNotEqualTo(Long value) { addCriterion("depot_id <>", value, "depotId"); return (Criteria) this; } public Criteria andDepotIdGreaterThan(Long value) { addCriterion("depot_id >", value, "depotId"); return (Criteria) this; } public Criteria andDepotIdGreaterThanOrEqualTo(Long value) { addCriterion("depot_id >=", value, "depotId"); return (Criteria) this; } public Criteria andDepotIdLessThan(Long value) { addCriterion("depot_id <", value, "depotId"); return (Criteria) this; } public Criteria andDepotIdLessThanOrEqualTo(Long value) { addCriterion("depot_id <=", value, "depotId"); return (Criteria) this; } public Criteria andDepotIdIn(List<Long> values) { addCriterion("depot_id in", values, "depotId"); return (Criteria) this; } public Criteria andDepotIdNotIn(List<Long> values) { addCriterion("depot_id not in", values, "depotId"); return (Criteria) this; } public Criteria andDepotIdBetween(Long value1, Long value2) { addCriterion("depot_id between", value1, value2, "depotId"); return (Criteria) this; } public Criteria andDepotIdNotBetween(Long value1, Long value2) { addCriterion("depot_id not between", value1, value2, "depotId"); return (Criteria) this; } public Criteria andSerialNumberIsNull() { addCriterion("serial_number is null"); return (Criteria) this; } public Criteria andSerialNumberIsNotNull() { addCriterion("serial_number is not null"); return (Criteria) this; } public Criteria andSerialNumberEqualTo(String value) { addCriterion("serial_number =", value, "serialNumber"); return (Criteria) this; } public Criteria andSerialNumberNotEqualTo(String value) { addCriterion("serial_number <>", value, "serialNumber"); return (Criteria) this; } public Criteria andSerialNumberGreaterThan(String value) { addCriterion("serial_number >", value, "serialNumber"); return (Criteria) this; } public Criteria andSerialNumberGreaterThanOrEqualTo(String value) { addCriterion("serial_number >=", value, "serialNumber"); return (Criteria) this; } public Criteria andSerialNumberLessThan(String value) { addCriterion("serial_number <", value, "serialNumber"); return (Criteria) this; } public Criteria andSerialNumberLessThanOrEqualTo(String value) { addCriterion("serial_number <=", value, "serialNumber"); return (Criteria) this; } public Criteria andSerialNumberLike(String value) { addCriterion("serial_number like", value, "serialNumber"); return (Criteria) this; } public Criteria andSerialNumberNotLike(String value) { addCriterion("serial_number not like", value, "serialNumber"); return (Criteria) this; } public Criteria andSerialNumberIn(List<String> values) { addCriterion("serial_number in", values, "serialNumber"); return (Criteria) this; } public Criteria andSerialNumberNotIn(List<String> values) { addCriterion("serial_number not in", values, "serialNumber"); return (Criteria) this; } public Criteria andSerialNumberBetween(String value1, String value2) { addCriterion("serial_number between", value1, value2, "serialNumber"); return (Criteria) this; } public Criteria andSerialNumberNotBetween(String value1, String value2) { addCriterion("serial_number not between", value1, value2, "serialNumber"); return (Criteria) this; } public Criteria andIsSellIsNull() { addCriterion("is_sell is null"); return (Criteria) this; } public Criteria andIsSellIsNotNull() { addCriterion("is_sell is not null"); return (Criteria) this; } public Criteria andIsSellEqualTo(String value) { addCriterion("is_sell =", value, "isSell"); return (Criteria) this; } public Criteria andIsSellNotEqualTo(String value) { addCriterion("is_sell <>", value, "isSell"); return (Criteria) this; } public Criteria andIsSellGreaterThan(String value) { addCriterion("is_sell >", value, "isSell"); return (Criteria) this; } public Criteria andIsSellGreaterThanOrEqualTo(String value) { addCriterion("is_sell >=", value, "isSell"); return (Criteria) this; } public Criteria andIsSellLessThan(String value) { addCriterion("is_sell <", value, "isSell"); return (Criteria) this; } public Criteria andIsSellLessThanOrEqualTo(String value) { addCriterion("is_sell <=", value, "isSell"); return (Criteria) this; } public Criteria andIsSellLike(String value) { addCriterion("is_sell like", value, "isSell"); return (Criteria) this; } public Criteria andIsSellNotLike(String value) { addCriterion("is_sell not like", value, "isSell"); return (Criteria) this; } public Criteria andIsSellIn(List<String> values) { addCriterion("is_sell in", values, "isSell"); return (Criteria) this; } public Criteria andIsSellNotIn(List<String> values) { addCriterion("is_sell not in", values, "isSell"); return (Criteria) this; } public Criteria andIsSellBetween(String value1, String value2) { addCriterion("is_sell between", value1, value2, "isSell"); return (Criteria) this; } public Criteria andIsSellNotBetween(String value1, String value2) { addCriterion("is_sell not between", value1, value2, "isSell"); return (Criteria) this; } public Criteria andInPriceIsNull() { addCriterion("in_price is null"); return (Criteria) this; } public Criteria andInPriceIsNotNull() { addCriterion("in_price is not null"); return (Criteria) this; } public Criteria andInPriceEqualTo(BigDecimal value) { addCriterion("in_price =", value, "inPrice"); return (Criteria) this; } public Criteria andInPriceNotEqualTo(BigDecimal value) { addCriterion("in_price <>", value, "inPrice"); return (Criteria) this; } public Criteria andInPriceGreaterThan(BigDecimal value) { addCriterion("in_price >", value, "inPrice"); return (Criteria) this; } public Criteria andInPriceGreaterThanOrEqualTo(BigDecimal value) { addCriterion("in_price >=", value, "inPrice"); return (Criteria) this; } public Criteria andInPriceLessThan(BigDecimal value) { addCriterion("in_price <", value, "inPrice"); return (Criteria) this; } public Criteria andInPriceLessThanOrEqualTo(BigDecimal value) { addCriterion("in_price <=", value, "inPrice"); return (Criteria) this; } public Criteria andInPriceIn(List<BigDecimal> values) { addCriterion("in_price in", values, "inPrice"); return (Criteria) this; } public Criteria andInPriceNotIn(List<BigDecimal> values) { addCriterion("in_price not in", values, "inPrice"); return (Criteria) this; } public Criteria andInPriceBetween(BigDecimal value1, BigDecimal value2) { addCriterion("in_price between", value1, value2, "inPrice"); return (Criteria) this; } public Criteria andInPriceNotBetween(BigDecimal value1, BigDecimal value2) { addCriterion("in_price not between", value1, value2, "inPrice"); return (Criteria) this; } public Criteria andRemarkIsNull() { addCriterion("remark is null"); return (Criteria) this; } public Criteria andRemarkIsNotNull() { addCriterion("remark is not null"); return (Criteria) this; } public Criteria andRemarkEqualTo(String value) { addCriterion("remark =", value, "remark"); return (Criteria) this; } public Criteria andRemarkNotEqualTo(String value) { addCriterion("remark <>", value, "remark"); return (Criteria) this; } public Criteria andRemarkGreaterThan(String value) { addCriterion("remark >", value, "remark"); return (Criteria) this; } public Criteria andRemarkGreaterThanOrEqualTo(String value) { addCriterion("remark >=", value, "remark"); return (Criteria) this; } public Criteria andRemarkLessThan(String value) { addCriterion("remark <", value, "remark"); return (Criteria) this; } public Criteria andRemarkLessThanOrEqualTo(String value) { addCriterion("remark <=", value, "remark"); return (Criteria) this; } public Criteria andRemarkLike(String value) { addCriterion("remark like", value, "remark"); return (Criteria) this; } public Criteria andRemarkNotLike(String value) { addCriterion("remark not like", value, "remark"); return (Criteria) this; } public Criteria andRemarkIn(List<String> values) { addCriterion("remark in", values, "remark"); return (Criteria) this; } public Criteria andRemarkNotIn(List<String> values) { addCriterion("remark not in", values, "remark"); return (Criteria) this; } public Criteria andRemarkBetween(String value1, String value2) { addCriterion("remark between", value1, value2, "remark"); return (Criteria) this; } public Criteria andRemarkNotBetween(String value1, String value2) { addCriterion("remark not between", value1, value2, "remark"); return (Criteria) this; } public Criteria andDeleteFlagIsNull() { addCriterion("delete_flag is null"); return (Criteria) this; } public Criteria andDeleteFlagIsNotNull() { addCriterion("delete_flag is not null"); return (Criteria) this; } public Criteria andDeleteFlagEqualTo(String value) { addCriterion("delete_flag =", value, "deleteFlag"); return (Criteria) this; } public Criteria andDeleteFlagNotEqualTo(String value) { addCriterion("delete_flag <>", value, "deleteFlag"); return (Criteria) this; } public Criteria andDeleteFlagGreaterThan(String value) { addCriterion("delete_flag >", value, "deleteFlag"); return (Criteria) this; } public Criteria andDeleteFlagGreaterThanOrEqualTo(String value) { addCriterion("delete_flag >=", value, "deleteFlag"); return (Criteria) this; } public Criteria andDeleteFlagLessThan(String value) { addCriterion("delete_flag <", value, "deleteFlag"); return (Criteria) this; } public Criteria andDeleteFlagLessThanOrEqualTo(String value) { addCriterion("delete_flag <=", value, "deleteFlag"); return (Criteria) this; } public Criteria andDeleteFlagLike(String value) { addCriterion("delete_flag like", value, "deleteFlag"); return (Criteria) this; } public Criteria andDeleteFlagNotLike(String value) { addCriterion("delete_flag not like", value, "deleteFlag"); return (Criteria) this; } public Criteria andDeleteFlagIn(List<String> values) { addCriterion("delete_flag in", values, "deleteFlag"); return (Criteria) this; } public Criteria andDeleteFlagNotIn(List<String> values) { addCriterion("delete_flag not in", values, "deleteFlag"); return (Criteria) this; } public Criteria andDeleteFlagBetween(String value1, String value2) { addCriterion("delete_flag between", value1, value2, "deleteFlag"); return (Criteria) this; } public Criteria andDeleteFlagNotBetween(String value1, String value2) { addCriterion("delete_flag not between", value1, value2, "deleteFlag"); return (Criteria) this; } public Criteria andCreateTimeIsNull() { addCriterion("create_time is null"); return (Criteria) this; } public Criteria andCreateTimeIsNotNull() { addCriterion("create_time is not null"); return (Criteria) this; } public Criteria andCreateTimeEqualTo(Date value) { addCriterion("create_time =", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeNotEqualTo(Date value) { addCriterion("create_time <>", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeGreaterThan(Date value) { addCriterion("create_time >", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) { addCriterion("create_time >=", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeLessThan(Date value) { addCriterion("create_time <", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeLessThanOrEqualTo(Date value) { addCriterion("create_time <=", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeIn(List<Date> values) { addCriterion("create_time in", values, "createTime"); return (Criteria) this; } public Criteria andCreateTimeNotIn(List<Date> values) { addCriterion("create_time not in", values, "createTime"); return (Criteria) this; } public Criteria andCreateTimeBetween(Date value1, Date value2) { addCriterion("create_time between", value1, value2, "createTime"); return (Criteria) this; } public Criteria andCreateTimeNotBetween(Date value1, Date value2) { addCriterion("create_time not between", value1, value2, "createTime"); return (Criteria) this; } public Criteria andCreatorIsNull() { addCriterion("creator is null"); return (Criteria) this; } public Criteria andCreatorIsNotNull() { addCriterion("creator is not null"); return (Criteria) this; } public Criteria andCreatorEqualTo(Long value) { addCriterion("creator =", value, "creator"); return (Criteria) this; } public Criteria andCreatorNotEqualTo(Long value) { addCriterion("creator <>", value, "creator"); return (Criteria) this; } public Criteria andCreatorGreaterThan(Long value) { addCriterion("creator >", value, "creator"); return (Criteria) this; } public Criteria andCreatorGreaterThanOrEqualTo(Long value) { addCriterion("creator >=", value, "creator"); return (Criteria) this; } public Criteria andCreatorLessThan(Long value) { addCriterion("creator <", value, "creator"); return (Criteria) this; } public Criteria andCreatorLessThanOrEqualTo(Long value) { addCriterion("creator <=", value, "creator"); return (Criteria) this; } public Criteria andCreatorIn(List<Long> values) { addCriterion("creator in", values, "creator"); return (Criteria) this; } public Criteria andCreatorNotIn(List<Long> values) { addCriterion("creator not in", values, "creator"); return (Criteria) this; } public Criteria andCreatorBetween(Long value1, Long value2) { addCriterion("creator between", value1, value2, "creator"); return (Criteria) this; } public Criteria andCreatorNotBetween(Long value1, Long value2) { addCriterion("creator not between", value1, value2, "creator"); return (Criteria) this; } public Criteria andUpdateTimeIsNull() { addCriterion("update_time is null"); return (Criteria) this; } public Criteria andUpdateTimeIsNotNull() { addCriterion("update_time is not null"); return (Criteria) this; } public Criteria andUpdateTimeEqualTo(Date value) { addCriterion("update_time =", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeNotEqualTo(Date value) { addCriterion("update_time <>", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeGreaterThan(Date value) { addCriterion("update_time >", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) { addCriterion("update_time >=", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeLessThan(Date value) { addCriterion("update_time <", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeLessThanOrEqualTo(Date value) { addCriterion("update_time <=", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeIn(List<Date> values) { addCriterion("update_time in", values, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeNotIn(List<Date> values) { addCriterion("update_time not in", values, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeBetween(Date value1, Date value2) { addCriterion("update_time between", value1, value2, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeNotBetween(Date value1, Date value2) { addCriterion("update_time not between", value1, value2, "updateTime"); return (Criteria) this; } public Criteria andUpdaterIsNull() { addCriterion("updater is null"); return (Criteria) this; } public Criteria andUpdaterIsNotNull() { addCriterion("updater is not null"); return (Criteria) this; } public Criteria andUpdaterEqualTo(Long value) { addCriterion("updater =", value, "updater"); return (Criteria) this; } public Criteria andUpdaterNotEqualTo(Long value) { addCriterion("updater <>", value, "updater"); return (Criteria) this; } public Criteria andUpdaterGreaterThan(Long value) { addCriterion("updater >", value, "updater"); return (Criteria) this; } public Criteria andUpdaterGreaterThanOrEqualTo(Long value) { addCriterion("updater >=", value, "updater"); return (Criteria) this; } public Criteria andUpdaterLessThan(Long value) { addCriterion("updater <", value, "updater"); return (Criteria) this; } public Criteria andUpdaterLessThanOrEqualTo(Long value) { addCriterion("updater <=", value, "updater"); return (Criteria) this; } public Criteria andUpdaterIn(List<Long> values) { addCriterion("updater in", values, "updater"); return (Criteria) this; } public Criteria andUpdaterNotIn(List<Long> values) { addCriterion("updater not in", values, "updater"); return (Criteria) this; } public Criteria andUpdaterBetween(Long value1, Long value2) { addCriterion("updater between", value1, value2, "updater"); return (Criteria) this; } public Criteria andUpdaterNotBetween(Long value1, Long value2) { addCriterion("updater not between", value1, value2, "updater"); return (Criteria) this; } public Criteria andInBillNoIsNull() { addCriterion("in_bill_no is null"); return (Criteria) this; } public Criteria andInBillNoIsNotNull() { addCriterion("in_bill_no is not null"); return (Criteria) this; } public Criteria andInBillNoEqualTo(String value) { addCriterion("in_bill_no =", value, "inBillNo"); return (Criteria) this; } public Criteria andInBillNoNotEqualTo(String value) { addCriterion("in_bill_no <>", value, "inBillNo"); return (Criteria) this; } public Criteria andInBillNoGreaterThan(String value) { addCriterion("in_bill_no >", value, "inBillNo"); return (Criteria) this; } public Criteria andInBillNoGreaterThanOrEqualTo(String value) { addCriterion("in_bill_no >=", value, "inBillNo"); return (Criteria) this; } public Criteria andInBillNoLessThan(String value) { addCriterion("in_bill_no <", value, "inBillNo"); return (Criteria) this; } public Criteria andInBillNoLessThanOrEqualTo(String value) { addCriterion("in_bill_no <=", value, "inBillNo"); return (Criteria) this; } public Criteria andInBillNoLike(String value) { addCriterion("in_bill_no like", value, "inBillNo"); return (Criteria) this; } public Criteria andInBillNoNotLike(String value) { addCriterion("in_bill_no not like", value, "inBillNo"); return (Criteria) this; } public Criteria andInBillNoIn(List<String> values) { addCriterion("in_bill_no in", values, "inBillNo"); return (Criteria) this; } public Criteria andInBillNoNotIn(List<String> values) { addCriterion("in_bill_no not in", values, "inBillNo"); return (Criteria) this; } public Criteria andInBillNoBetween(String value1, String value2) { addCriterion("in_bill_no between", value1, value2, "inBillNo"); return (Criteria) this; } public Criteria andInBillNoNotBetween(String value1, String value2) { addCriterion("in_bill_no not between", value1, value2, "inBillNo"); return (Criteria) this; } public Criteria andOutBillNoIsNull() { addCriterion("out_bill_no is null"); return (Criteria) this; } public Criteria andOutBillNoIsNotNull() { addCriterion("out_bill_no is not null"); return (Criteria) this; } public Criteria andOutBillNoEqualTo(String value) { addCriterion("out_bill_no =", value, "outBillNo"); return (Criteria) this; } public Criteria andOutBillNoNotEqualTo(String value) { addCriterion("out_bill_no <>", value, "outBillNo"); return (Criteria) this; } public Criteria andOutBillNoGreaterThan(String value) { addCriterion("out_bill_no >", value, "outBillNo"); return (Criteria) this; } public Criteria andOutBillNoGreaterThanOrEqualTo(String value) { addCriterion("out_bill_no >=", value, "outBillNo"); return (Criteria) this; } public Criteria andOutBillNoLessThan(String value) { addCriterion("out_bill_no <", value, "outBillNo"); return (Criteria) this; } public Criteria andOutBillNoLessThanOrEqualTo(String value) { addCriterion("out_bill_no <=", value, "outBillNo"); return (Criteria) this; } public Criteria andOutBillNoLike(String value) { addCriterion("out_bill_no like", value, "outBillNo"); return (Criteria) this; } public Criteria andOutBillNoNotLike(String value) { addCriterion("out_bill_no not like", value, "outBillNo"); return (Criteria) this; } public Criteria andOutBillNoIn(List<String> values) { addCriterion("out_bill_no in", values, "outBillNo"); return (Criteria) this; } public Criteria andOutBillNoNotIn(List<String> values) { addCriterion("out_bill_no not in", values, "outBillNo"); return (Criteria) this; } public Criteria andOutBillNoBetween(String value1, String value2) { addCriterion("out_bill_no between", value1, value2, "outBillNo"); return (Criteria) this; } public Criteria andOutBillNoNotBetween(String value1, String value2) { addCriterion("out_bill_no not between", value1, value2, "outBillNo"); return (Criteria) this; } public Criteria andTenantIdIsNull() { addCriterion("tenant_id is null"); return (Criteria) this; } public Criteria andTenantIdIsNotNull() { addCriterion("tenant_id is not null"); return (Criteria) this; } public Criteria andTenantIdEqualTo(Long value) { addCriterion("tenant_id =", value, "tenantId"); return (Criteria) this; } public Criteria andTenantIdNotEqualTo(Long value) { addCriterion("tenant_id <>", value, "tenantId"); return (Criteria) this; } public Criteria andTenantIdGreaterThan(Long value) { addCriterion("tenant_id >", value, "tenantId"); return (Criteria) this; } public Criteria andTenantIdGreaterThanOrEqualTo(Long value) { addCriterion("tenant_id >=", value, "tenantId"); return (Criteria) this; } public Criteria andTenantIdLessThan(Long value) { addCriterion("tenant_id <", value, "tenantId"); return (Criteria) this; } public Criteria andTenantIdLessThanOrEqualTo(Long value) { addCriterion("tenant_id <=", value, "tenantId"); return (Criteria) this; } public Criteria andTenantIdIn(List<Long> values) { addCriterion("tenant_id in", values, "tenantId"); return (Criteria) this; } public Criteria andTenantIdNotIn(List<Long> values) { addCriterion("tenant_id not in", values, "tenantId"); return (Criteria) this; } public Criteria andTenantIdBetween(Long value1, Long value2) { addCriterion("tenant_id between", value1, value2, "tenantId"); return (Criteria) this; } public Criteria andTenantIdNotBetween(Long value1, Long value2) { addCriterion("tenant_id not between", value1, value2, "tenantId"); return (Criteria) this; } } public static class Criteria extends GeneratedCriteria { protected Criteria() { super(); } } public static class Criterion { private String condition; private Object value; private Object secondValue; private boolean noValue; private boolean singleValue; private boolean betweenValue; private boolean listValue; private String typeHandler; public String getCondition() { return condition; } public Object getValue() { return value; } public Object getSecondValue() { return secondValue; } public boolean isNoValue() { return noValue; } public boolean isSingleValue() { return singleValue; } public boolean isBetweenValue() { return betweenValue; } public boolean isListValue() { return listValue; } public String getTypeHandler() { return typeHandler; } protected Criterion(String condition) { super(); this.condition = condition; this.typeHandler = null; this.noValue = true; } protected Criterion(String condition, Object value, String typeHandler) { super(); this.condition = condition; this.value = value; this.typeHandler = typeHandler; if (value instanceof List<?>) { this.listValue = true; } else { this.singleValue = true; } } protected Criterion(String condition, Object value) { this(condition, value, null); } protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { super(); this.condition = condition; this.value = value; this.secondValue = secondValue; this.typeHandler = typeHandler; this.betweenValue = true; } protected Criterion(String condition, Object value, Object secondValue) { this(condition, value, secondValue, null); } } } ```
```c /* $OpenBSD: fscanf.c,v 1.11 2015/08/31 02:53:57 guenther Exp $ */ /*- * The Regents of the University of California. All rights reserved. * * This code is derived from software contributed to Berkeley by * Chris Torek. * * 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 University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 THE REGENTS OR 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. */ #include <stdio.h> #include <stdarg.h> int fscanf(FILE *fp, const char *fmt, ...) { int ret; va_list ap; va_start(ap, fmt); ret = vfscanf(fp, fmt, ap); va_end(ap); return (ret); } DEF_STRONG(fscanf); ```
```go // // // path_to_url // // or in the "license" file accompanying this file. This file is distributed // on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, // Package processorwrappers implements different processor wrappers to handle the processors which launches // document worker and session worker for now package processorwrappers import ( "github.com/aws/amazon-ssm-agent/agent/context" "github.com/aws/amazon-ssm-agent/agent/messageservice/utils" ) var processorWrapperDelegateMap map[utils.WorkerName]func(context.T, *utils.ProcessorWorkerConfig) IProcessorWrapper func init() { if processorWrapperDelegateMap == nil { processorWrapperDelegateMap = make(map[utils.WorkerName]func(context.T, *utils.ProcessorWorkerConfig) IProcessorWrapper) } processorWrapperDelegateMap[utils.DocumentWorkerName] = NewCommandWorkerProcessorWrapper processorWrapperDelegateMap[utils.SessionWorkerName] = NewSessionWorkerProcessorWrapper } // GetProcessorWrapperDelegateMap returns preloaded map with worker name and processor wrapper creation function pointer as its key and value func GetProcessorWrapperDelegateMap() map[utils.WorkerName]func(context.T, *utils.ProcessorWorkerConfig) IProcessorWrapper { return processorWrapperDelegateMap } ```
```objective-c // -*- Mode: C; c-basic-offset: 2; indent-tabs-mode: nil -*- * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 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. * * Neither the name of Google Inc. nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "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 THE COPYRIGHT * OWNER OR 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. * * --- * Author: Sanjay Ghemawat <opensource@google.com> * .h file by Craig Silverstein <opensource@google.com> */ #ifndef TCMALLOC_TCMALLOC_H_ #define TCMALLOC_TCMALLOC_H_ #include <stddef.h> /* for size_t */ #ifdef __cplusplus #include <new> /* for std::nothrow_t, std::align_val_t */ #endif /* Define the version number so folks can check against it */ #define TC_VERSION_MAJOR 2 #define TC_VERSION_MINOR 7 #define TC_VERSION_PATCH "" #define TC_VERSION_STRING "gperftools 2.7" #ifndef PERFTOOLS_NOTHROW #if __cplusplus >= 201103L #define PERFTOOLS_NOTHROW noexcept #elif defined(__cplusplus) #define PERFTOOLS_NOTHROW throw() #else # ifdef __GNUC__ # define PERFTOOLS_NOTHROW __attribute__((__nothrow__)) # else # define PERFTOOLS_NOTHROW # endif #endif #endif #ifndef PERFTOOLS_DLL_DECL # ifdef _WIN32 # define PERFTOOLS_DLL_DECL __declspec(dllimport) # else # define PERFTOOLS_DLL_DECL # endif #endif #ifdef __cplusplus extern "C" { #endif /* * Returns a human-readable version string. If major, minor, * and/or patch are not NULL, they are set to the major version, * minor version, and patch-code (a string, usually ""). */ PERFTOOLS_DLL_DECL const char* tc_version(int* major, int* minor, const char** patch) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void* tc_malloc(size_t size) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void* tc_malloc_skip_new_handler(size_t size) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void tc_free(void* ptr) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void tc_free_sized(void *ptr, size_t size) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void* tc_realloc(void* ptr, size_t size) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void* tc_calloc(size_t nmemb, size_t size) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void tc_cfree(void* ptr) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void* tc_memalign(size_t __alignment, size_t __size) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL int tc_posix_memalign(void** ptr, size_t align, size_t size) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void* tc_valloc(size_t __size) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void* tc_pvalloc(size_t __size) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void tc_malloc_stats(void) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL int tc_mallopt(int cmd, int value) PERFTOOLS_NOTHROW; /* * This is an alias for MallocExtension::instance()->GetAllocatedSize(). * It is equivalent to * OS X: malloc_size() * glibc: malloc_usable_size() * Windows: _msize() */ PERFTOOLS_DLL_DECL size_t tc_malloc_size(void* ptr) PERFTOOLS_NOTHROW; #ifdef __cplusplus PERFTOOLS_DLL_DECL int tc_set_new_mode(int flag) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void* tc_new(size_t size); PERFTOOLS_DLL_DECL void* tc_new_nothrow(size_t size, const std::nothrow_t&) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void tc_delete(void* p) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void tc_delete_sized(void* p, size_t size) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void tc_delete_nothrow(void* p, const std::nothrow_t&) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void* tc_newarray(size_t size); PERFTOOLS_DLL_DECL void* tc_newarray_nothrow(size_t size, const std::nothrow_t&) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void tc_deletearray(void* p) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void tc_deletearray_sized(void* p, size_t size) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void tc_deletearray_nothrow(void* p, const std::nothrow_t&) PERFTOOLS_NOTHROW; #if defined(__cpp_aligned_new) || (defined(_MSVC_LANG) && _MSVC_LANG > 201402L) PERFTOOLS_DLL_DECL void* tc_new_aligned(size_t size, std::align_val_t al); PERFTOOLS_DLL_DECL void* tc_new_aligned_nothrow(size_t size, std::align_val_t al, const std::nothrow_t&) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void tc_delete_aligned(void* p, std::align_val_t al) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void tc_delete_sized_aligned(void* p, size_t size, std::align_val_t al) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void tc_delete_aligned_nothrow(void* p, std::align_val_t al, const std::nothrow_t&) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void* tc_newarray_aligned(size_t size, std::align_val_t al); PERFTOOLS_DLL_DECL void* tc_newarray_aligned_nothrow(size_t size, std::align_val_t al, const std::nothrow_t&) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void tc_deletearray_aligned(void* p, std::align_val_t al) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void tc_deletearray_sized_aligned(void* p, size_t size, std::align_val_t al) PERFTOOLS_NOTHROW; PERFTOOLS_DLL_DECL void tc_deletearray_aligned_nothrow(void* p, std::align_val_t al, const std::nothrow_t&) PERFTOOLS_NOTHROW; #endif } #endif /* We're only un-defining for public */ #if !defined(GPERFTOOLS_CONFIG_H_) #undef PERFTOOLS_NOTHROW #endif /* GPERFTOOLS_CONFIG_H_ */ #endif /* #ifndef TCMALLOC_TCMALLOC_H_ */ ```
Albi is a restaurant in Washington, D.C., United States. Established in February 2020, the restaurant serves Lebanese and Middle Eastern cuisine. The menu has included barbecued lamb kebabs and baba ganoush. Albi has received a Michelin star. See also List of Lebanese restaurants List of Michelin starred restaurants in Washington, D.C. List of Middle Eastern restaurants References 2020 establishments in Washington, D.C. Lebanese restaurants Michelin Guide starred restaurants in Washington, D.C. Middle Eastern restaurants in the United States Restaurants established in 2020
```javascript CKEDITOR.plugins.setLang("flash","sl",{access:"Dostop skript",accessAlways:"Vedno",accessNever:"Nikoli",accessSameDomain:"Samo ista domena",alignAbsBottom:"Popolnoma na dno",alignAbsMiddle:"Popolnoma v sredino",alignBaseline:"Na osnovno rto",alignTextTop:"Besedilo na vrh",bgcolor:"Barva ozadja",chkFull:"Dovoli celozaslonski nain",chkLoop:"Ponavljanje",chkMenu:"Omogoi Flash Meni",chkPlay:"Samodejno predvajaj",flashvars:"Spremenljivke za Flash",hSpace:"Vodoravni razmik",properties:"Lastnosti Flash", propertiesTab:"Lastnosti",quality:"Kakovost",qualityAutoHigh:"Samodejno visoka",qualityAutoLow:"Samodejno nizka",qualityBest:"Najvija",qualityHigh:"Visoka",qualityLow:"Nizka",qualityMedium:"Srednja",scale:"Poveava",scaleAll:"Pokai vse",scaleFit:"Natanno prileganje",scaleNoBorder:"Brez obrobe",title:"Lastnosti Flash",vSpace:"Navpini razmik",validateHSpace:"Vodoravni razmik mora biti tevilo.",validateSrc:"Vnesite URL povezave",validateVSpace:"Navpini razmik mora biti tevilo.",windowMode:"Vrsta okna", windowModeOpaque:"Motno",windowModeTransparent:"Prosojno",windowModeWindow:"Okno"}); ```
Parachute cord (also paracord or 550 cord when referring to type-III paracord) is a lightweight nylon kernmantle rope originally used in the suspension lines of parachutes. This cord is now used as a general purpose utility cord. This versatile cord was used by astronauts during the 82nd Space Shuttle mission to repair the Hubble Space Telescope. The braided sheath is usually made up of 32 interwoven strands, giving it a relatively smooth texture. The all-nylon construction makes paracord somewhat elastic. Current technical standards for the manufacture of cord for use in parachutes are published by the Parachute Industry Association. The now inactivated US military standard MIL-C-5040H required the material to be nylon. Similar styles of cord are manufactured with other materials such as polyester. Usage Historically associated with airborne units and divisions, paracord is not used as cordage for modern "square" parachutes. However, it continues to be used by many military units in almost any situation where light cordage is needed. Typical uses include attaching equipment to harnesses, as dummy cords to avoid losing small or important items, tying rucksacks to vehicle racks, securing camouflage nets to trees or vehicles, and so forth. When threaded with beads, paracord may be used as a pace counter to estimate ground covered by foot. The yarns of the core (commonly referred to as "the guts") can also be removed when finer string is needed, for instance as sewing thread to repair gear, or to be used as fishing line in a survival situation. For applications requiring a thinner or less elastic cord, such as shoelaces, users often remove the yarn in the core and use the nylon sheath alone. The ends of the cord can be melted and/or crimped to prevent fraying. There are also modern versions of parachute cord that include non-traditional survival strands within the core such as fishing line, fire tinder, and even snare wire. In addition to purely utility functions, paracord can be used to fashion knotted or braided bracelets, lanyards, belts, and other decorative items. These are sometimes tied in a fashion that can easily be unraveled for use in a survival situation. Some companies use paracord in conjunction with other survival components to create everyday wearable survival kits. The same properties which soldiers appreciate in paracord are also useful in civilian applications. After World War II parachute cord became available to civilians, first as military surplus and then as a common retail product from various surplus stores and websites. A given product labelled as paracord may not correspond to a specific military type and can be of differing construction, quality, color, or strength. Particularly poor quality examples may have fewer strands in the sheath or core, have cores constructed of bulk fiber rather than individual yarns, or include materials other than nylon. Paracord has also been used for whipmaking. The durability and versatility of this material has proved beneficial for performing whip crackers and enthusiasts. Since nylon does not rot or mildew, it has become known as an all-weather material for whipmaking. Hikers and outdoor sports enthusiasts sometimes use "survival bracelets" made of several feet of paracord which is woven into a compact and wearable form. Such bracelets are meant to be unraveled when one needs rope for whatever purpose — securing cargo, lashing together poles, fixing broken straps or belts, or assisting with water rescues. Young survivalists, such as Girl Scouts and Boy Scouts, are also taught the importance of using the paracord as a survival tool. On the other hand, the paracord is a poor choice for an emergency tourniquet as its small diameter will crush tissue without applying the needed pressure to stop bleeding. Another use of parachute cord is in the stringing of mallet percussion instruments, such the xylophone, marimba, or vibraphone. A very similar usage niche is nylon webbing, a strong, economical fabric woven as a flat strip or tube, also often used in place of rope. Additional uses for parachute cord are in the manufacture of items such as lanyards, belts, dog leashes, rosaries, and key chains. This is becoming more popular as crafters are discovering this material. Types US military issue paracord was purchased with reference to a technical standard MIL-C-5040H, which was inactivated in 1997. This standard described six types: I, IA, II, IIA, III, IV. The core (also known as the kern) consists of several yarns, the number is determined by the cord type, and each yarn is made up of two or three (commercial) or three (MIL-Spec) smaller nylon fibers twisted together. Types IA and IIA differ from their type I and II counterparts in that they have no core. Type III, a type commonly found in use, is nominally rated with a minimum breaking strength of , thus the nickname "550 cord". All six types are specified to have a minimum elongation of 30%. The US military specification for paracord gives strength and construction parameters to which the final product must conform, as well as requirements for packaging and marking. Although the standard contains specific denier figures for the sheath strands and inner yarns, there are no overall diameter requirements for the cord itself. Below is a table of selected elements from the specification. Thickness Military-specification type III cord may be slightly thicker than commercial grade due to it often requiring three nylon fibers per inner core as opposed to the two fibers per core of the commercial version. Military cord will be closer to a thickness, whereas commercial versions are closer to a thickness. This will also vary if the Type III uses 7, 8, or 9 inner cores. The most common on the commercial market is seven cores. While the US military has no overall diameter requirements in its specifications, in the field, Type III cord typically measures in diameter. Colors The inactivated military standard only describes sheath colors as natural or olive drab ("camouflage green"). However, commercially many dozens of different and variable colors are available ranging from simple colors such as blue, green, brown, and black to more intricate colors such as multi colored, camouflage, and neon variations. Paracord has also been made in special zombie patterns, light reflective, color-shifting, and glow in the dark. Manufacture The inactivated specification describes the requirements for the manufacture of compliant cords. The fibers for the outer sheath must be colored using an approved dye; the dye cannot compromise the structure of the fibers or the finished product. The undyed fibers are twisted tightly to make the inner yarns: 3 bundles of fiber per core yarn. The sheath is then plaited over the yarns. The number of yarns are determined by cord type; type III would have 7-9 yarns. The cord is steamed to tighten the cord. This step is crucial for parachute use since the extra bit of stretch helps absorb the shock when the parachute is deployed. Manufacturer markings The inactivated military standard referred to a color code used to identify the manufacturers of the cord. Manufacturers would insert several dyed strands, using a code assigned in MIL STD 905 (also inactivated) to identify themselves. This was so that in the event of cord failure it would be possible to find the source of the sub-par cordage. Type 1A cord and Type 2A cord would have the marking fibers on the sheath since they contain no inner yarns. Types 1, III and IV would have yarns containing the marking color. References External links Parachuting Airborne military equipment Military equipment of the United States Military equipment of World War II Survival equipment Ropes
```c++ // Boost.Range library // // 1.0. (See accompanying file LICENSE_1_0.txt or copy at // path_to_url // // For more information, see path_to_url // #include <boost/range/adaptor/indirected.hpp> #include <boost/range/algorithm/copy.hpp> #include <boost/shared_ptr.hpp> #include <algorithm> #include <iostream> #include <vector> int main(int argc, const char* argv[]) { using namespace boost::adaptors; std::vector<boost::shared_ptr<int> > input; for (int i = 0; i < 10; ++i) input.push_back(boost::shared_ptr<int>(new int(i))); boost::copy( input | indirected, std::ostream_iterator<int>(std::cout, ",")); return 0; } ```
British Diplomat was a tanker that was built in 1926 by J Brown & Co Ltd, Clydebank, West Dunbartonshire, United Kingdom for the British Tanker Co Ltd. Relegated to use as a depot ship in Algeria by the time the Second World War stated, she was returned to the United Kingdom and transferred to the Ministry of War Transport (MoWT) in 1940, renamed Empire Diplomat. War service was spent in home waters. She served until 1946 when she was scrapped. Description The ship was built in 1926 by J Brown & Co Ltd, Clydebank. She was yard number 507. The ship was long, with a beam of . She had a depth of and a draught of . As built, she was assessed at , . Her DWT was 9,121. The ship was propelled by a 776 nhp two-stroke Single Cycle Single Action diesel engine, which had eight cylinders of diameter by stroke. It drove twin screw propellers. The engine was built by J Brown & Co Ltd. History Empire Diplomat was built for the British Tanker Co Ltd. She was launched on 2 April 1926, and completed on 1 July. Her port of registry was London. The Official Number 148786 and Code Letters KVFG were allocated. With the changes to Code Letters in 1934, British Diplomat was allocated the letters GFRY. British Diplomat was still in service in December 1937, when she relayed a radio message from which was in difficulties off Algeria and had been taken under tow by under Lloyds Open Form regulations. By 1939, she was in use as a depot ship at Oran, Algeria. She departed from Oran on 23 December 1939 for Gibraltar, arriving on 25 December. She left Gibraltar on 16 February 1940, returning the next day. British Diplomat was a member of Convoy HG 24, which departed from Gibraltar on 28 March and arrived at Liverpool, Lancashire, United Kingdom on 7 April. She detached from the convoy on 6 April at and sailed to the Isle of Portland, arriving that day. She sailed on 9 April for Southend, Essex, where she arrived on 11 April. She then joined Convoy FN 143, which departed on 12 April and arrived at Methil, Fife on 14 April. She left the convoy at the Tyne, where British Diplomat was to undergo a refit, and was renamed Empire Diplomat as she had been requisitioned by the MoWT. She was placed under the management of her former owners. She was assessed at . Empire Diplomat departed from the Tyne on 7 August 1940, to join Convoy FN 244, which had departed from Southend on 6 August and arrived at Methil on 8 August. She spent the next four month sailing between Methil and Southend in convoys FS 269, FN 277A, FS 338, FN 344, and FS 359, which arrived at Southend on 15 December. Empire Diplomat was out of service until April 1941, when she joined Convoy EC 11, which departed from Southend on 24 April and arrived at the Clyde on 29 April. She was to be used as a depot ship at Loch Alsh, Inner Hebrides, where she arrived on 27 April. She remained at Loch Alsh until October 1942, when she joined Convoy WN 352, which departed from Oban, Argyllshire on 22 October and arrived at Methil two days later. She then joined Convoy FS 943, which departed on 25 October and arrived at Southend on 27 October. She left the convoy at the Tyne on 26 October. Empire Diplomat departed the Tyne on 23 November, joining Convoy FN 872, which had departed from Southend the previous day and arrived at Methil on 24 November. She then joined Convoy EN 166, which departed that day and arrived at Loch Ewe on 26 November. Empire Diplomat detached from the convoy an put into Invergordon, Ross-shire, arriving on 26 November. She subsequently sailed to Loch Alsh, where she was to remain for the next year. She sailed from Loch Alsh on 12 November 1943 for the Clyde, arriving the next day. Empire Diplomat departed from the Clyde on 31 March 1944 for Milford Haven, Pembrokeshire, arriving two days later. She then joined Convoy WP 502, which departed on 4 April and arrived at Portsmouth, Hampshire on 6 April. She was a member of Convoy PW 505, which departed from Portsmouth on 11 April and arrived at Milford Haven on 13 April, then sailing on to the Clyde, where she arrived on 13 April. The next two months were spent sailing the west and south coasts of the United Kingdom, visiting Avonmouth the Clyde, Milford Haven, Newport, Portsmouth, Swansea and Southampton. Empire Diplomat departed from Newport on 19 June for Loch Ewe, arriving three days later. She then joined Convoy WN 599, which arrived at Methil on 25 June. British Diplomat was a member of Convoy FS 1494, which departed from Methil on 25 June and arrived at Southend on 27 June. She arrived at the Tyne on 26 June, where she was laid up. In August 1944, Empire Diplomat sailed to Milford Haven, arriving on 18 August. She was sold for scrap on 24 July 1945. Empire Diplomat was scrapped at Dunston-on-Tyne, Northumberland in 1946. References External links Colour photo of British Diplomat 1926 ships Ships built on the River Clyde Tankers of the United Kingdom Merchant ships of the United Kingdom Empire ships Ministry of War Transport ships
```scss @use 'sass:map'; @use '../../../theming/inspection'; @use '../../../style/sass-utils'; @use '../../token-definition'; // The prefix used to generate the fully qualified name for tokens in this file. $prefix: (mdc, list); // Tokens that can't be configured through Angular Material's current theming API, // but may be in a future version of the theming API. // // Tokens that are available in MDC, but not used in Angular Material should be mapped to `null`. // `null` indicates that we are intentionally choosing not to emit a slot or value for the token in // our CSS. @function get-unthemable-tokens() { @return ( // Border radius of list items. list-item-container-shape: 0, // Border radius of the list item's leading avatar. list-item-leading-avatar-shape: 50%, // Background color of list items. list-item-container-color: transparent, // Background color of list items when selected. list-item-selected-container-color: transparent, // Background color of the list item's leading avatar. list-item-leading-avatar-color: transparent, // Height & width of the list item's leading icon. list-item-leading-icon-size: 24px, // Height & width of the list item's leading avatar. list-item-leading-avatar-size: 40px, // Height & width of the list item's trailing icon. list-item-trailing-icon-size: 24px, // Color of the list item's overlay when the item is disabled. list-item-disabled-state-layer-color: transparent, // Opacity of the list item's overlay when the item is disabled. list-item-disabled-state-layer-opacity: 0, // Opacity of the list item's primary & supporting text when the item is disabled. list-item-disabled-label-text-opacity: 0.38, // Opacity of the list item's leading icon when the item is disabled. list-item-disabled-leading-icon-opacity: 0.38, // Opacity of the list item's trailing icon when the item is disabled. list-item-disabled-trailing-icon-opacity: 0.38, // ============================================================================================= // = TOKENS NOT USED IN ANGULAR MATERIAL = // ============================================================================================= // Overline not implemented in Angular Material. // TODO(mmalerba): Consider implementing in the future. list-item-overline-color: null, list-item-overline-font: null, list-item-overline-line-height: null, list-item-overline-size: null, list-item-overline-tracking: null, list-item-overline-weight: null, // Leading video not implemented in Angular Material. // TODO(mmalerba): Consider implementing in the future. list-item-leading-video-shape: null, list-item-leading-video-width: null, list-item-leading-video-height: null, // Leading image not implemented in Angular Material. // TODO(mmalerba): Consider implementing in the future. list-item-leading-image-width: null, list-item-leading-image-height: null, list-item-leading-image-shape: null, // List divider is not implemented in Angular Material. // TODO(mmalerba): Maybe mat-divider should be based on these tokens? divider-color: null, divider-height: null, // Redundant since it is always overridden by one- two- or three- line tokens, omitted to save // bytes. list-item-container-height: null, // MDC does not seem to emit any CSS variables for these tokens, may be use in the future. // TODO(mmalerba): Discuss with MDC if these should be added. list-item-container-elevation: null, list-item-leading-avatar-label-color: null, list-item-leading-avatar-label-font: null, list-item-leading-avatar-label-line-height: null, list-item-leading-avatar-label-size: null, list-item-leading-avatar-label-tracking: null, list-item-leading-avatar-label-weight: null, list-item-unselected-trailing-icon-color: null, ); } // Tokens that can be configured through Angular Material's color theming API. @function get-color-tokens($theme) { $is-dark: inspection.get-theme-type($theme) == dark; $foreground-base: inspection.get-theme-color($theme, foreground, base); $foreground-text: inspection.get-theme-color($theme, foreground, text); $foreground-secondary-text: inspection.get-theme-color($theme, foreground, secondary-text); $foreground-hint-text: inspection.get-theme-color($theme, foreground, hint-text); $text-icon-on-background: sass-utils.safe-color-change( $foreground-base, $alpha: if($is-dark, 0.5, 0.38)); @return ( // Text color of the list item primary text. list-item-label-text-color: $foreground-text, // Text color of the list item supporting text. list-item-supporting-text-color: $foreground-secondary-text, // Color of the list item's leading icon. list-item-leading-icon-color: $text-icon-on-background, // Text color of the list item's trailing text. list-item-trailing-supporting-text-color: $foreground-hint-text, // Color of the list item's trailing icon. list-item-trailing-icon-color: $text-icon-on-background, // Color of the list item's trailing icon when the item is selected. list-item-selected-trailing-icon-color: $text-icon-on-background, // Text color of the list item's primary text when the item is disabled. list-item-disabled-label-text-color: $foreground-base, // Color of the list item's leading icon when the item is disabled. list-item-disabled-leading-icon-color: $foreground-base, // Color of the list item's trailing icon when the item is disabled. list-item-disabled-trailing-icon-color: $foreground-base, // Color of the list item's primary text when the item is being hovered. list-item-hover-label-text-color: $foreground-text, // Color of the list item's leading icon when the item is being hovered. list-item-hover-leading-icon-color: $text-icon-on-background, // Color of the list item's trailing icon when the item is being hovered. list-item-hover-trailing-icon-color: $text-icon-on-background, // Color of the list item's primary text when the item is focused. list-item-focus-label-text-color: $foreground-text, // Color of the list item's overlay when the item is hovered. list-item-hover-state-layer-color: $foreground-base, // Opacity of the list item's overlay when the item is hovered. list-item-hover-state-layer-opacity: if($is-dark, 0.08, 0.04), // Color of the list item's overlay when the item is focused. list-item-focus-state-layer-color: $foreground-base, // Opacity of the list item's overlay when the item is focused. list-item-focus-state-layer-opacity: if($is-dark, 0.24, 0.12), ); } // Tokens that can be configured through Angular Material's typography theming API. @function get-typography-tokens($theme) { @return ( // Font family of the list item primary text. list-item-label-text-font: inspection.get-theme-typography($theme, body-1, font-family), // Line height of the list item primary text. list-item-label-text-line-height: inspection.get-theme-typography($theme, body-1, line-height), // Font size of the list item primary text. list-item-label-text-size: inspection.get-theme-typography($theme, body-1, font-size), // Letter spacing of the list item primary text. list-item-label-text-tracking: inspection.get-theme-typography($theme, body-1, letter-spacing), // Font weight of the list item primary text. list-item-label-text-weight: inspection.get-theme-typography($theme, body-1, font-weight), // Font family of the list item supporting text. list-item-supporting-text-font: inspection.get-theme-typography($theme, body-2, font-family), // Line height of the list item supporting text. list-item-supporting-text-line-height:inspection.get-theme-typography( $theme, body-2, line-height), // Font size of the list item supporting text. list-item-supporting-text-size: inspection.get-theme-typography($theme, body-2, font-size), // Letter spacing of the list item supporting text. list-item-supporting-text-tracking: inspection.get-theme-typography( $theme, body-2, letter-spacing), // Font weight of the list item supporting text. list-item-supporting-text-weight: inspection.get-theme-typography($theme, body-2, font-weight), // Font family of the list item's trailing text. list-item-trailing-supporting-text-font: inspection.get-theme-typography( $theme, caption, font-family), // Line height of the list item's trailing text. list-item-trailing-supporting-text-line-height: inspection.get-theme-typography( $theme, caption, line-height), // Font size of the list item's trailing text. list-item-trailing-supporting-text-size: inspection.get-theme-typography( $theme, caption, font-size), // Letter spacing color of the list item's trailing text. list-item-trailing-supporting-text-tracking: inspection.get-theme-typography( $theme, caption, letter-spacing), // Font weight of the list item's trailing text. list-item-trailing-supporting-text-weight: inspection.get-theme-typography( $theme, caption, font-weight), ); } // Tokens that can be configured through Angular Material's density theming API. @function get-density-tokens($theme) { $scale: inspection.get-theme-density($theme); @return ( // Height of one line list items. list-item-one-line-container-height: map.get(( 0: 48px, -1: 44px, -2: 40px, -3: 36px, -4: 32px, -5: 24px, ), $scale), // Height of two line list items. list-item-two-line-container-height: map.get(( 0: 64px, -1: 60px, -2: 56px, -3: 52px, -4: 48px, -5: 48px, ), $scale), // Height of three line list items. list-item-three-line-container-height: map.get(( 0: 88px, -1: 84px, -2: 80px, -3: 76px, -4: 72px, -5: 56px, ), $scale), ); } // Combines the tokens generated by the above functions into a single map with placeholder values. // This is used to create token slots. @function get-token-slots() { @return sass-utils.deep-merge-all( get-unthemable-tokens(), get-color-tokens(token-definition.$placeholder-color-config), get-typography-tokens(token-definition.$placeholder-typography-config), get-density-tokens(token-definition.$placeholder-density-config) ); } ```
Arty is an independent British art fanzine started by the artist Cathy Lomax in 2001. Lomax is also the editor. Arty is for art fans written by artists themselves and published by Transition Gallery's editions department, the artist-run space in East London. History Arty was founded in 2001 in London by Cathy Lomax. It is published twice a year and sold across the UK, including the Tate Modern, Tate Britain and ICA in London. Frustrated by opportunities for emerging artists to voice their opinions and concerns and inspired by zine culture, artist Cathy Lomax started Arty as an antidote to dry, critic led writing about art. The first 20 issues were photocopied and stapled and featured eclectic artist led content including reviews of contemporary art and numerous exclusive drawings from over 30 prominent and emerging artists from around the world. Themes of past issues have included Entertainment, Boys, Girls, Books, Nature, Alphabet, Scandal, Our Idols, Labels and Reviews London. From issue 21 the size of the magazine has increased and each issue includes a featured colour. Recent contributors have been Jessica Voorsanger, Sarah Doyle, Rachel Cattle and Gavin Toye. Arty has featured British artist Stella Vine's drawings and art since 2003. In November 2002, Vine also contributed a drawing on an envelope, Untitled (2002), to the compilation book Arty Greatest Hits In Winter 2003, Vine contributed a drawing to Arty's issue number 13, in which artists were given a letter of the alphabet and asked to make a drawing related to their given letter. Vine's drawing was E is for Eggs, depicting the artist Sarah Lucas with fried eggs on her T-shirt. Vine contributed a drawing Joe eating hash cakes (2004) to Arty 16: Boys In 2008, Vine was one of 20 artists invited to create a tarot card for Entertainment, the 24th issue of Arty. Vine contributed an acrylic painting on paper called The Tower for her tarot card. Arty 25: Fame was published in March 2009. It features Jessica Voorsanger, Harry Pye, Gavin Toye, Sarah Doyle, Kim L Pace, Cathy Lomax, Grace Morgan and Carolina Casis. In 2002, Arty was described by journalist Dave Calhoun in Dazed & Confused magazine as "a fanzine written by artists about art—of all shapes and sizes." Arty participated in the first Publish and Be Damned fair in London in 2004 and has taken part in all the subsequent PABDs Althea Greenan, Senior Librarian of Goldsmiths College, London described Arty as "low budget" but "confident" and "sharply relevant". Contributors have included: Jasper Joffe, Stella Vine, Cathie Pilkington, Harry Pye, Cathy Lomax and Jessica Voorsanger. Collection A book chronicling the early history of the magazine, Arty Greatest Hits, was published in 2004. The book compiled the best articles and drawings from the first 16 issues, as well as including new work made especially on the theme of Greatest Hits. Articles included reviews of Tracey Emin's exhibition at White Cube gallery, and thoughts on artist duo Gilbert and George. Stella Vine contributed a drawing Joe eating hash cakes (2004) to Arty Greatest Hits Notes and references External links Arty Magazine official website Visual arts magazines published in the United Kingdom Lifestyle magazines published in the United Kingdom Monthly magazines published in the United Kingdom Contemporary art magazines Independent magazines Magazines established in 2001 Magazines published in London 2001 establishments in the United Kingdom
```css #wrapper header { filter: none; } #wrapper header ul#menu > li.menu, #wrapper header ul#menu > li.item { filter: none; } ```
This is a list of episodes for the Zorro television series that ran from 1957 to 1961. Seasons 1 and 2 are composed of half-hour episodes. Four one-hour specials followed. Series overview Episodes Season 1 (1957–58) Season 2 (1958–59) Specials (1960–61) Home releases In 1997, Walt Disney Home Video released the theatrical film The Sign of Zorro, in which portions of the first 13 TV episodes were edited into a feature film, on VHS. Walt Disney Home Video also released six volumes of episodes from the second season on VHS, each volume comprising a complete story arc: Vol. 1: The Secret of El Zorro (Episodes 49-52, guest-starring Richard Anderson) () Vol. 2: Zorro and the Mountain Man (Episodes 63-65, guest-starring Jonathan Harris) () Vol. 3: Zorro and the Mystery of Don Cabrillo (Episodes 60-62, guest-starring Annette Funicello) () Vol. 4: Invitation to Death (Episodes 72-75) () Vol. 5: The Gay Caballero (Episodes 55-58, guest-starring Cesar Romero) () Vol. 6: The Man from Spain (Episodes 66-69, guest-starring Everett Sloane) () On November 3, 2009, Disney released the first two seasons on DVD, each in a limited-edition collector's tin in the original black-and-white format. Buena Vista Home Entertainment also released both seasons in colorized versions (Season One in 2006 in five separate volumes and Season Two in 2009 in a boxed set). On October 5, 2022, the first two seasons became available to stream on Disney+. References Sources Zorro (1957 series) Lists of American Western (genre) television series episodes
```c // 2016 and later: Unicode, Inc. and others. /* ******************************************************************************* * Corporation and others. All Rights Reserved. ******************************************************************************* * file name: gennames.c * encoding: UTF-8 * tab size: 8 (not used) * indentation:4 * * created on: 1999nov01 * created by: Markus W. Scherer * * This program reads a binary file and creates a C source code file * with a byte array that contains the data of the binary file. * * 12/09/1999 weiv Added multiple file handling */ #include "unicode/utypes.h" #if U_PLATFORM_HAS_WIN32_API # define VC_EXTRALEAN # define WIN32_LEAN_AND_MEAN # define NOUSER # define NOSERVICE # define NOIME # define NOMCX #include <windows.h> #include <time.h> #endif #if U_PLATFORM_IS_LINUX_BASED && U_HAVE_ELF_H # define U_ELF #endif #ifdef U_ELF # include <elf.h> # if defined(ELFCLASS64) # define U_ELF64 # endif /* Old elf.h headers may not have EM_X86_64, or have EM_X8664 instead. */ # ifndef EM_X86_64 # define EM_X86_64 62 # endif # define ICU_ENTRY_OFFSET 0 #endif #include <stdio.h> #include <stdlib.h> #include "unicode/putil.h" #include "cmemory.h" #include "cstring.h" #include "filestrm.h" #include "toolutil.h" #include "unicode/uclean.h" #include "uoptions.h" #include "pkg_genc.h" enum { kOptHelpH = 0, kOptHelpQuestionMark, kOptDestDir, kOptName, kOptEntryPoint, #ifdef CAN_GENERATE_OBJECTS kOptObject, kOptMatchArch, #endif kOptFilename, kOptAssembly }; static UOption options[]={ /*0*/UOPTION_HELP_H, UOPTION_HELP_QUESTION_MARK, UOPTION_DESTDIR, UOPTION_DEF("name", 'n', UOPT_REQUIRES_ARG), UOPTION_DEF("entrypoint", 'e', UOPT_REQUIRES_ARG), #ifdef CAN_GENERATE_OBJECTS /*5*/UOPTION_DEF("object", 'o', UOPT_NO_ARG), UOPTION_DEF("match-arch", 'm', UOPT_REQUIRES_ARG), #endif UOPTION_DEF("filename", 'f', UOPT_REQUIRES_ARG), UOPTION_DEF("assembly", 'a', UOPT_REQUIRES_ARG) }; #define CALL_WRITECCODE 'c' #define CALL_WRITEASSEMBLY 'a' #define CALL_WRITEOBJECT 'o' extern int main(int argc, char* argv[]) { UBool verbose = TRUE; char writeCode; U_MAIN_INIT_ARGS(argc, argv); options[kOptDestDir].value = "."; /* read command line options */ argc=u_parseArgs(argc, argv, UPRV_LENGTHOF(options), options); /* error handling, printing usage message */ if(argc<0) { fprintf(stderr, "error in command line argument \"%s\"\n", argv[-argc]); } if(argc<0 || options[kOptHelpH].doesOccur || options[kOptHelpQuestionMark].doesOccur) { fprintf(stderr, "usage: %s [-options] filename1 filename2 ...\n" "\tread each binary input file and \n" "\tcreate a .c file with a byte array that contains the input file's data\n" "options:\n" "\t-h or -? or --help this usage text\n" "\t-d or --destdir destination directory, followed by the path\n" "\t-n or --name symbol prefix, followed by the prefix\n" "\t-e or --entrypoint entry point name, followed by the name (_dat will be appended)\n" "\t-r or --revision Specify a version\n" , argv[0]); #ifdef CAN_GENERATE_OBJECTS fprintf(stderr, "\t-o or --object write a .obj file instead of .c\n" "\t-m or --match-arch file.o match the architecture (CPU, 32/64 bits) of the specified .o\n" "\t ELF format defaults to i386. Windows defaults to the native platform.\n"); #endif fprintf(stderr, "\t-f or --filename Specify an alternate base filename. (default: symbolname_typ)\n" "\t-a or --assembly Create assembly file. (possible values are: "); printAssemblyHeadersToStdErr(); } else { const char *message, *filename; /* TODO: remove void (*writeCode)(const char *, const char *); */ if(options[kOptAssembly].doesOccur) { message="generating assembly code for %s\n"; writeCode = CALL_WRITEASSEMBLY; /* TODO: remove writeCode=&writeAssemblyCode; */ if (!checkAssemblyHeaderName(options[kOptAssembly].value)) { fprintf(stderr, "Assembly type \"%s\" is unknown.\n", options[kOptAssembly].value); return -1; } } #ifdef CAN_GENERATE_OBJECTS else if(options[kOptObject].doesOccur) { message="generating object code for %s\n"; writeCode = CALL_WRITEOBJECT; /* TODO: remove writeCode=&writeObjectCode; */ } #endif else { message="generating C code for %s\n"; writeCode = CALL_WRITECCODE; /* TODO: remove writeCode=&writeCCode; */ } while(--argc) { filename=getLongPathname(argv[argc]); if (verbose) { fprintf(stdout, message, filename); } switch (writeCode) { case CALL_WRITECCODE: writeCCode(filename, options[kOptDestDir].value, options[kOptName].doesOccur ? options[kOptName].value : NULL, options[kOptFilename].doesOccur ? options[kOptFilename].value : NULL, NULL); break; case CALL_WRITEASSEMBLY: writeAssemblyCode(filename, options[kOptDestDir].value, options[kOptEntryPoint].doesOccur ? options[kOptEntryPoint].value : NULL, options[kOptFilename].doesOccur ? options[kOptFilename].value : NULL, NULL); break; #ifdef CAN_GENERATE_OBJECTS case CALL_WRITEOBJECT: writeObjectCode(filename, options[kOptDestDir].value, options[kOptEntryPoint].doesOccur ? options[kOptEntryPoint].value : NULL, options[kOptMatchArch].doesOccur ? options[kOptMatchArch].value : NULL, options[kOptFilename].doesOccur ? options[kOptFilename].value : NULL, NULL); break; #endif default: /* Should never occur. */ break; } /* TODO: remove writeCode(filename, options[kOptDestDir].value); */ } } return 0; } ```
```javascript import { CloudFormationClient, DeleteStackCommand, } from "@aws-sdk/client-cloudformation"; import { MedicalImagingClient, DeleteImageSetCommand, } from "@aws-sdk/client-medical-imaging"; import { ScenarioAction, ScenarioInput, } from "@aws-doc-sdk-examples/lib/scenario/index.js"; /** * @typedef {Object} DICOMValueRepresentation * @property {string} name * @property {string} type * @property {string} value */ /** * @typedef {Object} ImageFrameInformation * @property {string} ID * @property {Array<{ Checksum: number, Height: number, Width: number }>} PixelDataChecksumFromBaseToFullResolution * @property {number} MinPixelValue * @property {number} MaxPixelValue * @property {number} FrameSizeInBytes */ /** * @typedef {Object} DICOMMetadata * @property {Object} DICOM * @property {DICOMValueRepresentation[]} DICOMVRs * @property {ImageFrameInformation[]} ImageFrames */ /** * @typedef {Object} Series * @property {{ [key: string]: DICOMMetadata }} Instances */ /** * @typedef {Object} Study * @property {Object} DICOM * @property {Series[]} Series */ /** * @typedef {Object} Patient * @property {Object} DICOM */ /** * @typedef {{ * SchemaVersion: string, * DatastoreID: string, * ImageSetID: string, * Patient: Patient, * Study: Study * }} ImageSetMetadata */ /** * @typedef {{ stackOutputs: { * BucketName: string, * DatastoreID: string, * RoleArn: string * }, imageSetMetadata: ImageSetMetadata[] }} State */ const cfnClient = new CloudFormationClient({}); const medicalImagingClient = new MedicalImagingClient({}); export const confirmCleanup = new ScenarioInput( "confirmCleanup", "Do you want to delete the created resources?", { type: "confirm" }, ); export const deleteImageSets = new ScenarioAction( "deleteImageSets", async (/** @type {State} */ state) => { const datastoreId = state.stackOutputs.DatastoreID; for (const metadata of state.imageSetMetadata) { const command = new DeleteImageSetCommand({ datastoreId, imageSetId: metadata.ImageSetID, }); try { await medicalImagingClient.send(command); console.log(`Successfully deleted image set ${metadata.ImageSetID}`); } catch (e) { if (e instanceof Error) { if (e.name === "ConflictException") { console.log(`Image set ${metadata.ImageSetID} already deleted`); } } } } }, { skipWhen: (/** @type {{}} */ state) => !state.confirmCleanup, }, ); export const deleteStack = new ScenarioAction( "deleteStack", async (/** @type {State} */ state) => { const stackName = state.getStackName; const command = new DeleteStackCommand({ StackName: stackName, }); await cfnClient.send(command); console.log(`Stack ${stackName} deletion initiated`); }, { skipWhen: (/** @type {{}} */ state) => !state.confirmCleanup, }, ); ```
William Ramsey (September 7, 1779 – September 29, 1831) was a member of the U.S. House of Representatives from Pennsylvania. William Ramsey born at Sterretts Gap, Pennsylvania. He was appointed surveyor for Cumberland County, Pennsylvania, in 1803, and served as clerk of the orphans’ court of Cumberland County. He studied law, was admitted to the bar and commenced practice in Carlisle, Pennsylvania. Ramsey was elected to the Twentieth Congress; reelected as a Jacksonian to the Twenty-first and Twenty-second Congresses and served until his death in Carlisle. Interment in Ashland Cemetery. See also List of United States Congress members who died in office (1790–1899) Sources The Political Graveyard External links Pennsylvania lawyers Politicians from Carlisle, Pennsylvania 1779 births 1831 deaths Jacksonian members of the United States House of Representatives from Pennsylvania 19th-century American legislators
```java package com.yahoo.vespa.hosted.provision.node.filter; import com.yahoo.config.provision.CloudAccount; import com.yahoo.vespa.hosted.provision.Node; import java.util.Collection; import java.util.Objects; import java.util.function.Predicate; /** * Filters nodes based on their cloud account. * * @author gjoranv */ public class CloudAccountFilter { private CloudAccountFilter() { } /** Creates a node filter which removes the nodes from the given cloud accounts */ public static Predicate<Node> from(Collection<CloudAccount> unwantedAccounts, boolean enabled) { Objects.requireNonNull(unwantedAccounts, "unwantedAccounts cannot be null"); return node -> { if (unwantedAccounts.isEmpty()) return true; if (! enabled) return true; return ! unwantedAccounts.contains(node.cloudAccount()); }; } } ```
The Mann Mound is a Native American mound in the southwestern part of the U.S. state of Ohio. Located near the unincorporated community of Jacksonburg in Butler County, it is tree-covered and sits on the edge of a field in Section 12 of Wayne Township. Its height is approximately , and its circumference is approximately . In November 1868, the mound was quarried for gravel by local residents; this excavation continued until the miners had reached the center of the mound, where they found multiple limestone burial vaults. These vaults were built as squares, on each side; each contained a skeleton that had presumably been placed in a seated position. The vaults were stacked from the mound's floor to a position just underneath its summit; each was separated from others by a small amount of gravel. Eight skeletons were removed from these vaults and sent to the Smithsonian Institution. Findings from the mound have led to the conclusion that it is a work of the Adena culture. Despite the damage done by the amateur excavation, the Mann Mound is still a significant archaeological site and the second largest extant mound in Butler County. It was recorded by an archaeological survey published by J.P. MacLean in 1879, and in 1971, it was recognized for its archaeological significance when it was listed on the National Register of Historic Places. References 1868 archaeological discoveries Adena culture Archaeological sites in Ohio National Register of Historic Places in Butler County, Ohio Archaeological sites on the National Register of Historic Places in Ohio Mounds in Ohio
```objective-c /** * @file lv_span.h * */ #ifndef LV_SPAN_H #define LV_SPAN_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../lv_conf_internal.h" #include "../../core/lv_obj.h" #if LV_USE_SPAN != 0 /********************* * DEFINES *********************/ #ifndef LV_SPAN_SNIPPET_STACK_SIZE #define LV_SPAN_SNIPPET_STACK_SIZE 64 #endif /********************** * TYPEDEFS **********************/ typedef enum { LV_SPAN_OVERFLOW_CLIP, LV_SPAN_OVERFLOW_ELLIPSIS, LV_SPAN_OVERFLOW_LAST, /**< Fence member*/ } lv_span_overflow_t; typedef enum { LV_SPAN_MODE_FIXED, /**< fixed the obj size */ LV_SPAN_MODE_EXPAND, /**< Expand the object size to the text size */ LV_SPAN_MODE_BREAK, /**< Keep width, break the too long lines and expand height */ LV_SPAN_MODE_LAST /**< Fence member */ } lv_span_mode_t; LV_ATTRIBUTE_EXTERN_DATA extern const lv_obj_class_t lv_spangroup_class; /********************** * GLOBAL PROTOTYPES **********************/ void lv_span_stack_init(void); void lv_span_stack_deinit(void); /** * Create a spangroup object * @param parent pointer to an object, it will be the parent of the new spangroup * @return pointer to the created spangroup */ lv_obj_t * lv_spangroup_create(lv_obj_t * parent); /** * Create a span string descriptor and add to spangroup. * @param obj pointer to a spangroup object. * @return pointer to the created span. */ lv_span_t * lv_spangroup_new_span(lv_obj_t * obj); /** * Remove the span from the spangroup and free memory. * @param obj pointer to a spangroup object. * @param span pointer to a span. */ void lv_spangroup_delete_span(lv_obj_t * obj, lv_span_t * span); /*===================== * Setter functions *====================*/ /** * Set a new text for a span. Memory will be allocated to store the text by the span. * @param span pointer to a span. * @param text pointer to a text. */ void lv_span_set_text(lv_span_t * span, const char * text); /** * Set a static text. It will not be saved by the span so the 'text' variable * has to be 'alive' while the span exist. * @param span pointer to a span. * @param text pointer to a text. */ void lv_span_set_text_static(lv_span_t * span, const char * text); /** * Set the align of the spangroup. * @param obj pointer to a spangroup object. * @param align see lv_text_align_t for details. */ void lv_spangroup_set_align(lv_obj_t * obj, lv_text_align_t align); /** * Set the overflow of the spangroup. * @param obj pointer to a spangroup object. * @param overflow see lv_span_overflow_t for details. */ void lv_spangroup_set_overflow(lv_obj_t * obj, lv_span_overflow_t overflow); /** * Set the indent of the spangroup. * @param obj pointer to a spangroup object. * @param indent the first line indentation */ void lv_spangroup_set_indent(lv_obj_t * obj, int32_t indent); /** * Set the mode of the spangroup. * @param obj pointer to a spangroup object. * @param mode see lv_span_mode_t for details. */ void lv_spangroup_set_mode(lv_obj_t * obj, lv_span_mode_t mode); /** * Set maximum lines of the spangroup. * @param obj pointer to a spangroup object. * @param lines max lines that can be displayed in LV_SPAN_MODE_BREAK mode. < 0 means no limit. */ void lv_spangroup_set_max_lines(lv_obj_t * obj, int32_t lines); /*===================== * Getter functions *====================*/ /** * Get a pointer to the style of a span * @param span pointer to the span * @return pointer to the style. valid as long as the span is valid */ lv_style_t * lv_span_get_style(lv_span_t * span); /** * Get a spangroup child by its index. * * @param obj The spangroup object * @param id the index of the child. * 0: the oldest (firstly created) child * 1: the second oldest * child count-1: the youngest * -1: the youngest * -2: the second youngest * @return The child span at index `id`, or NULL if the ID does not exist */ lv_span_t * lv_spangroup_get_child(const lv_obj_t * obj, int32_t id); /** * Get number of spans * @param obj the spangroup object to get the child count of. * @return the span count of the spangroup. */ uint32_t lv_spangroup_get_span_count(const lv_obj_t * obj); /** * Get the align of the spangroup. * @param obj pointer to a spangroup object. * @return the align value. */ lv_text_align_t lv_spangroup_get_align(lv_obj_t * obj); /** * Get the overflow of the spangroup. * @param obj pointer to a spangroup object. * @return the overflow value. */ lv_span_overflow_t lv_spangroup_get_overflow(lv_obj_t * obj); /** * Get the indent of the spangroup. * @param obj pointer to a spangroup object. * @return the indent value. */ int32_t lv_spangroup_get_indent(lv_obj_t * obj); /** * Get the mode of the spangroup. * @param obj pointer to a spangroup object. */ lv_span_mode_t lv_spangroup_get_mode(lv_obj_t * obj); /** * Get maximum lines of the spangroup. * @param obj pointer to a spangroup object. * @return the max lines value. */ int32_t lv_spangroup_get_max_lines(lv_obj_t * obj); /** * Get max line height of all span in the spangroup. * @param obj pointer to a spangroup object. */ int32_t lv_spangroup_get_max_line_height(lv_obj_t * obj); /** * Get the text content width when all span of spangroup on a line. * @param obj pointer to a spangroup object. * @param max_width if text content width >= max_width, return max_width * to reduce computation, if max_width == 0, returns the text content width. * @return text content width or max_width. */ uint32_t lv_spangroup_get_expand_width(lv_obj_t * obj, uint32_t max_width); /** * Get the text content height with width fixed. * @param obj pointer to a spangroup object. * @param width the width of the span group. */ int32_t lv_spangroup_get_expand_height(lv_obj_t * obj, int32_t width); /*===================== * Other functions *====================*/ /** * Update the mode of the spangroup. * @param obj pointer to a spangroup object. */ void lv_spangroup_refr_mode(lv_obj_t * obj); /********************** * MACROS **********************/ #endif /*LV_USE_SPAN*/ #ifdef __cplusplus } /* extern "C" */ #endif #endif /*LV_SPAN_H*/ ```
Spring Grove Cemetery is a nonprofit garden cemetery and arboretum in Cincinnati, Ohio. Spring Grove Cemetery may also refer to: Spring Grove Cemetery (Hartford, Connecticut), listed on the National Register of Historic Places (NRHP) in Hartford County, Connecticut a pioneer cemetery in Newton Township, Buchanan County, Iowa Spring Grove Cemetery (Medina, Ohio), listed on the NRHP in Medina County, Ohio See also Spring Grove Cemetery Chapel, Cincinnati, Ohio
```objective-c /* * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkPdfFDFPageDictionary_DEFINED #define SkPdfFDFPageDictionary_DEFINED #include "SkPdfDictionary_autogen.h" // Entries in an FDF page dictionary class SkPdfFDFPageDictionary : public SkPdfDictionary { public: public: SkPdfFDFPageDictionary* asFDFPageDictionary() {return this;} const SkPdfFDFPageDictionary* asFDFPageDictionary() const {return this;} private: SkPdfALinkAnnotationDictionary* asALinkAnnotationDictionary() {return (SkPdfALinkAnnotationDictionary*)this;} const SkPdfALinkAnnotationDictionary* asALinkAnnotationDictionary() const {return (const SkPdfALinkAnnotationDictionary*)this;} SkPdfActionDictionary* asActionDictionary() {return (SkPdfActionDictionary*)this;} const SkPdfActionDictionary* asActionDictionary() const {return (const SkPdfActionDictionary*)this;} SkPdfAlternateImageDictionary* asAlternateImageDictionary() {return (SkPdfAlternateImageDictionary*)this;} const SkPdfAlternateImageDictionary* asAlternateImageDictionary() const {return (const SkPdfAlternateImageDictionary*)this;} SkPdfAnnotationActionsDictionary* asAnnotationActionsDictionary() {return (SkPdfAnnotationActionsDictionary*)this;} const SkPdfAnnotationActionsDictionary* asAnnotationActionsDictionary() const {return (const SkPdfAnnotationActionsDictionary*)this;} SkPdfAnnotationDictionary* asAnnotationDictionary() {return (SkPdfAnnotationDictionary*)this;} const SkPdfAnnotationDictionary* asAnnotationDictionary() const {return (const SkPdfAnnotationDictionary*)this;} SkPdfAppearanceCharacteristicsDictionary* asAppearanceCharacteristicsDictionary() {return (SkPdfAppearanceCharacteristicsDictionary*)this;} const SkPdfAppearanceCharacteristicsDictionary* asAppearanceCharacteristicsDictionary() const {return (const SkPdfAppearanceCharacteristicsDictionary*)this;} SkPdfAppearanceDictionary* asAppearanceDictionary() {return (SkPdfAppearanceDictionary*)this;} const SkPdfAppearanceDictionary* asAppearanceDictionary() const {return (const SkPdfAppearanceDictionary*)this;} SkPdfApplicationDataDictionary* asApplicationDataDictionary() {return (SkPdfApplicationDataDictionary*)this;} const SkPdfApplicationDataDictionary* asApplicationDataDictionary() const {return (const SkPdfApplicationDataDictionary*)this;} SkPdfArtifactsDictionary* asArtifactsDictionary() {return (SkPdfArtifactsDictionary*)this;} const SkPdfArtifactsDictionary* asArtifactsDictionary() const {return (const SkPdfArtifactsDictionary*)this;} SkPdfAttributeObjectDictionary* asAttributeObjectDictionary() {return (SkPdfAttributeObjectDictionary*)this;} const SkPdfAttributeObjectDictionary* asAttributeObjectDictionary() const {return (const SkPdfAttributeObjectDictionary*)this;} SkPdfBeadDictionary* asBeadDictionary() {return (SkPdfBeadDictionary*)this;} const SkPdfBeadDictionary* asBeadDictionary() const {return (const SkPdfBeadDictionary*)this;} SkPdfBlockLevelStructureElementsDictionary* asBlockLevelStructureElementsDictionary() {return (SkPdfBlockLevelStructureElementsDictionary*)this;} const SkPdfBlockLevelStructureElementsDictionary* asBlockLevelStructureElementsDictionary() const {return (const SkPdfBlockLevelStructureElementsDictionary*)this;} SkPdfBorderStyleDictionary* asBorderStyleDictionary() {return (SkPdfBorderStyleDictionary*)this;} const SkPdfBorderStyleDictionary* asBorderStyleDictionary() const {return (const SkPdfBorderStyleDictionary*)this;} SkPdfBoxColorInformationDictionary* asBoxColorInformationDictionary() {return (SkPdfBoxColorInformationDictionary*)this;} const SkPdfBoxColorInformationDictionary* asBoxColorInformationDictionary() const {return (const SkPdfBoxColorInformationDictionary*)this;} SkPdfBoxStyleDictionary* asBoxStyleDictionary() {return (SkPdfBoxStyleDictionary*)this;} const SkPdfBoxStyleDictionary* asBoxStyleDictionary() const {return (const SkPdfBoxStyleDictionary*)this;} SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return (SkPdfCIDFontDescriptorDictionary*)this;} const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return (const SkPdfCIDFontDescriptorDictionary*)this;} SkPdfCIDFontDictionary* asCIDFontDictionary() {return (SkPdfCIDFontDictionary*)this;} const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return (const SkPdfCIDFontDictionary*)this;} SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return (SkPdfCIDSystemInfoDictionary*)this;} const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return (const SkPdfCIDSystemInfoDictionary*)this;} SkPdfCMapDictionary* asCMapDictionary() {return (SkPdfCMapDictionary*)this;} const SkPdfCMapDictionary* asCMapDictionary() const {return (const SkPdfCMapDictionary*)this;} SkPdfCalgrayColorSpaceDictionary* asCalgrayColorSpaceDictionary() {return (SkPdfCalgrayColorSpaceDictionary*)this;} const SkPdfCalgrayColorSpaceDictionary* asCalgrayColorSpaceDictionary() const {return (const SkPdfCalgrayColorSpaceDictionary*)this;} SkPdfCalrgbColorSpaceDictionary* asCalrgbColorSpaceDictionary() {return (SkPdfCalrgbColorSpaceDictionary*)this;} const SkPdfCalrgbColorSpaceDictionary* asCalrgbColorSpaceDictionary() const {return (const SkPdfCalrgbColorSpaceDictionary*)this;} SkPdfCatalogDictionary* asCatalogDictionary() {return (SkPdfCatalogDictionary*)this;} const SkPdfCatalogDictionary* asCatalogDictionary() const {return (const SkPdfCatalogDictionary*)this;} SkPdfCcittfaxdecodeFilterDictionary* asCcittfaxdecodeFilterDictionary() {return (SkPdfCcittfaxdecodeFilterDictionary*)this;} const SkPdfCcittfaxdecodeFilterDictionary* asCcittfaxdecodeFilterDictionary() const {return (const SkPdfCcittfaxdecodeFilterDictionary*)this;} SkPdfCheckboxFieldDictionary* asCheckboxFieldDictionary() {return (SkPdfCheckboxFieldDictionary*)this;} const SkPdfCheckboxFieldDictionary* asCheckboxFieldDictionary() const {return (const SkPdfCheckboxFieldDictionary*)this;} SkPdfChoiceFieldDictionary* asChoiceFieldDictionary() {return (SkPdfChoiceFieldDictionary*)this;} const SkPdfChoiceFieldDictionary* asChoiceFieldDictionary() const {return (const SkPdfChoiceFieldDictionary*)this;} SkPdfComponentsWithMetadataDictionary* asComponentsWithMetadataDictionary() {return (SkPdfComponentsWithMetadataDictionary*)this;} const SkPdfComponentsWithMetadataDictionary* asComponentsWithMetadataDictionary() const {return (const SkPdfComponentsWithMetadataDictionary*)this;} SkPdfDctdecodeFilterDictionary* asDctdecodeFilterDictionary() {return (SkPdfDctdecodeFilterDictionary*)this;} const SkPdfDctdecodeFilterDictionary* asDctdecodeFilterDictionary() const {return (const SkPdfDctdecodeFilterDictionary*)this;} SkPdfDeviceNColorSpaceDictionary* asDeviceNColorSpaceDictionary() {return (SkPdfDeviceNColorSpaceDictionary*)this;} const SkPdfDeviceNColorSpaceDictionary* asDeviceNColorSpaceDictionary() const {return (const SkPdfDeviceNColorSpaceDictionary*)this;} SkPdfDocumentCatalogActionsDictionary* asDocumentCatalogActionsDictionary() {return (SkPdfDocumentCatalogActionsDictionary*)this;} const SkPdfDocumentCatalogActionsDictionary* asDocumentCatalogActionsDictionary() const {return (const SkPdfDocumentCatalogActionsDictionary*)this;} SkPdfDocumentInformationDictionary* asDocumentInformationDictionary() {return (SkPdfDocumentInformationDictionary*)this;} const SkPdfDocumentInformationDictionary* asDocumentInformationDictionary() const {return (const SkPdfDocumentInformationDictionary*)this;} SkPdfEmbeddedFileParameterDictionary* asEmbeddedFileParameterDictionary() {return (SkPdfEmbeddedFileParameterDictionary*)this;} const SkPdfEmbeddedFileParameterDictionary* asEmbeddedFileParameterDictionary() const {return (const SkPdfEmbeddedFileParameterDictionary*)this;} SkPdfEmbeddedFileStreamDictionary* asEmbeddedFileStreamDictionary() {return (SkPdfEmbeddedFileStreamDictionary*)this;} const SkPdfEmbeddedFileStreamDictionary* asEmbeddedFileStreamDictionary() const {return (const SkPdfEmbeddedFileStreamDictionary*)this;} SkPdfEmbeddedFontStreamDictionary* asEmbeddedFontStreamDictionary() {return (SkPdfEmbeddedFontStreamDictionary*)this;} const SkPdfEmbeddedFontStreamDictionary* asEmbeddedFontStreamDictionary() const {return (const SkPdfEmbeddedFontStreamDictionary*)this;} SkPdfEncodingDictionary* asEncodingDictionary() {return (SkPdfEncodingDictionary*)this;} const SkPdfEncodingDictionary* asEncodingDictionary() const {return (const SkPdfEncodingDictionary*)this;} SkPdfEncryptedEmbeddedFileStreamDictionary* asEncryptedEmbeddedFileStreamDictionary() {return (SkPdfEncryptedEmbeddedFileStreamDictionary*)this;} const SkPdfEncryptedEmbeddedFileStreamDictionary* asEncryptedEmbeddedFileStreamDictionary() const {return (const SkPdfEncryptedEmbeddedFileStreamDictionary*)this;} SkPdfEncryptionCommonDictionary* asEncryptionCommonDictionary() {return (SkPdfEncryptionCommonDictionary*)this;} const SkPdfEncryptionCommonDictionary* asEncryptionCommonDictionary() const {return (const SkPdfEncryptionCommonDictionary*)this;} SkPdfFDFCatalogDictionary* asFDFCatalogDictionary() {return (SkPdfFDFCatalogDictionary*)this;} const SkPdfFDFCatalogDictionary* asFDFCatalogDictionary() const {return (const SkPdfFDFCatalogDictionary*)this;} SkPdfFDFDictionary* asFDFDictionary() {return (SkPdfFDFDictionary*)this;} const SkPdfFDFDictionary* asFDFDictionary() const {return (const SkPdfFDFDictionary*)this;} SkPdfFDFFieldDictionary* asFDFFieldDictionary() {return (SkPdfFDFFieldDictionary*)this;} const SkPdfFDFFieldDictionary* asFDFFieldDictionary() const {return (const SkPdfFDFFieldDictionary*)this;} SkPdfFDFFileAnnotationDictionary* asFDFFileAnnotationDictionary() {return (SkPdfFDFFileAnnotationDictionary*)this;} const SkPdfFDFFileAnnotationDictionary* asFDFFileAnnotationDictionary() const {return (const SkPdfFDFFileAnnotationDictionary*)this;} SkPdfFDFNamedPageReferenceDictionary* asFDFNamedPageReferenceDictionary() {return (SkPdfFDFNamedPageReferenceDictionary*)this;} const SkPdfFDFNamedPageReferenceDictionary* asFDFNamedPageReferenceDictionary() const {return (const SkPdfFDFNamedPageReferenceDictionary*)this;} SkPdfFDFTemplateDictionary* asFDFTemplateDictionary() {return (SkPdfFDFTemplateDictionary*)this;} const SkPdfFDFTemplateDictionary* asFDFTemplateDictionary() const {return (const SkPdfFDFTemplateDictionary*)this;} SkPdfFDFTrailerDictionary* asFDFTrailerDictionary() {return (SkPdfFDFTrailerDictionary*)this;} const SkPdfFDFTrailerDictionary* asFDFTrailerDictionary() const {return (const SkPdfFDFTrailerDictionary*)this;} SkPdfFieldDictionary* asFieldDictionary() {return (SkPdfFieldDictionary*)this;} const SkPdfFieldDictionary* asFieldDictionary() const {return (const SkPdfFieldDictionary*)this;} SkPdfFileAttachmentAnnotationDictionary* asFileAttachmentAnnotationDictionary() {return (SkPdfFileAttachmentAnnotationDictionary*)this;} const SkPdfFileAttachmentAnnotationDictionary* asFileAttachmentAnnotationDictionary() const {return (const SkPdfFileAttachmentAnnotationDictionary*)this;} SkPdfFileSpecificationDictionary* asFileSpecificationDictionary() {return (SkPdfFileSpecificationDictionary*)this;} const SkPdfFileSpecificationDictionary* asFileSpecificationDictionary() const {return (const SkPdfFileSpecificationDictionary*)this;} SkPdfFileTrailerDictionary* asFileTrailerDictionary() {return (SkPdfFileTrailerDictionary*)this;} const SkPdfFileTrailerDictionary* asFileTrailerDictionary() const {return (const SkPdfFileTrailerDictionary*)this;} SkPdfFontDescriptorDictionary* asFontDescriptorDictionary() {return (SkPdfFontDescriptorDictionary*)this;} const SkPdfFontDescriptorDictionary* asFontDescriptorDictionary() const {return (const SkPdfFontDescriptorDictionary*)this;} SkPdfFontDictionary* asFontDictionary() {return (SkPdfFontDictionary*)this;} const SkPdfFontDictionary* asFontDictionary() const {return (const SkPdfFontDictionary*)this;} SkPdfType0FontDictionary* asType0FontDictionary() {return (SkPdfType0FontDictionary*)this;} const SkPdfType0FontDictionary* asType0FontDictionary() const {return (const SkPdfType0FontDictionary*)this;} SkPdfType1FontDictionary* asType1FontDictionary() {return (SkPdfType1FontDictionary*)this;} const SkPdfType1FontDictionary* asType1FontDictionary() const {return (const SkPdfType1FontDictionary*)this;} SkPdfMultiMasterFontDictionary* asMultiMasterFontDictionary() {return (SkPdfMultiMasterFontDictionary*)this;} const SkPdfMultiMasterFontDictionary* asMultiMasterFontDictionary() const {return (const SkPdfMultiMasterFontDictionary*)this;} SkPdfTrueTypeFontDictionary* asTrueTypeFontDictionary() {return (SkPdfTrueTypeFontDictionary*)this;} const SkPdfTrueTypeFontDictionary* asTrueTypeFontDictionary() const {return (const SkPdfTrueTypeFontDictionary*)this;} SkPdfType3FontDictionary* asType3FontDictionary() {return (SkPdfType3FontDictionary*)this;} const SkPdfType3FontDictionary* asType3FontDictionary() const {return (const SkPdfType3FontDictionary*)this;} SkPdfFormFieldActionsDictionary* asFormFieldActionsDictionary() {return (SkPdfFormFieldActionsDictionary*)this;} const SkPdfFormFieldActionsDictionary* asFormFieldActionsDictionary() const {return (const SkPdfFormFieldActionsDictionary*)this;} SkPdfFreeTextAnnotationDictionary* asFreeTextAnnotationDictionary() {return (SkPdfFreeTextAnnotationDictionary*)this;} const SkPdfFreeTextAnnotationDictionary* asFreeTextAnnotationDictionary() const {return (const SkPdfFreeTextAnnotationDictionary*)this;} SkPdfFunctionCommonDictionary* asFunctionCommonDictionary() {return (SkPdfFunctionCommonDictionary*)this;} const SkPdfFunctionCommonDictionary* asFunctionCommonDictionary() const {return (const SkPdfFunctionCommonDictionary*)this;} SkPdfGoToActionDictionary* asGoToActionDictionary() {return (SkPdfGoToActionDictionary*)this;} const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return (const SkPdfGoToActionDictionary*)this;} SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return (SkPdfGraphicsStateDictionary*)this;} const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return (const SkPdfGraphicsStateDictionary*)this;} SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return (SkPdfGroupAttributesDictionary*)this;} const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return (const SkPdfGroupAttributesDictionary*)this;} SkPdfHideActionDictionary* asHideActionDictionary() {return (SkPdfHideActionDictionary*)this;} const SkPdfHideActionDictionary* asHideActionDictionary() const {return (const SkPdfHideActionDictionary*)this;} SkPdfIccProfileStreamDictionary* asIccProfileStreamDictionary() {return (SkPdfIccProfileStreamDictionary*)this;} const SkPdfIccProfileStreamDictionary* asIccProfileStreamDictionary() const {return (const SkPdfIccProfileStreamDictionary*)this;} SkPdfIconFitDictionary* asIconFitDictionary() {return (SkPdfIconFitDictionary*)this;} const SkPdfIconFitDictionary* asIconFitDictionary() const {return (const SkPdfIconFitDictionary*)this;} SkPdfImportDataActionDictionary* asImportDataActionDictionary() {return (SkPdfImportDataActionDictionary*)this;} const SkPdfImportDataActionDictionary* asImportDataActionDictionary() const {return (const SkPdfImportDataActionDictionary*)this;} SkPdfInkAnnotationDictionary* asInkAnnotationDictionary() {return (SkPdfInkAnnotationDictionary*)this;} const SkPdfInkAnnotationDictionary* asInkAnnotationDictionary() const {return (const SkPdfInkAnnotationDictionary*)this;} SkPdfInlineLevelStructureElementsDictionary* asInlineLevelStructureElementsDictionary() {return (SkPdfInlineLevelStructureElementsDictionary*)this;} const SkPdfInlineLevelStructureElementsDictionary* asInlineLevelStructureElementsDictionary() const {return (const SkPdfInlineLevelStructureElementsDictionary*)this;} SkPdfInteractiveFormDictionary* asInteractiveFormDictionary() {return (SkPdfInteractiveFormDictionary*)this;} const SkPdfInteractiveFormDictionary* asInteractiveFormDictionary() const {return (const SkPdfInteractiveFormDictionary*)this;} SkPdfJavascriptActionDictionary* asJavascriptActionDictionary() {return (SkPdfJavascriptActionDictionary*)this;} const SkPdfJavascriptActionDictionary* asJavascriptActionDictionary() const {return (const SkPdfJavascriptActionDictionary*)this;} SkPdfJavascriptDictionary* asJavascriptDictionary() {return (SkPdfJavascriptDictionary*)this;} const SkPdfJavascriptDictionary* asJavascriptDictionary() const {return (const SkPdfJavascriptDictionary*)this;} SkPdfJbig2DecodeFilterDictionary* asJbig2DecodeFilterDictionary() {return (SkPdfJbig2DecodeFilterDictionary*)this;} const SkPdfJbig2DecodeFilterDictionary* asJbig2DecodeFilterDictionary() const {return (const SkPdfJbig2DecodeFilterDictionary*)this;} SkPdfLabColorSpaceDictionary* asLabColorSpaceDictionary() {return (SkPdfLabColorSpaceDictionary*)this;} const SkPdfLabColorSpaceDictionary* asLabColorSpaceDictionary() const {return (const SkPdfLabColorSpaceDictionary*)this;} SkPdfLaunchActionDictionary* asLaunchActionDictionary() {return (SkPdfLaunchActionDictionary*)this;} const SkPdfLaunchActionDictionary* asLaunchActionDictionary() const {return (const SkPdfLaunchActionDictionary*)this;} SkPdfLineAnnotationDictionary* asLineAnnotationDictionary() {return (SkPdfLineAnnotationDictionary*)this;} const SkPdfLineAnnotationDictionary* asLineAnnotationDictionary() const {return (const SkPdfLineAnnotationDictionary*)this;} SkPdfListAttributeDictionary* asListAttributeDictionary() {return (SkPdfListAttributeDictionary*)this;} const SkPdfListAttributeDictionary* asListAttributeDictionary() const {return (const SkPdfListAttributeDictionary*)this;} SkPdfLzwdecodeAndFlatedecodeFiltersDictionary* asLzwdecodeAndFlatedecodeFiltersDictionary() {return (SkPdfLzwdecodeAndFlatedecodeFiltersDictionary*)this;} const SkPdfLzwdecodeAndFlatedecodeFiltersDictionary* asLzwdecodeAndFlatedecodeFiltersDictionary() const {return (const SkPdfLzwdecodeAndFlatedecodeFiltersDictionary*)this;} SkPdfMacOsFileInformationDictionary* asMacOsFileInformationDictionary() {return (SkPdfMacOsFileInformationDictionary*)this;} const SkPdfMacOsFileInformationDictionary* asMacOsFileInformationDictionary() const {return (const SkPdfMacOsFileInformationDictionary*)this;} SkPdfMarkInformationDictionary* asMarkInformationDictionary() {return (SkPdfMarkInformationDictionary*)this;} const SkPdfMarkInformationDictionary* asMarkInformationDictionary() const {return (const SkPdfMarkInformationDictionary*)this;} SkPdfMarkedContentReferenceDictionary* asMarkedContentReferenceDictionary() {return (SkPdfMarkedContentReferenceDictionary*)this;} const SkPdfMarkedContentReferenceDictionary* asMarkedContentReferenceDictionary() const {return (const SkPdfMarkedContentReferenceDictionary*)this;} SkPdfMarkupAnnotationsDictionary* asMarkupAnnotationsDictionary() {return (SkPdfMarkupAnnotationsDictionary*)this;} const SkPdfMarkupAnnotationsDictionary* asMarkupAnnotationsDictionary() const {return (const SkPdfMarkupAnnotationsDictionary*)this;} SkPdfMetadataStreamDictionary* asMetadataStreamDictionary() {return (SkPdfMetadataStreamDictionary*)this;} const SkPdfMetadataStreamDictionary* asMetadataStreamDictionary() const {return (const SkPdfMetadataStreamDictionary*)this;} SkPdfMovieActionDictionary* asMovieActionDictionary() {return (SkPdfMovieActionDictionary*)this;} const SkPdfMovieActionDictionary* asMovieActionDictionary() const {return (const SkPdfMovieActionDictionary*)this;} SkPdfMovieActivationDictionary* asMovieActivationDictionary() {return (SkPdfMovieActivationDictionary*)this;} const SkPdfMovieActivationDictionary* asMovieActivationDictionary() const {return (const SkPdfMovieActivationDictionary*)this;} SkPdfMovieAnnotationDictionary* asMovieAnnotationDictionary() {return (SkPdfMovieAnnotationDictionary*)this;} const SkPdfMovieAnnotationDictionary* asMovieAnnotationDictionary() const {return (const SkPdfMovieAnnotationDictionary*)this;} SkPdfMovieDictionary* asMovieDictionary() {return (SkPdfMovieDictionary*)this;} const SkPdfMovieDictionary* asMovieDictionary() const {return (const SkPdfMovieDictionary*)this;} SkPdfNameDictionary* asNameDictionary() {return (SkPdfNameDictionary*)this;} const SkPdfNameDictionary* asNameDictionary() const {return (const SkPdfNameDictionary*)this;} SkPdfNameTreeNodeDictionary* asNameTreeNodeDictionary() {return (SkPdfNameTreeNodeDictionary*)this;} const SkPdfNameTreeNodeDictionary* asNameTreeNodeDictionary() const {return (const SkPdfNameTreeNodeDictionary*)this;} SkPdfNamedActionsDictionary* asNamedActionsDictionary() {return (SkPdfNamedActionsDictionary*)this;} const SkPdfNamedActionsDictionary* asNamedActionsDictionary() const {return (const SkPdfNamedActionsDictionary*)this;} SkPdfNumberTreeNodeDictionary* asNumberTreeNodeDictionary() {return (SkPdfNumberTreeNodeDictionary*)this;} const SkPdfNumberTreeNodeDictionary* asNumberTreeNodeDictionary() const {return (const SkPdfNumberTreeNodeDictionary*)this;} SkPdfObjectReferenceDictionary* asObjectReferenceDictionary() {return (SkPdfObjectReferenceDictionary*)this;} const SkPdfObjectReferenceDictionary* asObjectReferenceDictionary() const {return (const SkPdfObjectReferenceDictionary*)this;} SkPdfOpiVersionDictionary* asOpiVersionDictionary() {return (SkPdfOpiVersionDictionary*)this;} const SkPdfOpiVersionDictionary* asOpiVersionDictionary() const {return (const SkPdfOpiVersionDictionary*)this;} SkPdfOutlineDictionary* asOutlineDictionary() {return (SkPdfOutlineDictionary*)this;} const SkPdfOutlineDictionary* asOutlineDictionary() const {return (const SkPdfOutlineDictionary*)this;} SkPdfOutlineItemDictionary* asOutlineItemDictionary() {return (SkPdfOutlineItemDictionary*)this;} const SkPdfOutlineItemDictionary* asOutlineItemDictionary() const {return (const SkPdfOutlineItemDictionary*)this;} SkPdfPDF_XOutputIntentDictionary* asPDF_XOutputIntentDictionary() {return (SkPdfPDF_XOutputIntentDictionary*)this;} const SkPdfPDF_XOutputIntentDictionary* asPDF_XOutputIntentDictionary() const {return (const SkPdfPDF_XOutputIntentDictionary*)this;} SkPdfPSXobjectDictionary* asPSXobjectDictionary() {return (SkPdfPSXobjectDictionary*)this;} const SkPdfPSXobjectDictionary* asPSXobjectDictionary() const {return (const SkPdfPSXobjectDictionary*)this;} SkPdfPageLabelDictionary* asPageLabelDictionary() {return (SkPdfPageLabelDictionary*)this;} const SkPdfPageLabelDictionary* asPageLabelDictionary() const {return (const SkPdfPageLabelDictionary*)this;} SkPdfPageObjectActionsDictionary* asPageObjectActionsDictionary() {return (SkPdfPageObjectActionsDictionary*)this;} const SkPdfPageObjectActionsDictionary* asPageObjectActionsDictionary() const {return (const SkPdfPageObjectActionsDictionary*)this;} SkPdfPageObjectDictionary* asPageObjectDictionary() {return (SkPdfPageObjectDictionary*)this;} const SkPdfPageObjectDictionary* asPageObjectDictionary() const {return (const SkPdfPageObjectDictionary*)this;} SkPdfPagePieceDictionary* asPagePieceDictionary() {return (SkPdfPagePieceDictionary*)this;} const SkPdfPagePieceDictionary* asPagePieceDictionary() const {return (const SkPdfPagePieceDictionary*)this;} SkPdfPageTreeNodeDictionary* asPageTreeNodeDictionary() {return (SkPdfPageTreeNodeDictionary*)this;} const SkPdfPageTreeNodeDictionary* asPageTreeNodeDictionary() const {return (const SkPdfPageTreeNodeDictionary*)this;} SkPdfPopUpAnnotationDictionary* asPopUpAnnotationDictionary() {return (SkPdfPopUpAnnotationDictionary*)this;} const SkPdfPopUpAnnotationDictionary* asPopUpAnnotationDictionary() const {return (const SkPdfPopUpAnnotationDictionary*)this;} SkPdfPrinterMarkAnnotationDictionary* asPrinterMarkAnnotationDictionary() {return (SkPdfPrinterMarkAnnotationDictionary*)this;} const SkPdfPrinterMarkAnnotationDictionary* asPrinterMarkAnnotationDictionary() const {return (const SkPdfPrinterMarkAnnotationDictionary*)this;} SkPdfPrinterMarkFormDictionary* asPrinterMarkFormDictionary() {return (SkPdfPrinterMarkFormDictionary*)this;} const SkPdfPrinterMarkFormDictionary* asPrinterMarkFormDictionary() const {return (const SkPdfPrinterMarkFormDictionary*)this;} SkPdfRadioButtonFieldDictionary* asRadioButtonFieldDictionary() {return (SkPdfRadioButtonFieldDictionary*)this;} const SkPdfRadioButtonFieldDictionary* asRadioButtonFieldDictionary() const {return (const SkPdfRadioButtonFieldDictionary*)this;} SkPdfReferenceDictionary* asReferenceDictionary() {return (SkPdfReferenceDictionary*)this;} const SkPdfReferenceDictionary* asReferenceDictionary() const {return (const SkPdfReferenceDictionary*)this;} SkPdfRemoteGoToActionDictionary* asRemoteGoToActionDictionary() {return (SkPdfRemoteGoToActionDictionary*)this;} const SkPdfRemoteGoToActionDictionary* asRemoteGoToActionDictionary() const {return (const SkPdfRemoteGoToActionDictionary*)this;} SkPdfResetFormActionDictionary* asResetFormActionDictionary() {return (SkPdfResetFormActionDictionary*)this;} const SkPdfResetFormActionDictionary* asResetFormActionDictionary() const {return (const SkPdfResetFormActionDictionary*)this;} SkPdfResourceDictionary* asResourceDictionary() {return (SkPdfResourceDictionary*)this;} const SkPdfResourceDictionary* asResourceDictionary() const {return (const SkPdfResourceDictionary*)this;} SkPdfRubberStampAnnotationDictionary* asRubberStampAnnotationDictionary() {return (SkPdfRubberStampAnnotationDictionary*)this;} const SkPdfRubberStampAnnotationDictionary* asRubberStampAnnotationDictionary() const {return (const SkPdfRubberStampAnnotationDictionary*)this;} SkPdfSeparationDictionary* asSeparationDictionary() {return (SkPdfSeparationDictionary*)this;} const SkPdfSeparationDictionary* asSeparationDictionary() const {return (const SkPdfSeparationDictionary*)this;} SkPdfShadingDictionary* asShadingDictionary() {return (SkPdfShadingDictionary*)this;} const SkPdfShadingDictionary* asShadingDictionary() const {return (const SkPdfShadingDictionary*)this;} SkPdfType1ShadingDictionary* asType1ShadingDictionary() {return (SkPdfType1ShadingDictionary*)this;} const SkPdfType1ShadingDictionary* asType1ShadingDictionary() const {return (const SkPdfType1ShadingDictionary*)this;} SkPdfType2ShadingDictionary* asType2ShadingDictionary() {return (SkPdfType2ShadingDictionary*)this;} const SkPdfType2ShadingDictionary* asType2ShadingDictionary() const {return (const SkPdfType2ShadingDictionary*)this;} SkPdfType3ShadingDictionary* asType3ShadingDictionary() {return (SkPdfType3ShadingDictionary*)this;} const SkPdfType3ShadingDictionary* asType3ShadingDictionary() const {return (const SkPdfType3ShadingDictionary*)this;} SkPdfType4ShadingDictionary* asType4ShadingDictionary() {return (SkPdfType4ShadingDictionary*)this;} const SkPdfType4ShadingDictionary* asType4ShadingDictionary() const {return (const SkPdfType4ShadingDictionary*)this;} SkPdfType5ShadingDictionary* asType5ShadingDictionary() {return (SkPdfType5ShadingDictionary*)this;} const SkPdfType5ShadingDictionary* asType5ShadingDictionary() const {return (const SkPdfType5ShadingDictionary*)this;} SkPdfType6ShadingDictionary* asType6ShadingDictionary() {return (SkPdfType6ShadingDictionary*)this;} const SkPdfType6ShadingDictionary* asType6ShadingDictionary() const {return (const SkPdfType6ShadingDictionary*)this;} SkPdfSignatureDictionary* asSignatureDictionary() {return (SkPdfSignatureDictionary*)this;} const SkPdfSignatureDictionary* asSignatureDictionary() const {return (const SkPdfSignatureDictionary*)this;} SkPdfSoftMaskDictionary* asSoftMaskDictionary() {return (SkPdfSoftMaskDictionary*)this;} const SkPdfSoftMaskDictionary* asSoftMaskDictionary() const {return (const SkPdfSoftMaskDictionary*)this;} SkPdfSoundActionDictionary* asSoundActionDictionary() {return (SkPdfSoundActionDictionary*)this;} const SkPdfSoundActionDictionary* asSoundActionDictionary() const {return (const SkPdfSoundActionDictionary*)this;} SkPdfSoundAnnotationDictionary* asSoundAnnotationDictionary() {return (SkPdfSoundAnnotationDictionary*)this;} const SkPdfSoundAnnotationDictionary* asSoundAnnotationDictionary() const {return (const SkPdfSoundAnnotationDictionary*)this;} SkPdfSoundObjectDictionary* asSoundObjectDictionary() {return (SkPdfSoundObjectDictionary*)this;} const SkPdfSoundObjectDictionary* asSoundObjectDictionary() const {return (const SkPdfSoundObjectDictionary*)this;} SkPdfSourceInformationDictionary* asSourceInformationDictionary() {return (SkPdfSourceInformationDictionary*)this;} const SkPdfSourceInformationDictionary* asSourceInformationDictionary() const {return (const SkPdfSourceInformationDictionary*)this;} SkPdfSquareOrCircleAnnotation* asSquareOrCircleAnnotation() {return (SkPdfSquareOrCircleAnnotation*)this;} const SkPdfSquareOrCircleAnnotation* asSquareOrCircleAnnotation() const {return (const SkPdfSquareOrCircleAnnotation*)this;} SkPdfStandardSecurityHandlerDictionary* asStandardSecurityHandlerDictionary() {return (SkPdfStandardSecurityHandlerDictionary*)this;} const SkPdfStandardSecurityHandlerDictionary* asStandardSecurityHandlerDictionary() const {return (const SkPdfStandardSecurityHandlerDictionary*)this;} SkPdfStandardStructureDictionary* asStandardStructureDictionary() {return (SkPdfStandardStructureDictionary*)this;} const SkPdfStandardStructureDictionary* asStandardStructureDictionary() const {return (const SkPdfStandardStructureDictionary*)this;} SkPdfStreamCommonDictionary* asStreamCommonDictionary() {return (SkPdfStreamCommonDictionary*)this;} const SkPdfStreamCommonDictionary* asStreamCommonDictionary() const {return (const SkPdfStreamCommonDictionary*)this;} SkPdfStructureElementAccessDictionary* asStructureElementAccessDictionary() {return (SkPdfStructureElementAccessDictionary*)this;} const SkPdfStructureElementAccessDictionary* asStructureElementAccessDictionary() const {return (const SkPdfStructureElementAccessDictionary*)this;} SkPdfStructureElementDictionary* asStructureElementDictionary() {return (SkPdfStructureElementDictionary*)this;} const SkPdfStructureElementDictionary* asStructureElementDictionary() const {return (const SkPdfStructureElementDictionary*)this;} SkPdfStructureTreeRootDictionary* asStructureTreeRootDictionary() {return (SkPdfStructureTreeRootDictionary*)this;} const SkPdfStructureTreeRootDictionary* asStructureTreeRootDictionary() const {return (const SkPdfStructureTreeRootDictionary*)this;} SkPdfSubmitFormActionDictionary* asSubmitFormActionDictionary() {return (SkPdfSubmitFormActionDictionary*)this;} const SkPdfSubmitFormActionDictionary* asSubmitFormActionDictionary() const {return (const SkPdfSubmitFormActionDictionary*)this;} SkPdfTableAttributesDictionary* asTableAttributesDictionary() {return (SkPdfTableAttributesDictionary*)this;} const SkPdfTableAttributesDictionary* asTableAttributesDictionary() const {return (const SkPdfTableAttributesDictionary*)this;} SkPdfTextAnnotationDictionary* asTextAnnotationDictionary() {return (SkPdfTextAnnotationDictionary*)this;} const SkPdfTextAnnotationDictionary* asTextAnnotationDictionary() const {return (const SkPdfTextAnnotationDictionary*)this;} SkPdfTextFieldDictionary* asTextFieldDictionary() {return (SkPdfTextFieldDictionary*)this;} const SkPdfTextFieldDictionary* asTextFieldDictionary() const {return (const SkPdfTextFieldDictionary*)this;} SkPdfThreadActionDictionary* asThreadActionDictionary() {return (SkPdfThreadActionDictionary*)this;} const SkPdfThreadActionDictionary* asThreadActionDictionary() const {return (const SkPdfThreadActionDictionary*)this;} SkPdfThreadDictionary* asThreadDictionary() {return (SkPdfThreadDictionary*)this;} const SkPdfThreadDictionary* asThreadDictionary() const {return (const SkPdfThreadDictionary*)this;} SkPdfTransitionDictionary* asTransitionDictionary() {return (SkPdfTransitionDictionary*)this;} const SkPdfTransitionDictionary* asTransitionDictionary() const {return (const SkPdfTransitionDictionary*)this;} SkPdfTransparencyGroupDictionary* asTransparencyGroupDictionary() {return (SkPdfTransparencyGroupDictionary*)this;} const SkPdfTransparencyGroupDictionary* asTransparencyGroupDictionary() const {return (const SkPdfTransparencyGroupDictionary*)this;} SkPdfTrapNetworkAnnotationDictionary* asTrapNetworkAnnotationDictionary() {return (SkPdfTrapNetworkAnnotationDictionary*)this;} const SkPdfTrapNetworkAnnotationDictionary* asTrapNetworkAnnotationDictionary() const {return (const SkPdfTrapNetworkAnnotationDictionary*)this;} SkPdfTrapNetworkAppearanceStreamDictionary* asTrapNetworkAppearanceStreamDictionary() {return (SkPdfTrapNetworkAppearanceStreamDictionary*)this;} const SkPdfTrapNetworkAppearanceStreamDictionary* asTrapNetworkAppearanceStreamDictionary() const {return (const SkPdfTrapNetworkAppearanceStreamDictionary*)this;} SkPdfType0FunctionDictionary* asType0FunctionDictionary() {return (SkPdfType0FunctionDictionary*)this;} const SkPdfType0FunctionDictionary* asType0FunctionDictionary() const {return (const SkPdfType0FunctionDictionary*)this;} SkPdfType10HalftoneDictionary* asType10HalftoneDictionary() {return (SkPdfType10HalftoneDictionary*)this;} const SkPdfType10HalftoneDictionary* asType10HalftoneDictionary() const {return (const SkPdfType10HalftoneDictionary*)this;} SkPdfType16HalftoneDictionary* asType16HalftoneDictionary() {return (SkPdfType16HalftoneDictionary*)this;} const SkPdfType16HalftoneDictionary* asType16HalftoneDictionary() const {return (const SkPdfType16HalftoneDictionary*)this;} SkPdfType1HalftoneDictionary* asType1HalftoneDictionary() {return (SkPdfType1HalftoneDictionary*)this;} const SkPdfType1HalftoneDictionary* asType1HalftoneDictionary() const {return (const SkPdfType1HalftoneDictionary*)this;} SkPdfType1PatternDictionary* asType1PatternDictionary() {return (SkPdfType1PatternDictionary*)this;} const SkPdfType1PatternDictionary* asType1PatternDictionary() const {return (const SkPdfType1PatternDictionary*)this;} SkPdfType2FunctionDictionary* asType2FunctionDictionary() {return (SkPdfType2FunctionDictionary*)this;} const SkPdfType2FunctionDictionary* asType2FunctionDictionary() const {return (const SkPdfType2FunctionDictionary*)this;} SkPdfType2PatternDictionary* asType2PatternDictionary() {return (SkPdfType2PatternDictionary*)this;} const SkPdfType2PatternDictionary* asType2PatternDictionary() const {return (const SkPdfType2PatternDictionary*)this;} SkPdfType3FunctionDictionary* asType3FunctionDictionary() {return (SkPdfType3FunctionDictionary*)this;} const SkPdfType3FunctionDictionary* asType3FunctionDictionary() const {return (const SkPdfType3FunctionDictionary*)this;} SkPdfType5HalftoneDictionary* asType5HalftoneDictionary() {return (SkPdfType5HalftoneDictionary*)this;} const SkPdfType5HalftoneDictionary* asType5HalftoneDictionary() const {return (const SkPdfType5HalftoneDictionary*)this;} SkPdfType6HalftoneDictionary* asType6HalftoneDictionary() {return (SkPdfType6HalftoneDictionary*)this;} const SkPdfType6HalftoneDictionary* asType6HalftoneDictionary() const {return (const SkPdfType6HalftoneDictionary*)this;} SkPdfURIActionDictionary* asURIActionDictionary() {return (SkPdfURIActionDictionary*)this;} const SkPdfURIActionDictionary* asURIActionDictionary() const {return (const SkPdfURIActionDictionary*)this;} SkPdfURIDictionary* asURIDictionary() {return (SkPdfURIDictionary*)this;} const SkPdfURIDictionary* asURIDictionary() const {return (const SkPdfURIDictionary*)this;} SkPdfURLAliasDictionary* asURLAliasDictionary() {return (SkPdfURLAliasDictionary*)this;} const SkPdfURLAliasDictionary* asURLAliasDictionary() const {return (const SkPdfURLAliasDictionary*)this;} SkPdfVariableTextFieldDictionary* asVariableTextFieldDictionary() {return (SkPdfVariableTextFieldDictionary*)this;} const SkPdfVariableTextFieldDictionary* asVariableTextFieldDictionary() const {return (const SkPdfVariableTextFieldDictionary*)this;} SkPdfViewerPreferencesDictionary* asViewerPreferencesDictionary() {return (SkPdfViewerPreferencesDictionary*)this;} const SkPdfViewerPreferencesDictionary* asViewerPreferencesDictionary() const {return (const SkPdfViewerPreferencesDictionary*)this;} SkPdfWebCaptureCommandDictionary* asWebCaptureCommandDictionary() {return (SkPdfWebCaptureCommandDictionary*)this;} const SkPdfWebCaptureCommandDictionary* asWebCaptureCommandDictionary() const {return (const SkPdfWebCaptureCommandDictionary*)this;} SkPdfWebCaptureCommandSettingsDictionary* asWebCaptureCommandSettingsDictionary() {return (SkPdfWebCaptureCommandSettingsDictionary*)this;} const SkPdfWebCaptureCommandSettingsDictionary* asWebCaptureCommandSettingsDictionary() const {return (const SkPdfWebCaptureCommandSettingsDictionary*)this;} SkPdfWebCaptureDictionary* asWebCaptureDictionary() {return (SkPdfWebCaptureDictionary*)this;} const SkPdfWebCaptureDictionary* asWebCaptureDictionary() const {return (const SkPdfWebCaptureDictionary*)this;} SkPdfWebCaptureImageSetDictionary* asWebCaptureImageSetDictionary() {return (SkPdfWebCaptureImageSetDictionary*)this;} const SkPdfWebCaptureImageSetDictionary* asWebCaptureImageSetDictionary() const {return (const SkPdfWebCaptureImageSetDictionary*)this;} SkPdfWebCaptureInformationDictionary* asWebCaptureInformationDictionary() {return (SkPdfWebCaptureInformationDictionary*)this;} const SkPdfWebCaptureInformationDictionary* asWebCaptureInformationDictionary() const {return (const SkPdfWebCaptureInformationDictionary*)this;} SkPdfWebCapturePageSetDictionary* asWebCapturePageSetDictionary() {return (SkPdfWebCapturePageSetDictionary*)this;} const SkPdfWebCapturePageSetDictionary* asWebCapturePageSetDictionary() const {return (const SkPdfWebCapturePageSetDictionary*)this;} SkPdfWidgetAnnotationDictionary* asWidgetAnnotationDictionary() {return (SkPdfWidgetAnnotationDictionary*)this;} const SkPdfWidgetAnnotationDictionary* asWidgetAnnotationDictionary() const {return (const SkPdfWidgetAnnotationDictionary*)this;} SkPdfWindowsLaunchActionDictionary* asWindowsLaunchActionDictionary() {return (SkPdfWindowsLaunchActionDictionary*)this;} const SkPdfWindowsLaunchActionDictionary* asWindowsLaunchActionDictionary() const {return (const SkPdfWindowsLaunchActionDictionary*)this;} SkPdfXObjectDictionary* asXObjectDictionary() {return (SkPdfXObjectDictionary*)this;} const SkPdfXObjectDictionary* asXObjectDictionary() const {return (const SkPdfXObjectDictionary*)this;} SkPdfImageDictionary* asImageDictionary() {return (SkPdfImageDictionary*)this;} const SkPdfImageDictionary* asImageDictionary() const {return (const SkPdfImageDictionary*)this;} SkPdfSoftMaskImageDictionary* asSoftMaskImageDictionary() {return (SkPdfSoftMaskImageDictionary*)this;} const SkPdfSoftMaskImageDictionary* asSoftMaskImageDictionary() const {return (const SkPdfSoftMaskImageDictionary*)this;} SkPdfType1FormDictionary* asType1FormDictionary() {return (SkPdfType1FormDictionary*)this;} const SkPdfType1FormDictionary* asType1FormDictionary() const {return (const SkPdfType1FormDictionary*)this;} public: bool valid() const {return true;} SkPdfArray* Templates(SkPdfNativeDoc* doc); bool has_Templates() const; SkPdfDictionary* Info(SkPdfNativeDoc* doc); bool has_Info() const; }; #endif // SkPdfFDFPageDictionary_DEFINED ```
Ye Zhengda (; 22 August 1927 – 14 December 2017) was a Chinese aircraft designer and lieutenant general of the People's Liberation Army Air Force. He was also an adjunct professor and senior engineer at Northwestern Polytechnical University. He was a member of the 10th National Congress of the Chinese Communist Party and a delegate to the 5th National People's Congress. Biography Ye was born Ye Funong () on 22 August 1927 in Shanghai, with his ancestral home in Huiyang, Guangdong. He was the first of nine children of the famous general Ye Ting and his wife Li Xiuwen, who both died in a plane crash in 1946. His siblings included Ye Zhengming (, 1931–2003), Ye Huaming (, born 1935), Ye Jianmei (, 1937–1993), Ye Yangmei (, 1936–1946), Ye Zhengguang (, born 1939), and Ye Qiguang (born 1942). In 1947, Ye attended a Russian-language school in northeastern China founded by the Northeast Democratic United Army. He joined the Chinese Communist Party in the following year. He graduated from Moscow Aviation Institute in 1955, where he majored in aircraft production. In August 1956, China established its first aircraft design office at Shenyang Aircraft Corporation, with Xu Shunshou as director. Ye Zhengda and Huang Zhiqian were appointed deputy directors. He participated in the design of China's first trainer jet, the Shenyang JJ-1. He later served as deputy dean of the Six Research Institute of the PRC Ministry of National Defense, deputy director of Defense Industry of the State Council of the People's Republic of China, deputy director of the Science and Technology Committee of the Commission for Science, Technology and Industry for National Defense, and director of the 2nd and 3rd Chinese Society of Aeronautics and Astronautics. He was awarded the military rank of lieutenant general (zhongjiang) in 1988. He retired in 1998. On December 14, 2017, he died in Beijing. Personal life Ye Zhengda married Ren Yue (), an actress of the August First Film Studio, in Moscow. Awards Special Prize of the National Prize for Progress in Science and Technology Second Prize of the National Prize for Progress in Science and Technology First Prize for Military Scientific Research Achievements of the People's Liberation Army (PLA) Second Prize of Military Scientific Research Achievements of the People's Liberation Army (PLA) 1998 - Victory Medal References 1927 births 2017 deaths Chinese aircraft designers Moscow Aviation Institute alumni Academic staff of the Northwestern Polytechnical University People's Liberation Army generals from Shanghai Engineers from Shanghai People's Liberation Army Air Force generals
```c++ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. path_to_url #include "fxjs/cjs_highlight.h" const JSConstSpec CJS_Highlight::ConstSpecs[] = { {"n", JSConstSpec::String, 0, "none"}, {"i", JSConstSpec::String, 0, "invert"}, {"p", JSConstSpec::String, 0, "push"}, {"o", JSConstSpec::String, 0, "outline"}}; int CJS_Highlight::ObjDefnID = -1; // static void CJS_Highlight::DefineJSObjects(CFXJS_Engine* pEngine) { ObjDefnID = pEngine->DefineObj("highlight", FXJSOBJTYPE_STATIC, nullptr, nullptr); DefineConsts(pEngine, ObjDefnID, ConstSpecs); } ```
"Think Like a Dinosaur" is a science fiction novelette written by James Patrick Kelly, originally published in the June 1995 issue of Asimov's Science Fiction magazine. Significance The story won the 1996 Hugo Award for Best Novelette, the Asimov's Reader Poll Award, and the SF Chronicle Award. It was also nominated for the Locus Poll Award and the Nebula Award. Since its original publication, "Think Like a Dinosaur" has been reprinted in several science fiction anthologies. In 2001, it was adapted as the "Think Like a Dinosaur" episode of The Outer Limits TV series. It was adapted into an audio play for Seeing Ear Theater. Plot The story postulates a transportation device supervised by a dinosaur-like race of aliens that can transmit an exact copy of a person's body to distant planets. The original body is disintegrated once reception at the destination is confirmed. The fictional race, nicknamed "dinos", looks down on humans for being scared of this process, making fun of them for being "weepy". In the story, a woman is teleported to an alien planet, but the original is not disintegrated because reception cannot be confirmed at the time. Reception is later confirmed, and the original, not surprisingly, declines to "balance the equation" by re-entering the scanning and disintegrating device and attempts to escape. This creates an ethical quandary that is viewed quite differently by the cold-blooded aliens who provided the teleportation technology, and their warm-blooded human associates. The story concludes with the narrator, a human intern working on the space station housing the device, agreeing with the dinos' philosophy and murdering the woman to balance the equation. Publication history "Think Like a Dinosaur" was originally published in the June 1995 issue of Asimov's Science Fiction magazine. It was subsequently reprinted. Anthologies Year's Best SF (1996, edited by David G. Hartwell) The Year's Best Science Fiction: Thirteenth Annual Collection (1996, edited by Gardner Dozois) Nebula Awards 31 (1997, edited by Pamela Sargent) The Hard SF Renaissance (2002, edited by David G. Hartwell and Kathryn Cramer) Collections Think Like a Dinosaur and Other Stories by James Patrick Kelley (1997) References External links 1995 short stories Short stories by James Patrick Kelly Hugo Award for Best Novelette winning works Works originally published in Asimov's Science Fiction Novels about dinosaurs
```scss /* ========================================================================== Association ========================================================================== */ .container-carbon_fields_container_word_settings { min-width: 0; max-width: 100%; width: 100%; } .cf-container .cf-field { max-width: 100%; } .cf-association__bar { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; flex-direction: row; border-color: $wp-color-gray-light-500; border-style: solid; border-width: 1px; .cf-search-input { flex: 1 1 auto; } .cf-search-input__inner { border: 0; box-shadow: none; &:focus { border-color: none; box-shadow: none; outline: none; } } &:focus-within { border-color: #5b9dd9; box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 ); outline: 2px solid transparent; } } .cf-association__counter { font-size: 12px; color: $wp-color-dark-gray; pointer-events: none; margin-right: 10px; margin-left: 5px; } .cf-association__spinner { float: none; margin: 0; margin-left: 5px; } .cf-association__cols { background: #fff; position: relative; z-index: 0; display: flex; border-width: 0 1px 1px; border-style: solid; border-color: $wp-color-gray-light-500; &::before { position: absolute; top: 0; left: 50%; width: 1px; height: 100%; background-color: $wp-color-gray-light-500; content: ''; } } .cf-association__col { width: 50%; max-height: 160px; overflow-y: auto; &.ui-sortable .cf-association__option-title { white-space: nowrap; text-overflow: ellipsis; } .edit-post-sidebar .cf-association__cols & { width: 100%; &:first-child { border-bottom: 3px solid $wp-color-dark-gray; } } } .cf-association__option { display: flex; align-items: center; padding: 4px 8px; height: 32px; box-sizing: border-box; &--selected { background-color: $wp-color-gray-light-100; } & + & { border-top: 1px solid $wp-color-gray-light-500; } &.ui-sortable-helper { border-top: 0; background-color: $wp-color-gray-light-100; } } .cf-association__option-thumb { flex: none; display: block; width: 24px; height: 24px; margin-right: 8px; } .cf-association__option-content { display: flex; align-items: center; justify-content: space-between; flex: 1; min-width: 0; margin-right: 8px; } .cf-association__option-title { flex: 1; position: relative; margin-right: $size-base; .cf-association__option--selected & { color: $wp-color-dark-silver-gray; } } .cf-association__option-title-inner { position: absolute; top: 0; left: 0; width: 100%; font-size: $wp-font-size; line-height: $wp-line-height; color: $wp-color-base-gray; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; transform: translateY(-50%); } .cf-association__option-type { font-size: 9px; line-height: 1; text-transform: uppercase; color: $wp-color-dark-silver-gray; .edit-post-sidebar .cf-association__col & { display: none; } } .cf-association__option-actions { display: flex; align-items: center; justify-content: space-between; button { margin-left: 8px; } } .cf-association__option-sort { margin-right: 4px; color: $wp-color-dark-silver-gray; cursor: move; } .cf-association__option-action { padding: 0; border: 0; outline: none; color: $wp-color-dark-silver-gray; transition: color $transition-base; cursor: pointer; background: transparent; &:focus { color: $wp-color-dark-silver-gray; box-shadow: none; } &:hover { color: $wp-color-dark-gray; } } ```
The 2012 Ju-Jitsu World Championship were the 11th edition of the Ju-Jitsu World Championships, and were held in Vienna, Austria from November 30 to December 2, 2012. Schedule 30.11.2012 – Men's and Women's Fighting System, Men's and Women's Jiu-Jitsu (ne-waza), Women's Duo System – Classic 01.12.2012 – Men's and Women's Fighting System, Men's Duo System – Classic 02.12.2012 – Men's and Women's Fighting System, Men's and Women's Jiu-Jitsu (ne-waza), Mixed Duo System – Classic European Ju-Jitsu Fighting System Men's events Women's events Duo System Duo Classic events Brazilian Jiu-Jitsu Men's events Women's events Links References External links Official results (PDF)
Francisco Tenamaztle (fl. 1540s–1550s), also Tenamaxtlan, Tenamaxtli or Tenamaxtle, was a leader of the Caxcan indigenous peoples in Mexico during the Mixtón War of 1540–1542. He was later put on trial in Spain. With the support of Bartolomé de las Casas he defended the justice of his cause by appealing to King Carlos I. Background The first contact of the Caxcan and other indigenous peoples of northwestern Mexico with the Spanish, was in 1529 when Nuño Beltrán de Guzmán set forth from Mexico City with 300–400 Spaniards and 5,000 to 8,000 Aztec and Tlaxcaltec allies on a march through the future states of Nayarit, Jalisco, Durango, Sinaloa, and Zacatecas. Over a six-year period Guzmán conducted frequent violent slave raids throughout Northern Mexico, enslaving thousands of natives. Guzmán and his lieutenants founded towns and Spanish settlements in the region, called Nueva Galicia, including Guadalajara, the first temporary site of which was at Tenamaztle’s home of Nochistlán, Zacatecas. The Spaniards encountered increased resistance as they moved further from the complex hierarchical societies of Central Mexico and attempted to force Indians into servitude through the encomienda system. Tenamaztle was baptized a Catholic sometime after Guzmán’s expedition and given the Christian name Francisco. He became "Lord Tlatoani of Nochistlan," an urban center and region in the southern part of Zacatecas. The Caxcan Indians are often considered part of the Chichimeca, a generic term used by the Spaniards and Aztecs for all the nomadic and semi-nomadic Native Americans living in the deserts of northern Mexico. However, the Caxcanes seem to have been sedentary, depending upon agriculture for their livelihood and living in permanent towns and settlements. They were, perhaps, the most northerly of the agricultural, town-and-city dwelling peoples of interior Mexico. Presumably at the same time as his baptism, Tenamaztle also swore allegiance to the Spanish crown and was confirmed in his position and any property he owned. Spanish rule, however, was oppressive and in mid-1540 the Caxcanes and their allies, the Zacatecos and possibly other Chichimeca tribes, revolted. The command structure of the Caxcanes is unknown but the most prominent leader who emerged was Tenamaztle. The Mixtón War The spark which set off the Mixtón War was apparently the arrest of 18 rebellious Indian leaders and the hanging of nine of them in mid 1540. Later in the same year the Indians rose up to kill the encomendero Juan de Arze. Spanish authorities also became aware that the Indians were participating in "devilish" dances. After killing two Catholic priests, many Indians fled the encomiendas and took refuge in the mountains, especially on the hill fortress of Mixtón. Acting Governor Cristóbal de Oñate led a Spanish and Indian force to quell the rebellion. The Caxcanes killed a peace delegation of one priest and ten Spanish soldiers. Oñate attempted to storm Mixtón, but the Indians on the summit repelled his attack. Oñate then requested reinforcements from the capital, Mexico City. The Viceroy Antonio de Mendoza called upon the experienced conquistador Pedro de Alvarado to assist in putting down the revolt. Alvarado declined to await reinforcements and attacked Mixton in June 1541 with four hundred Spaniards and an unknown number of Indian allies. He was met there by an Indian army, estimated by the Spanish to number 15,000, under Tenamaztle and Don Diego, a Zacateco. The first attack of the Spanish was repulsed with ten Spaniards and many Indian allies killed. Subsequent attacks by Alvarado were also unsuccessful and on June 24 he was crushed when a horse fell on him. He subsequently died on July 4. Emboldened, the Indians led by Tenamaztle attacked Guadalajara in September but were repulsed. The Indian army retired to Nochistlan and other strongpoints. The Spanish authorities were now thoroughly alarmed and feared that the revolt would spread. They assembled a force of 450 Spaniards and 30 to 60 thousand Aztec, Tlaxcalan and other Indians and under Viceroy Mendoza invaded the land of the Caxcanes. With his overwhelming force, Mendoza reduced the Indian strongholds one-by-one in a war of no quarter. On November 9, 1541, he captured the city of Nochistlan and Tenamaztle—but the Indian leader later escaped. In early 1542 the stronghold of Mixton fell to the Spaniards and the rebellion was over. The aftermath of the Caxcan's defeat was that "thousands were dragged off in chains to the mines, and many of the survivors (mostly women and children) were transported from their homelands to work on Spanish farms and haciendas. By the viceroy's order men, women and children were seized and executed, some by cannon fire, some torn apart by dogs, and others stabbed. The reports of the excessive violence against civilian Indians caused the Council of the Indies to undertake a secret investigation into the conduct of the viceroy. With the defeat, Tenamaztle, Guaxicar, another leader, and their followers, retreated into the mountains of Nayarit where they lived in hiding for nine years. This area, primarily occupied by the Cora people, did not come under the complete control of the Spanish until 1722, the last bastion of Indian opposition to Spanish rule in Nueva Galicia. In 1551, Tenamaztle voluntarily surrendered to the Bishop of Nueva Galicia who brought him to Mexico City. After an investigation, on August 12, 1552 Spanish authorities established his identity as the leader of the Caxcanes in the Mixton War and on November 17 he was ordered to be sent for trial to Spain. Trial in Spain In Spain, Tenamaztle was imprisoned in Valladolid and later took up residence in a Dominican monastery. Here he met Bartolomé de las Casas who helped him plead his case. The wheels of justice rolled slowly and it was July 1, 1555 before he had an opportunity to present his case to the King and the Council of the Indies. Tenamaztle’s strategy was to (1) establish that he was the rightful tlatoani of Nochistlan; (2) demonstrate that the Caxcan had received the Spanish in peace and that he should have all the rights of a vassal of the King of Spain; (3) accuse Nuño de Guzmán, Cristóbal de Oñate and Miguel de Ibarra of exploiting and murdering Indians; and, (4) declare that the war of the Caxcanes was "natural justice" because of the abuses of the Spaniards. He petitioned that his lands, wife, and children be returned to him. Tenamaztle asked the king to consider "the unparalleled wrongs and evils that the Caxcanes had endured at the hands of the Spanish" and said that the objective of the Indians was not to rebel but to "flee the inhuman cruelty to which they were subjected." The trial proceeded without decision for more than one year. The last known document related to the trial is dated August 7, 1556. Nothing more is known of the disposition of the case or of Tenamaztle. He probably died in Spain. See also Statue of Francisco Tenamaztle, Guadalajara, Jalisco, Mexico References Tenamaztle Indigenous Mexicans Tenamaztle Tenamaztle Tenamaztle Tenamaztle History of Durango History of Jalisco History of Nayarit History of Sinaloa History of Zacatecas 1540s in Mexico
```c /* * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * * FFmpeg 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 * * You should have received a copy of the GNU Lesser General Public * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include <inttypes.h> #include "softfloat.h" #include "common.h" #include "log.h" #ifdef TEST #include <stdio.h> static const SoftFloat FLOAT_0_017776489257 = {0x1234, 12}; static const SoftFloat FLOAT_1374_40625 = {0xabcd, 25}; static const SoftFloat FLOAT_0_1249694824218 = {0xFFF, 15}; int main(void){ SoftFloat one= av_int2sf(1, 0); SoftFloat sf1, sf2, sf3; double d1, d2, d3; int i, j; av_log_set_level(AV_LOG_DEBUG); d1= 1; for(i= 0; i<10; i++){ d1= 1/(d1+1); } printf("test1 double=%d\n", (int)(d1 * (1<<24))); sf1= one; for(i= 0; i<10; i++){ sf1= av_div_sf(one, av_normalize_sf(av_add_sf(one, sf1))); } printf("test1 sf =%d\n", av_sf2int(sf1, 24)); for(i= 0; i<100; i++){ START_TIMER d1= i; d2= i/100.0; for(j= 0; j<1000; j++){ d1= (d1+1)*d2; } STOP_TIMER("float add mul") } printf("test2 double=%d\n", (int)(d1 * (1<<24))); for(i= 0; i<100; i++){ START_TIMER sf1= av_int2sf(i, 0); sf2= av_div_sf(av_int2sf(i, 2), av_int2sf(200, 3)); for(j= 0; j<1000; j++){ sf1= av_mul_sf(av_add_sf(sf1, one),sf2); } STOP_TIMER("softfloat add mul") } printf("test2 sf =%d (%d %d)\n", av_sf2int(sf1, 24), sf1.exp, sf1.mant); d1 = 0.0177764893; d2 = 1374.40625; d3 = 0.1249694824; d2 += d1; d3 += d2; printf("test3 double: %.10lf\n", d3); sf1 = FLOAT_0_017776489257; sf2 = FLOAT_1374_40625; sf3 = FLOAT_0_1249694824218; sf2 = av_add_sf(sf1, sf2); sf3 = av_add_sf(sf3, sf2); printf("test3 softfloat: %.10lf (0x%08x %d)\n", (double)av_sf2double(sf3), sf3.mant, sf3.exp); sf1 = av_int2sf(0xFFFFFFF0, 0); printf("test4 softfloat: %.10lf (0x%08x %d)\n", (double)av_sf2double(sf1), sf1.mant, sf1.exp); sf1 = av_int2sf(0x00000010, 0); printf("test4 softfloat: %.10lf (0x%08x %d)\n", (double)av_sf2double(sf1), sf1.mant, sf1.exp); sf1 = av_int2sf(0x1FFFFFFF, 0); printf("test4 softfloat: %.10lf (0x%08x %d)\n", (double)av_sf2double(sf1), sf1.mant, sf1.exp); sf1 = av_int2sf(0xE0000001, 0); printf("test4 softfloat: %.10lf (0x%08x %d)\n", (double)av_sf2double(sf1), sf1.mant, sf1.exp); sf1 = (SoftFloat){ 0x20000000, MIN_EXP }; sf1 = av_mul_sf(sf1, sf1); printf("test5 softfloat: %.10lf (0x%08x %d)\n", (double)av_sf2double(sf1), sf1.mant, sf1.exp); sf1 = (SoftFloat){ 0x20000000, MIN_EXP }; sf2 = (SoftFloat){ 0x20000000, MAX_EXP }; i = av_cmp_sf(sf1, sf2); j = av_cmp_sf(sf2, sf1); sf1 = av_div_sf(sf1, sf2); printf("test6 softfloat: %.10lf (0x%08x %d) %d %d\n", (double)av_sf2double(sf1), sf1.mant, sf1.exp, i, j); for(i= -50; i<50; i++) { sf1= av_int2sf(i, 0); for(j= -50; j<50; j++) { int c; sf2= av_int2sf(j, 0); c = av_cmp_sf(sf1, sf2); if (FFDIFFSIGN(i,j) != c && (FFDIFFSIGN(i,j)^c)<0) { printf("av_cmp_sf failed at %d %d as %X\n", i, j, c); } c = av_gt_sf(sf1, sf2); if ((i>j) != c) { printf("av_gt_sf failed at %d %d as %X\n", i, j, c); } } sf1 = av_int2sf(1, i); for(j = -50; j < 50; j++) { int c; sf2 = av_int2sf(1, j); c = av_cmp_sf(sf2, sf1); if (FFDIFFSIGN(i,j) != c && (FFDIFFSIGN(i,j)^c) < 0) { printf("av_cmp_sf failed2 at %d %d as %X\n", i, j, c); } c = av_gt_sf(sf1, sf2); if ((i<j) != c) { printf("av_gt_sf failed2 at %d %d as %X\n", i, j, c); } } } for(i= 0; i<4*36; i++){ int s, c; double errs, errc; av_sincos_sf(i*(1ULL<<32)/36/4, &s, &c); errs = (double)s/ (1<<30) - sin(i*M_PI/36); errc = (double)c/ (1<<30) - cos(i*M_PI/36); if (fabs(errs) > 0.00000002 || fabs(errc) >0.001) { printf("sincos FAIL %d %f %f %f %f\n", i, (float)s/ (1<<30), (float)c/ (1<<30), sin(i*M_PI/36), cos(i*M_PI/36)); } } return 0; } #endif ```
Ashok Tapiram Patil, also known as Nana Patil, is an Indian politician and a member of the 16th Lok Sabha. He represents the Jalgaon constituency of Maharashtra and is a member of the Bharatiya Janata Party (BJP) political party. Political career 1990-95 & 95-97: Corporator Parola Nagarpalika (two terms) 1998-2000: President Parola Nagarpalika 2001-06: President Parola Nagarpalika 2002-05: Chairman A.P.M.C Parola, District. Jalgaon 31 August 2009: member, Committee on Defence, Consultative Committee, Ministry of Housing, Consultative Committee, Ministry of Urban Poverty Alleviation and Ministry of Tourism 16 May 2014: re-elected to 16th Lok Sabha (2nd term) 1 September 2014 onwards: member, Committee on Government Assurances; member, Standing Committee on Railways Special interests His interests include agriculture and defence affairs. References Living people 1961 births Bharatiya Janata Party politicians from Maharashtra India MPs 2009–2014 People from Jalgaon Marathi politicians Lok Sabha members from Maharashtra India MPs 2014–2019
```sqlpl -- -- -- path_to_url -- -- Unless required by applicable law or agreed to in writing, software -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ALTER TABLE "DnsRefreshRequest" RENAME COLUMN process_time TO last_process_time; CREATE INDEX IDXfdk2xpil2x1gh0omt84k2y3o1 ON "DnsRefreshRequest" (last_process_time); DROP INDEX IDX3i7i2ktts9d7lcjbs34h0pvwo; ```
Ojcowa Wola () is a village in the administrative district of Gmina Młynary, within Elbląg County, Warmian-Masurian Voivodeship, in northern Poland. It lies approximately south of Młynary, east of Elbląg, and north-west of the regional capital Olsztyn. References Ojcowa Wola
```glsl struct Struct_vec4 { float4 m0; }; struct VertexOut { Struct_vec4 m0; Struct_vec4 m1; }; cbuffer UBO : register(b0) { Struct_vec4 ubo_binding_0_m0 : packoffset(c0); Struct_vec4 ubo_binding_0_m1 : packoffset(c1); }; static float4 gl_Position; static VertexOut output_location_0; static Struct_vec4 output_location_2; static Struct_vec4 output_location_3; struct SPIRV_Cross_Output { Struct_vec4 VertexOut_m0 : TEXCOORD0; Struct_vec4 VertexOut_m1 : TEXCOORD1; Struct_vec4 output_location_2 : TEXCOORD2; Struct_vec4 output_location_3 : TEXCOORD3; float4 gl_Position : SV_Position; }; void vert_main() { Struct_vec4 c; c.m0 = ubo_binding_0_m0.m0; Struct_vec4 b; b.m0 = ubo_binding_0_m1.m0; gl_Position = c.m0 + b.m0; output_location_0.m0 = c; output_location_0.m1 = b; output_location_2 = c; output_location_3 = b; } SPIRV_Cross_Output main() { vert_main(); SPIRV_Cross_Output stage_output; stage_output.gl_Position = gl_Position; stage_output.VertexOut_m0 = output_location_0.m0; stage_output.VertexOut_m1 = output_location_0.m1; stage_output.output_location_2 = output_location_2; stage_output.output_location_3 = output_location_3; return stage_output; } ```
```yaml ##################################################################### # @CCOSTAN # Original Repo : path_to_url ## Plays the number of cuckoos per hour and 1 on the half hour. # More Info and Video: path_to_url ##################################################################### - alias: Cuckoo Clock id: 33dcd8e2-e87c-4d18-82bc-c7f9b53a1624 mode: restart trigger: - platform: time_pattern minutes: 0 - platform: time_pattern minutes: 30 condition: - condition: time after: '09:29:00' before: '21:30:00' - condition: or #Either we are home or Guest_Mode is on. conditions: - condition: state entity_id: group.family state: 'home' - condition: state entity_id: input_boolean.guest_mode state: 'on' action: - service: script.amp_settings data: media_player: 'media_player.livingroomcc' volume_level: 0.22 - wait_template: "{{ not is_state('media_player.livingroomCC', 'playing') }}" - service: media_player.play_media data: entity_id: > {% if states.group.bed.state == 'off' %} media_player.livingroomCC {% else %} media_player.alarm_clock, media_player.bedroom_alarm_panel {% endif %} media_content_id: > {% if now().strftime("%M")|int == 30 %} path_to_url {% else %} path_to_url{{now().strftime("%I")}}.wav {% endif %} media_content_type: audio/mp4 ```
```smalltalk using System; using System.Collections.Immutable; using System.Composition; using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CodeActions; using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; using Roslynator.CSharp; using Roslynator.CSharp.Syntax; using static Microsoft.CodeAnalysis.CSharp.SyntaxFactory; using static Roslynator.CSharp.CSharpFactory; namespace Roslynator.CodeAnalysis.CSharp; [ExportCodeFixProvider(LanguageNames.CSharp, Name = nameof(UsePatternMatchingCodeFixProvider))] [Shared] public sealed class UsePatternMatchingCodeFixProvider : BaseCodeFixProvider { private const string Title = "Use pattern matching"; public override ImmutableArray<string> FixableDiagnosticIds { get { return ImmutableArray.Create(DiagnosticIdentifiers.UsePatternMatching); } } public override async Task RegisterCodeFixesAsync(CodeFixContext context) { SyntaxNode root = await context.GetSyntaxRootAsync().ConfigureAwait(false); if (!TryFindFirstAncestorOrSelf(root, context.Span, out SyntaxNode node, predicate: f => f.IsKind(SyntaxKind.SwitchStatement, SyntaxKind.IfStatement))) return; Document document = context.Document; Diagnostic diagnostic = context.Diagnostics[0]; switch (node) { case SwitchStatementSyntax switchStatement: { CodeAction codeAction = CodeAction.Create( Title, ct => UsePatternMatchingAsync(document, switchStatement, ct), GetEquivalenceKey(diagnostic)); context.RegisterCodeFix(codeAction, diagnostic); break; } case IfStatementSyntax ifStatement: { CodeAction codeAction = CodeAction.Create( Title, ct => UsePatternMatchingAsync(document, ifStatement, ct), GetEquivalenceKey(diagnostic)); context.RegisterCodeFix(codeAction, diagnostic); break; } } } private static Task<Document> UsePatternMatchingAsync( Document document, SwitchStatementSyntax switchStatement, CancellationToken cancellationToken) { SyntaxList<SwitchSectionSyntax> newSections = switchStatement.Sections.Select(section => { if (section.Labels.Single() is not CaseSwitchLabelSyntax label) return section; SyntaxList<StatementSyntax> statements = section.Statements; StatementSyntax statement = statements[0]; if (statement is BlockSyntax block) statement = block.Statements.FirstOrDefault(); SingleLocalDeclarationStatementInfo localInfo = SyntaxInfo.SingleLocalDeclarationStatementInfo((LocalDeclarationStatementSyntax)statement); var castExpression = (CastExpressionSyntax)localInfo.Value; CasePatternSwitchLabelSyntax newLabel = CasePatternSwitchLabel( DeclarationPattern( castExpression.Type, SingleVariableDesignation(localInfo.Identifier)), label.ColonToken); SwitchSectionSyntax newSection = section.RemoveStatement(localInfo.Statement); newSection = newSection.WithLabels(newSection.Labels.ReplaceAt(0, newLabel)); return newSection.WithFormatterAnnotation(); }) .ToSyntaxList(); ExpressionSyntax expression = switchStatement.Expression; ExpressionSyntax newExpression = expression; LocalDeclarationStatementSyntax localDeclaration = null; if (expression.IsKind(SyntaxKind.InvocationExpression)) { SimpleMemberInvocationExpressionInfo invocationInfo = SyntaxInfo.SimpleMemberInvocationExpressionInfo(expression); newExpression = invocationInfo.Expression; } else { localDeclaration = (LocalDeclarationStatementSyntax)switchStatement.PreviousStatement(); SingleLocalDeclarationStatementInfo localInfo = SyntaxInfo.SingleLocalDeclarationStatementInfo(localDeclaration); SimpleMemberInvocationExpressionInfo invocationInfo = SyntaxInfo.SimpleMemberInvocationExpressionInfo(localInfo.Value); newExpression = invocationInfo.Expression; } SwitchStatementSyntax newSwitchStatement = switchStatement .WithExpression(newExpression.WithTriviaFrom(expression)) .WithSections(newSections); if (localDeclaration is not null) { StatementListInfo statementsInfo = SyntaxInfo.StatementListInfo(switchStatement); newSwitchStatement = newSwitchStatement.WithLeadingTrivia(localDeclaration.GetLeadingTrivia()); SyntaxList<StatementSyntax> newStatements = statementsInfo.Statements .Replace(switchStatement, newSwitchStatement) .RemoveAt(statementsInfo.IndexOf(localDeclaration)); return document.ReplaceStatementsAsync(statementsInfo, newStatements, cancellationToken); } else { return document.ReplaceNodeAsync(switchStatement, newSwitchStatement, cancellationToken); } } private static async Task<Document> UsePatternMatchingAsync( Document document, IfStatementSyntax ifStatement, CancellationToken cancellationToken) { SemanticModel semanticModel = await document.GetSemanticModelAsync(cancellationToken).ConfigureAwait(false); IsKindExpressionInfo isKindExpression = IsKindExpressionInfo.Create(ifStatement.Condition, semanticModel, cancellationToken: cancellationToken); switch (isKindExpression.Style) { case IsKindExpressionStyle.IsKind: case IsKindExpressionStyle.IsKindConditional: case IsKindExpressionStyle.Kind: case IsKindExpressionStyle.KindConditional: { var block = (BlockSyntax)ifStatement.Statement; IsPatternExpressionSyntax isPatternExpression = CreateIsPatternExpression(block.Statements[0]); BlockSyntax newBlock = block.WithStatements(block.Statements.RemoveAt(0)); IfStatementSyntax newIfStatement = ifStatement.Update( ifStatement.IfKeyword, ifStatement.OpenParenToken, isPatternExpression, ifStatement.CloseParenToken, newBlock, ifStatement.Else); newIfStatement = newIfStatement.WithFormatterAnnotation(); return await document.ReplaceNodeAsync(ifStatement, newIfStatement, cancellationToken).ConfigureAwait(false); } case IsKindExpressionStyle.NotIsKind: case IsKindExpressionStyle.NotIsKindConditional: case IsKindExpressionStyle.NotKind: case IsKindExpressionStyle.NotKindConditional: { StatementListInfo statementsInfo = SyntaxInfo.StatementListInfo(ifStatement); SyntaxList<StatementSyntax> statements = statementsInfo.Statements; int index = statements.IndexOf(ifStatement); IsPatternExpressionSyntax isPatternExpression = CreateIsPatternExpression(statements[index + 1]); IfStatementSyntax newIfStatement = ifStatement.WithCondition(LogicalNotExpression(isPatternExpression.Parenthesize()).WithTriviaFrom(ifStatement.Condition)); SyntaxList<StatementSyntax> newStatements = statements .ReplaceAt(index, newIfStatement) .RemoveAt(index + 1); return await document.ReplaceStatementsAsync(statementsInfo, newStatements, cancellationToken).ConfigureAwait(false); } default: { throw new InvalidOperationException(); } } IsPatternExpressionSyntax CreateIsPatternExpression(StatementSyntax statement) { SingleLocalDeclarationStatementInfo localInfo = SyntaxInfo.SingleLocalDeclarationStatementInfo((LocalDeclarationStatementSyntax)statement); var castExpression = (CastExpressionSyntax)localInfo.Value; return IsPatternExpression( isKindExpression.Expression, DeclarationPattern(castExpression.Type, SingleVariableDesignation(localInfo.Identifier))); } } } ```
```go package v1_18 //nolint import ( "xorm.io/xorm" ) // AddConfidentialColumnToOAuth2ApplicationTable: add ConfidentialClient column, setting existing rows to true func AddConfidentialClientColumnToOAuth2ApplicationTable(x *xorm.Engine) error { type oauth2Application struct { ID int64 ConfidentialClient bool `xorm:"NOT NULL DEFAULT TRUE"` } return x.Sync(new(oauth2Application)) } ```
```javascript var child_process = require("child_process"); var { rescript_exe } = require("#cli/bin_path"); child_process.execSync(rescript_exe, { cwd: __dirname }); ```
```javascript import EverythingPodcastPanel from './Everything'; import FollowSuggestionsPodcastPanel from './FollowSuggestions'; import PinsPodcastPanel from './Pins'; import TodayPodcastPanel from './Today'; export { EverythingPodcastPanel, FollowSuggestionsPodcastPanel, PinsPodcastPanel, TodayPodcastPanel, }; ```
```html <textarea>0123456789abcdefghijklmnopqrstuvwxyz</textarea> ```
This is a list of Swedish television related events from 2009. Events 27 March - Strongman Magnus Samuelsson and his partner Annika Sjöö win the fourth season of Let's Dance. 12 June - 30-year-old magician Charlie Caper wins the third season of Talang. 11 December - Erik Grönwall wins the sixth season of Idol. Debuts Television shows 2000s Idol (2004-2011, 2013–present) Let's Dance (2006–present) Talang (2007-2011, 2014–present) 1–24 December - Superhjältejul Ending this year Births Deaths See also 2009 in Sweden References
```javascript declare module 'history' { declare type Action = 'PUSH' | 'REPLACE' | 'POP'; declare type Location = { pathname: string, search?: string, hash?: string, state?: Object, key?: string }; declare type ListenCallback = (location: Location, action?: Action) => void; declare type BlockCallback = (location: Location, action?: Action) => string; declare type Unsubscribe = () => void; declare class History { length: number; location: Location; action: Action; listen(callback: ListenCallback): Unsubscribe; push(path: string, state?: Object): void; push(location: Location): void; replace(path: string, state?: Object): void; replace(location: Location): void; go(n: number): void; goBack(): void; goForward(): void; block(message: string): void; block(callback: BlockCallback): Unsubscribe; } declare class MemoryHistory extends History { index: number; entries: Array<string>; canGo(n: number): void; } declare type GetUserConfirmation = ( message: string, callback: (continueTransition: boolean) => void ) => void; declare type BrowserHistoryOptions = {| basename?: string, forceRefresh?: boolean, keyLength?: number, getUserConfirmation?: GetUserConfirmation |}; declare function createBrowserHistory( options?: BrowserHistoryOptions ): History; declare type MemoryHistoryOptions = {| initialEntries?: Array<string>, initialIndex?: number, keyLength?: number, getUserConfirmation?: GetUserConfirmation |}; declare function createMemoryHistory( options?: MemoryHistoryOptions ): MemoryHistory; declare type HashType = 'slash' | 'noslash' | 'hashbang'; declare type HashHistoryOptions = {| basename?: string, hashType?: HashType, getUserConfirmation?: GetUserConfirmation |}; declare function createHashHistory(options?: HashHistoryOptions): History; declare function createLocation( path: string | Location, state?: any, key?: string, currentLocation?: Location ): Location; declare function locationsAreEqual(a: Location, b: Location): boolean; declare function parsePath(path: string): Location; declare function createPath(location: Location): string; } ```
The Battle of Speyerbach took place on 15 November 1703 during the War of the Spanish Succession. A French army besieging Landau surprised and defeated a German relief army near Speyer. Prelude In mid-October 1703, the Allied armies prepared to go into winter camp along the Moselle, when Tallard by surprise closed in on Landau and started the siege on 17 October. On 28 October, the Allies ordered Crown Prince Frederick of Hesse-Kassel, the future King Frederick I of Sweden, to move south to lift the siege of Landau. Hesse-Kassel would have to cooperate with the Count John Ernst of Nassau-Weilburg, who was on the right bank of the Rhine with 24 battalions and 18 squadrons. Both armies met on 13 November near Speyer and made camp south of the brook Speyerbach, where Nassau-Weilburg and Hesse-Kassel waited for reinforcements to march to Landau on 16 November. Tallard had, meanwhile, decided not to wait for the enemy at Landau but to march towards them and deliver battle. He ordered troops under Armand, marquis de Pracomtal at Saarbrücken, to join him at Essingen. Battle The German troops were not expecting a French attack, and their camp was not planned for defence. Furthermore, the command, including both Hesse-Kassel and Nassau-Weilburg, was gathered in Speyer on 15 November, to celebrate the Emperor's name day. At 07:00, the united French armies marched towards Speyer, where they arrived at 12:00 and deployed until 13:00. The German troops, in absence of their leaders reacted slowly and in confusion. General Vehlen did his best to position the army, but large gaps were left in the left wing. Tallard ordered 14 squadrons of his right wing to attack. This attack failed to destroy the allied left wing but succeeded in passing through the gaps in their line. At about that moment, Nassau-Weilburg arrived on the field and intervened with his cavalry. That led to a defeat of the French cavalry. Instead of disengaging his troops and reforming a line, Nassau-Weilburg pursued the French with his Palatine cavalry on a terrain which was not suitable for horses. At about 14:00, the whole French army attacked. On the left wing the French cavalry was decisively beaten by the allied cavalry. The French lost 19 standards and Pracomtal was killed. In the center the allies held, but on their right wing the French were successful. On the utter right six battalions started by driving Vehlen's cavalry back. It lost its cohesion and fled. The French infantry attacked the Palatine infantry and this fled too. The French then started to envelop the enemy centre. That caused an enormous number of casualties amongst these troops. The remaining German troops retreated in good order, and the battle ended when they started to recross the Speyerbach at about 17:00. The French did not hinder them in that operation. Aftermath Tallard had achieved one of the largest French victories of the war. Landau surrendered the same day. The French victory has been overshadowed in history by the colossal defeat at the Battle of Blenheim nine months later. References Sources The Spanish Succession Die Schlacht bei Speyer (German) Speyerbach Speyerbach Speyerbach Speyerbach 1703 in Europe Speyerbach Speyerbach
Sandro da Silva Mendonça (born 1 October 1983 in Brazil), or simply Sandro is a Brazilian football player who plays as an attacking midfielder. Club career Kedah On 9 April 2015 Sandro signed a contract with Malaysian side club Kedah. He made 27 appearances and 17 goals during his season debut. Career statistics Club Honours Club Kedah FA Malaysia Premier League : 2015 Malaysia FA Cup : 2017 Malaysia Cup : 2016 Malaysia Charity Shield : 2017 Individual PFAM Player of the Month: September 2015 References External links Guardian Stats Centre 1983 births Living people Sarawak United FC players Paraná Clube players Avaí FC players Coritiba Foot Ball Club players Gençlerbirliği S.K. footballers Hacettepe S.K. footballers Sivasspor footballers Daegu FC players Brazilian men's footballers Brazilian expatriate men's footballers Brazilian expatriate sportspeople in Turkey Brazilian expatriate sportspeople in South Korea Expatriate men's footballers in Turkey Expatriate men's footballers in South Korea Süper Lig players K League 1 players Malaysia Super League players Malaysia Premier League players Men's association football midfielders Footballers from Fortaleza
Anthony Dawson is an Australian-American former professional tennis player. Dawson, born and raised in Sydney, played collegiate tennis in the United States for Oklahoma City University during the early 1970s. He featured twice in the singles main draw of the Australian Open and made the doubles second round of the 1972 Wimbledon Championships. In 1975 he had an upset win over Tom Gorman at a Houston WCT tournament. Now living in Texas, Dawson competes on the ITF senior's circuit as an American. References External links Year of birth missing (living people) Living people Australian male tennis players Tennis players from Sydney Australian emigrants to the United States Oklahoma City Stars men's tennis players Sportsmen from New South Wales
```smalltalk // The .NET Foundation licenses this file to you under the MIT license. #nullable enable using System.Reflection; namespace Microsoft.Extensions.Tools.Internal { internal class TestConsole : IConsole { public event ConsoleCancelEventHandler? CancelKeyPress; public event Action<ConsoleKeyInfo>? KeyPressed; private readonly TestOutputWriter _testWriter; public TextWriter Error { get; } public TextWriter Out { get; } public TextReader In { get; set; } = new StringReader(string.Empty); public bool IsInputRedirected { get; set; } = false; public bool IsOutputRedirected { get; } = false; public bool IsErrorRedirected { get; } = false; public ConsoleColor ForegroundColor { get; set; } public TestConsole(ITestOutputHelper output) { _testWriter = new TestOutputWriter(output); Error = _testWriter; Out = _testWriter; } public void Clear() { } public void PressKey(ConsoleKeyInfo key) { Assert.NotNull(KeyPressed); KeyPressed.Invoke(key); } public void PressCancelKey() { Assert.NotNull(CancelKeyPress); var ctor = typeof(ConsoleCancelEventArgs) .GetTypeInfo() .DeclaredConstructors .Single(c => c.GetParameters().First().ParameterType == typeof(ConsoleSpecialKey)); CancelKeyPress.Invoke(this, (ConsoleCancelEventArgs)ctor.Invoke([ConsoleSpecialKey.ControlC])); } public void ResetColor() { } public string GetOutput() { return _testWriter.GetOutput(); } public void ClearOutput() { _testWriter.ClearOutput(); } private class TestOutputWriter : TextWriter { private readonly ITestOutputHelper _output; private readonly StringBuilder _sb = new(); private readonly StringBuilder _currentOutput = new(); public TestOutputWriter(ITestOutputHelper output) { _output = output; } public override Encoding Encoding => Encoding.Unicode; public override void Write(char value) { if (value == '\r' || value == '\n') { if (_sb.Length > 0) { _output.WriteLine(_sb.ToString()); _sb.Clear(); } _currentOutput.Append(value); } else { _sb.Append(value); _currentOutput.Append(value); } } public string GetOutput() { return _currentOutput.ToString(); } public void ClearOutput() { _currentOutput.Clear(); } } } } ```
```qmake # Add project specific ProGuard rules here. # By default, the flags in this file are appended to flags specified # in /usr/local/Cellar/android-sdk/24.4.1/tools/proguard/proguard-android.txt # You can edit the include path and order by changing the proguardFiles # directive in build.gradle. # # For more details, see # path_to_url # Add any project specific keep options here: # If your project uses WebView with JS, uncomment the following # and specify the fully qualified class name to the JavaScript interface # class: #-keepclassmembers class fqcn.of.javascript.interface.for.webview { # public *; #} ```
```go package ext // ITunesFeedExtension is a set of extension // fields for RSS feeds. type ITunesFeedExtension struct { Author string `json:"author,omitempty"` Block string `json:"block,omitempty"` Categories []*ITunesCategory `json:"categories,omitempty"` Explicit string `json:"explicit,omitempty"` Keywords string `json:"keywords,omitempty"` Owner *ITunesOwner `json:"owner,omitempty"` Subtitle string `json:"subtitle,omitempty"` Summary string `json:"summary,omitempty"` Image string `json:"image,omitempty"` Complete string `json:"complete,omitempty"` NewFeedURL string `json:"newFeedUrl,omitempty"` Type string `json:"type,omitempty"` } // ITunesItemExtension is a set of extension // fields for RSS items. type ITunesItemExtension struct { Author string `json:"author,omitempty"` Block string `json:"block,omitempty"` Duration string `json:"duration,omitempty"` Explicit string `json:"explicit,omitempty"` Keywords string `json:"keywords,omitempty"` Subtitle string `json:"subtitle,omitempty"` Summary string `json:"summary,omitempty"` Image string `json:"image,omitempty"` IsClosedCaptioned string `json:"isClosedCaptioned,omitempty"` Episode string `json:"episode,omitempty"` Season string `json:"season,omitempty"` Order string `json:"order,omitempty"` EpisodeType string `json:"episodeType,omitempty"` } // ITunesCategory is a category element for itunes feeds. type ITunesCategory struct { Text string `json:"text,omitempty"` Subcategory *ITunesCategory `json:"subcategory,omitempty"` } // ITunesOwner is the owner of a particular itunes feed. type ITunesOwner struct { Email string `json:"email,omitempty"` Name string `json:"name,omitempty"` } // NewITunesFeedExtension creates an ITunesFeedExtension given an // extension map for the "itunes" key. func NewITunesFeedExtension(extensions map[string][]Extension) *ITunesFeedExtension { feed := &ITunesFeedExtension{} feed.Author = parseTextExtension("author", extensions) feed.Block = parseTextExtension("block", extensions) feed.Explicit = parseTextExtension("explicit", extensions) feed.Keywords = parseTextExtension("keywords", extensions) feed.Subtitle = parseTextExtension("subtitle", extensions) feed.Summary = parseTextExtension("summary", extensions) feed.Image = parseImage(extensions) feed.Complete = parseTextExtension("complete", extensions) feed.NewFeedURL = parseTextExtension("new-feed-url", extensions) feed.Categories = parseCategories(extensions) feed.Owner = parseOwner(extensions) feed.Type = parseTextExtension("type", extensions) return feed } // NewITunesItemExtension creates an ITunesItemExtension given an // extension map for the "itunes" key. func NewITunesItemExtension(extensions map[string][]Extension) *ITunesItemExtension { entry := &ITunesItemExtension{} entry.Author = parseTextExtension("author", extensions) entry.Block = parseTextExtension("block", extensions) entry.Duration = parseTextExtension("duration", extensions) entry.Explicit = parseTextExtension("explicit", extensions) entry.Subtitle = parseTextExtension("subtitle", extensions) entry.Summary = parseTextExtension("summary", extensions) entry.Keywords = parseTextExtension("keywords", extensions) entry.Image = parseImage(extensions) entry.IsClosedCaptioned = parseTextExtension("isClosedCaptioned", extensions) entry.Episode = parseTextExtension("episode", extensions) entry.Season = parseTextExtension("season", extensions) entry.Order = parseTextExtension("order", extensions) entry.EpisodeType = parseTextExtension("episodeType", extensions) return entry } func parseImage(extensions map[string][]Extension) (image string) { if extensions == nil { return } matches, ok := extensions["image"] if !ok || len(matches) == 0 { return } image = matches[0].Attrs["href"] return } func parseOwner(extensions map[string][]Extension) (owner *ITunesOwner) { if extensions == nil { return } matches, ok := extensions["owner"] if !ok || len(matches) == 0 { return } owner = &ITunesOwner{} if name, ok := matches[0].Children["name"]; ok { owner.Name = name[0].Value } if email, ok := matches[0].Children["email"]; ok { owner.Email = email[0].Value } return } func parseCategories(extensions map[string][]Extension) (categories []*ITunesCategory) { if extensions == nil { return } matches, ok := extensions["category"] if !ok || len(matches) == 0 { return } categories = []*ITunesCategory{} for _, cat := range matches { c := &ITunesCategory{} if text, ok := cat.Attrs["text"]; ok { c.Text = text } if subs, ok := cat.Children["category"]; ok { s := &ITunesCategory{} if text, ok := subs[0].Attrs["text"]; ok { s.Text = text } c.Subcategory = s } categories = append(categories, c) } return } ```
```java /* * * See the CONTRIBUTORS.txt file in the distribution for a * full listing of individual contributors. * * This program is free software: you can redistribute it and/or modify * published by the Free Software Foundation, either version 3 of the * * 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 * * along with this program. If not, see <path_to_url */ package org.openremote.agent.protocol.bluetooth.mesh.transport; import org.openremote.agent.protocol.bluetooth.mesh.ApplicationKey; import org.openremote.agent.protocol.bluetooth.mesh.opcodes.ApplicationMessageOpCodes; import org.openremote.agent.protocol.bluetooth.mesh.utils.SecureUtils; import java.nio.ByteBuffer; import java.nio.ByteOrder; import java.util.logging.Logger; import static org.openremote.agent.protocol.bluetooth.mesh.Scene.isValidSceneNumber; /** * To be used as a wrapper class when creating a SceneDelete message. */ public class SceneDelete extends GenericMessage { public static final Logger LOG = Logger.getLogger(SceneDelete.class.getName()); private static final int OP_CODE = ApplicationMessageOpCodes.SCENE_DELETE; private static final int SCENE_DELETE_PARAMS_LENGTH = 2; private int sceneNumber; /** * Constructs SceneDelete message. * * @param appKey {@link ApplicationKey} key for this message * @param sceneNumber Scene number of SceneDelete message * @throws IllegalArgumentException if any illegal arguments are passed */ public SceneDelete(final ApplicationKey appKey, final int sceneNumber) { super(appKey); if (isValidSceneNumber(sceneNumber)) this.sceneNumber = sceneNumber; assembleMessageParameters(); } @Override public int getOpCode() { return OP_CODE; } @Override void assembleMessageParameters() { mAid = SecureUtils.calculateK4(mAppKey.getKey()); final ByteBuffer paramsBuffer; LOG.info("Scene Number: " + sceneNumber); paramsBuffer = ByteBuffer.allocate(SCENE_DELETE_PARAMS_LENGTH).order(ByteOrder.LITTLE_ENDIAN); paramsBuffer.putShort((short) sceneNumber); mParameters = paramsBuffer.array(); } public int getSceneNumber() { return sceneNumber; } } ```
```javascript (function( factory ) { if ( typeof define === "function" && define.amd ) { define( ["jquery", "../jquery.validate"], factory ); } else if (typeof module === "object" && module.exports) { module.exports = factory( require( "jquery" ) ); } else { factory( jQuery ); } }(function( $ ) { /* * Translated default messages for the jQuery validation plugin. * Locale: VI (Vietnamese; Ting Vit) */ $.extend( $.validator.messages, { required: "Hy nhp.", remote: "Hy sa cho ng.", email: "Hy nhp email.", url: "Hy nhp URL.", date: "Hy nhp ngy.", dateISO: "Hy nhp ngy (ISO).", number: "Hy nhp s.", digits: "Hy nhp ch s.", creditcard: "Hy nhp s th tn dng.", equalTo: "Hy nhp thm ln na.", extension: "Phn m rng khng ng.", maxlength: $.validator.format( "Hy nhp t {0} k t tr xung." ), minlength: $.validator.format( "Hy nhp t {0} k t tr ln." ), rangelength: $.validator.format( "Hy nhp t {0} n {1} k t." ), range: $.validator.format( "Hy nhp t {0} n {1}." ), max: $.validator.format( "Hy nhp t {0} tr xung." ), min: $.validator.format( "Hy nhp t {1} tr ln." ) } ); })); ```
Ayuthia is a genus of cicadas in the family Cicadidae. There is at least one described species in Ayuthia. The type species, Ayuthia spectabile, is commonly known as the Milky Cicada, the White Cicada, or the White Ghost Cicada. References Further reading External links Tosenini Cicadidae genera
The H Line, part of the light rail system operated by the Regional Transportation District in the Denver-Aurora Metropolitan Area in Colorado, was added to the system on November 17, 2006, with the completion of the Southeast Corridor project (the "T-Rex Project"). It is one of four routes that are part of the RTD's service plan for the corridor. The line was extended to reach Florida station on February 24, 2017 along with the opening of the R line. According to a map in the RTD's service plan for the corridor, the H Line's color is blue. From the start of each day, the H Line begins its service southbound at Evans station to Florida Station. At the end of the service, the H Line terminates its service at I-25 & Broadway station. There are currently extra H Line trains running due to maintenance work on the Southeast Corridor between I-25/Broadway and Lincoln stations, suspending R Line service south of Florida station. Route The H Line's northern terminus is at 18th and California in downtown Denver. It shares track with the L Line (RTD) in Downtown Denver (Stout and California Street Stations) and the D Line and F Line (RTD) until it reaches I-25 & Broadway station, then follows the Southeast Corridor to a junction past Southmoor Station, and follows the I-225 branch of the system to Southeast terminus at Florida station in Aurora. Stations FasTracks The 2004 voter-approved FasTracks initiative extended the H Line approximately to the north along Interstate 225 with stops at Iliff Avenue and Florida Avenue. Work began in 2012, and the two station extension was combined with I-225 corridor light-rail line in 2013. Construction was long expected to be completed in 2016, however opening was delayed until February 24, 2017. References External links RTD H Line Schedule RTD light rail Transportation in Arapahoe County, Colorado Transportation in Aurora, Colorado 750 V DC railway electrification Railway lines opened in 2006 Railway lines in highway medians
Raghbir Lal Sharma (born 15 November 1929) was an Indian hockey player. References Raghbir Lal's profile at databaseOlympics External links 1929 births Living people Field hockey players from Punjab, India Olympic field hockey players for India Olympic gold medalists for India Field hockey players at the 1952 Summer Olympics Field hockey players at the 1956 Summer Olympics Indian male field hockey players Olympic medalists in field hockey Medalists at the 1956 Summer Olympics Medalists at the 1952 Summer Olympics Field hockey players from Rawalpindi
The 159th Combat Aviation Brigade (CAB) formerly supported the 101st Airborne Division (Air Assault), and was stationed at Fort Campbell, Kentucky. While active, 159th CAB made the 101st Airborne Division the only US Army Division with two organic aviation brigades, and currently the 101st CAB is the only CAB supporting the unit at Fort Campbell. The 159th CAB was inactivated on 15 May 2015. The lineage of the 159th Aviation Brigade is separate from that of the Vietnam-era 159th Aviation Battalion and the later 159th Aviation Regiment. Composition Headquarters and Headquarters Company, 159th CAB ("Dragonlords") 7th Squadron, 17th Cavalry Regiment ("Pale Horse") 3rd Battalion, 101st Aviation Regiment ("Eagle Attack") 4th Battalion, 101st Aviation Regiment ("Wings of the Eagle") 7th Battalion, 101st Aviation Regiment ("Eagle Lift") 563rd Aviation Support Battalion ("Keep Them Fighting") Formation and initial deployments The Vietnam-era 159th Aviation The 159th Aviation Battalion (Assault Helicopter) was a Vietnam War-era heavy lift helicopter unit formed on 1 July 1968 from the assets of the 308th Aviation Battalion (Combat). The spiritual ancestor (separate lineage) to the 159th CAB was organized as the medium and heavy lift Assault Helicopter Battalion of the 101st Airborne Division, and composed of three Boeing CH-47 Chinook companies (Pachyderms - A Company; Varsity - B Company; Playtex - C Co) and 1 Sikorsky CH-54 Tarhe company (Hurricanes). In the modern formation, only "Varsity" Company remained as Company B, 7th Battalion, 101st Aviation Regiment, 159th CAB. From January 1969 through February 1972, the battalion provided lift support to the 101st Airborne. The unit conducted airmobile artillery raids, troop movements, flare drops, fire-base insertions and extractions, IFR airdrops, and flight support and aircraft recovery missions. The 159th Aviation Battalion received the Valorous Unit Award for services in the Republic of Vietnam, 1 January 1970 through May 1971. In February 1972, the 159th Aviation Battalion returned to Fort Campbell, Kentucky as the only CH-47 Chinook battalion in the United States Army. In November 1987, the 159th Aviation Battalion headquarters was inactivated at Fort Campbell and the 159th Aviation Regiment was activated under the new U.S. Army regimental system at Fort Bragg, North Carolina. Later, the unit would be redesignated as 4th Battalion, 159th Aviation Regiment and was activated at Kitzingen, Germany, and then relocated to Giebelstadt, Germany. From this point on, the 159th Aviation Regiment would have no further affiliation with either Fort Campbell, the 101st Airborne, or the 159th Aviation Brigade - the 159th Aviation Regiment continues to exist as a separate unit affiliated with 12th Aviation Brigade. 101st Aviation Regiment Meanwhile, the same 1987 reorganization that removed the 159th Aviation Battalion lineage left nine active aviation battalions which had existed beneath it at Fort Campbell. As such, these units were assigned lineage to the 101st Aviation Regiment, and initially reformed under the headquarters of the 101st Aviation Brigade. As originally formed, Sikorsky UH-60 Black Hawks were in the 4th, 5th and 9th Battalions, 101st Aviation; Bell UH-1 Iroquois were in the 6th Battalion, 101st Aviation; CH-47D Chinooks were in the 7th Battalion, 101st Aviation; and Boeing AH-64 Apache were in 1st, 2nd and 3rd Battalion, 101st Aviation. Aviation support was provided by 8th Battalion, 101st Aviation Regiment. Serious flaws with this arrangement would become apparent during the First Gulf War, as the resulting nine Battalion unit was the size of some regiments yet lacked an adequately sized staff element, headquarters, or officer rank to control such a large unit over a wide area. As a result, the 101st Airborne headquarters considered breaking the 101st Aviation Brigade in half and establishing a second headquarters. The 159th Aviation Brigade On 9 October 1997, the largest aviation brigade in the Army split nine battalions into two brigades, the 101st Aviation Brigade (Attack) and the 159th Aviation Brigade (Assault). Between 1997 and 2001, the Brigade deployed units to Bosnia, Kosovo, Trinidad and Tobago, and Central America. Post 9/11 2002 Afghanistan deployment Following 9/11, elements of the 4-101st (Blackhawk), and 7-101st (Chinook) Aviation Battalions, 159th Aviation Brigade deployed to Afghanistan in support of Operation Enduring Freedom. Deploying 29 January 2002 for OEF, 159th elements prepared and strategically deployed 5 UH-60L Blackhawk aircraft and 6.5 aircrews to Kandahar, Afghanistan. 159th Brigade also deployed 8 UH-60L Blackhawk and 13 CH-47 Chinook aircraft to Bagram. The unit deployed another 5 UH-60L aircraft to Bagram Air Force Base, Afghanistan on 3 May 2002. In September 2002, two elements of A Company, 4-101st Aviation Regiment redeployed from Afghanistan where they supported OEF in the fight against the Taliban. Operation Anaconda Chinook and Blackhawk aircraft from 159th Aviation Brigade provided direct lift support for Operation Anaconda. U.S. Army intelligence had located a large number of Taliban and al Qaeda personnel operating in the Shah-e-Kot Valley, near the Pakistani border. Within the valley were the three villages of Sherkhankhel, Babukhel, and Marzak. Operation Anaconda would block Taliban and al Qaeda forces inside the valley where they could be destroyed before escaping into Pakistan. 159th Aviators began pre-flight checks for departure at 4:30 am, 2 March 2002. The air mission consisted of eight 7-101 CH-47 aircraft divided into two flights of four, carrying infantry from the 101st Airborne and 10th Mountain Divisions. As resupply was not guaranteed at the time, the onboard infantry were heavily laden with ample food, water, cold-weather clothing, night-vision and communications equipment in addition to weapons and ammunition. Some individuals carried a hundred pounds or more. The air assault into Shah-e-Kot would be supported by five Apaches from the sister 101st Aviation Brigade. The date for the attack had initially been planned for 25 February, but bad weather forced a delay until 2 March. The helicopters would land just after the start of morning nautical twilight, as mission planners weighed the options of attacking under the cover of darkness or during daylight hours. It was finally decided to insert at sunrise to catch the enemy asleep yet provide optimal vision for the forces entering the valley. The Apaches entered the valley first to provide overwatch of the helicopter landing zones. The attack aircraft radioed back the call of "ice", a military term for an uncontested landing. Though the aircraft were able to disembark infantry without incident, the ground force began taking small arms fire immediately after their departure. After this initial period, the infantry and supporting Chinooks would require repeated air to ground fire support from the accompanying Apaches and USAF assets. The Taliban began to target the aircraft, and on the first day of the operation, five out of seven AH-64s were put out of action by ground fire. After the initial engagements on his forces, Colonel Frank Wiercinski (ground forces commander), decided to move his mobile command team off of the airborne command post and directly control fighting from the ground. The 159th Blackhawks would insert this element as wave two of the operation, and proceeded directly to the pre-designated HLZ. As there was only room for one Blackhawk at this landing site, the aircraft would take turns making use of the location to land, disembark the passengers, and quickly take off again. On ingress to this HLZ, the lead helicopter began to take small arms fire. Just before touch down, a RPG exploded below the lead Black Hawk and sent shrapnel into the airframe directly under the pilot's seat. The pilot continued the approach and safely deposited half the Brigade TAC before departing. The second aircraft immediately followed with the rest of the TAC. Resupply and reinforcement efforts were further complicated by the then-standard use of VHF and FM radios for air-to-air and air-to-ground communication. Both types of radios are limited by line of sight, and as aircraft were divided by mountain ridges communication was at times interrupted. A third lift of reinforcement and medical evacuation aircraft were sent to the area just before darkness on day one. During this third insertion, overhead Apache crews observed several RPG near-misses on the first aircraft, falling short, and another fired between the following two. White trails of smoke showed the path the RPGs had taken. An RPG strike to the tail rotor of one of the few remaining Apaches rendered further attack air support no longer effective. Reinforcements hovering outside the objective area could no longer be safely inserted due to intense ground fire, and supply drops for friendly positions were likely to be shot down. Given the unarmored nature of the CH-47s and UH-60s, the ground force commander ordered the supporting aircraft to return to Bagram Air Base. During most of day two, infantry on the ground faced repeated close-range attack by enemy small arms, RPG, and mortar fire. Though only two Apaches remained serviceable to provide support, 24-hours of air force bombing began to have an effect and Taliban attacks slowly diminished. Just after sunset, Task Force Summit and the ground forces Brigade command post was extracted via CH-47. 159th Aircraft would continue to support the operation until it ended on 18 March 2002. Images of 159th Aviation During the Battle. 2003 Iraq deployment In 2003, the 159th deployed in support of Operation Iraqi Freedom. On 22 April 2003 the 159th Brigade and 101st Airborne Division conducted the longest air assault in history. A mixed composition air convoy of 200 Black Hawk, Apache, Chinook and Kiowa helicopters from 159th and 101st Aviation regiments landed at two forward bases, unloading infantry soldiers and refueling. Later this same day, the Screaming Eagles made their first attack deep inside Iraq, using dozens of helicopters to hit an Iraqi armored brigade about 100 miles southwest of Baghdad, reported a CNN correspondent embedded with the 101st. 159th began combat operations in the open desert, where there was enough room for the 100-aircraft strong force to establish a tactical operations center (TOC) and tactical assembly area (TAA) Thunder I. The unit later 'jumped' to TAA Thunder II (Karbala), and Thunder III (Iskandariyah), before finally assuming operations out of Mosul Airfield. During the initial invasion, the Brigade lost only a single aircraft due to heavy dust conditions at FARP Shell. Even at this time, the most common threat to aircraft was a mixture of small to medium-sized AAA systems, RPGs, and ground fire. After the initial invasion, 159th assumed responsibility for Iraq's second largest city of Mosul and four northern provinces. On 15 November 2003 Blackhawk #93-26531 (4-101st) and another Blackhawk from 101st Aviation Brigade collided over the suburbs of Mosul approximately 5 km from the Airfield; six of the seventeen Soldiers who died that day were from 159th Aviation Brigade. Army Transformation Under Army Transformation, the unit was reorganized as a CAB on 17 September 2004. As part of the Army's transformation towards a modular force, the 3d Battalion, 101st Aviation Regiment transferred from the 101st CAB to 159th CAB, also part of the 101st Airborne Division. On 26 September 2005, the aviation support battalion of the 159th CAB was reflagged from the 9th Battalion (Support), 101st Aviation Regiment, to the 563d Support Battalion (Aviation). 2005 Iraq deployment Following its re-designation, the 159th CAB deployed again to Iraq in 2005. The 159th CAB worked in direct support of Multinational Corps-Iraq by providing rotary-wing helicopter support to nearly every unit in Iraq. 2008 Afghanistan deployment In December 2008, the 159th CAB, TF Thunder, deployed to Afghanistan in support of Operation Enduring Freedom. Headquartered out of Bagram Airbase, the brigade task force provided a wide range of aviation support to CJTF-101, CJTF-82, CJSOTF, USFOR-A and International Security and Assistance Forces (ISAF). The 159th CAB reorganized as Task Force Thunder, and as the only U.S. Aviation Brigade operating in Afghanistan at the time assumed responsibility for an area the size of Texas. Due to the decentralized nature of the fight, the limited aviation assets in theater, and the vast geographic expanse requiring helicopter support, the Brigade established four distinct multi-functional task forces based out of Bagram, Jalalabad, Salerno, and Kandahar Airfield, with follow on establishment at FOB Shank. The joint, coalition based task force included 138 helicopters, 7 un-manned aerial systems (UAVs), and 28 various fixed wing aircraft with an oversight relationship for Polish, French and Czech Aviation units. In 2009, the Brigade Task Force provided both direct and general support, full spectrum aviation operations, to all regional commands operating in Afghanistan. Since assuming the mission, Task Force Thunder flew over 136,000 flight hours, conducted over 509 deliberate air assaults and executed over 3,700 air movement operations. These operations resulted in moving over 132,000 Soldiers and 6,574 Tons of cargo. In addition, the unit executed more than 2,400 MEDEVAC missions, moving over 2,800 patients from point of injury to appropriate care facilities FOB Blessing FOB Blessing and COP Vegas were located within the Korengal Valley, in Eastern Afghanistan. In September 2009, a flight of two CH-47s transferring troops and equipment from FOB Blessing to COP Vegas was ambushed by insurgents. During the second approach into COP Vegas, a CH-47 was struck in tail ramp by a rocket-propelled grenade. The aircraft hydraulics were significantly damaged, and the CH-47 pitched violently while the crew fought to regain control. The pilot made the decision to attempt to fly the severely damaged airframe back to FOB Blessing, where there would be sufficient landing space for a MEDEVAC aircraft to land and evacuate the numerous wounded on board. Upon arrival to FOB Blessing, the pilot judged the risk of landing on the established HLZ to be too high, instead landing the aircraft in an open field to conserve the HLZ for an inbound MEDEVAC. This likely saved the lives of several of the wounded Soldiers on board, as otherwise medical crews would have been forced to spend time improvising an HLZ or even remove casualties individually from the air. After conducting an emergency shut-down, the crew found damage to the CH-47's hydraulic control lines which could have been catastrophic. The aircrew and ground forces at FOP Blessing became nervous that insurgents would launch a mortar attack on the vulnerable airframe at first light, in an attempt to set the aviation fuel inside ablaze. Fortunately, the crew was able to self-repair the damage to the hydraulics, then limped back to Bagram Airbase, an hour and a half long harrowing flight. As a result of his heroism, 7-101 CH-47 pilot CW3 Ryan Dechent was awarded the Distinguished Flying Cross. COP Keating 159th CAB Aviators from Task Force Pale Horse (7-17 Cavalry) provided direct air support to the ground troops during the attack on COP Keating on 3 October 2009. COP Keating was located in a depression, surrounded by mountains. Because of the extremely small size of the one-hundred meter outpost, the landing zone was located 'outside the wire' - a common expression for being outside the defensive perimeter in an unsecure area. The landing zone had only enough room for one Chinook or two Blackhawks to land at one time. This would greatly complicate support and reinforcement efforts before, during, and after the Battle of Kamdesh. Observation Post Fritsche was located on top of a nearby mountain, overlooking COP Keating and a significant liability were it overrun. The Blackhawks quickly left accompanied by two Apaches, with a load of approximately thirty infantry to fortify OP Fritsche. Upon arriving at the site, the Blackhawks began receiving heavy ground fire from what would later be assessed as a 300-strong element of enemy fighters. More troublingly, OP Fritsche could offer no support to neighboring COP Keating as the force was cut off by heavy enemy machine gun and RPG fire from within the valley. This constituted a problem for the helicopter teams since the regular avenue of approach to COP Keating was through the low-lying terrain of said valley. In an attempt to conceal their approach, the aircraft took a non-traditional approach by flying directly over the mountain ridge. After multiple turns in the area while under fire, the two Blackhawks were able to insert more than 100 Soldiers to reinforce the outpost. Meanwhile, the Apaches remained overhead providing support to the battered U.S. force at COP Keating. The Apache crews had been verbally told that the COP was taking heavy fire from small arms and RPGs prior to departure, however the situation was unstable and the Apache crews were worried of accidentally firing upon friendly troops. Via radio contact with the ground force within COP Keating, the crews were told to consider anyone outside the wire perimeter to be hostile. As a result, the attack aircraft engaged some thirty armed individuals just outside a large visible breach in the defensive works of COP Keating. Just after this time MEDEVAC aircraft attempted to extract wounded, but were forced to turn back due to heavy ground fire. The Apaches remained on-station for approximately 90 minutes taking repeated damage from small arms fire and eventually running out of ammunition. As a result of small arms damage, the Apache crews were forced to switch aircraft upon returning to FOB Bostick rather than simply rearming and refueling. This had the fortunate side-effect of allowing the crews several minutes to return to the nearby unit TOC, exchange maps and information of the situation, and learn of the most recent real-time intelligence regarding events on the ground. The Apaches returned to COP Keating and began engaging a mixed group of 25 enemy fighters in and around the nearby police station and mosque. Overcast weather from an incoming thunder storm allowed the pilots to clearly see muzzle flashes from small arms and DShK heavy machine guns directed at them and friendly ground forces. The impending thunderstorm was both a blessing and a curse, as the Apaches were forced again to return to FOB Bostick due to severe weather. After approximately a one-hour weather hold, 159th CAB aircraft returned to the area one final time that day to further support ground forces with Apache fire and conduct one further reinforcement of OP Fritsche. As a result of heroism in the face of enemy fire, 3-101 Apache pilots Captain Matthew J. Kaplan, Chief Warrant Officer 3 Ross D. Lewallen, Chief Warrant Officer 3 Randy L. Huff, Chief Warrant Officer 2 Christopher N. Wright and Chief Warrant Officer 2 Gary H. Wingert were each awarded the Distinguished Flying Cross. Additionally, 4-101's Sgt. Kevin Hobbs, a Company C. crew chief; Capt. Aaron Nichols, the assistant Task Force Wings operations officer; Chief Warrant Officer 2 Raymond Andrel, the Company C. safety officer; and Chief Warrant Officer 2 Kevin Howey, a Company C. instructor pilot were awarded the Air Medal with Valor device. 2011 Afghanistan deployment In January 2011, the 159th CAB was again called upon to support Operation Enduring Freedom. The entire brigade, minus its MEDEVAC company that had just returned from an off-cycle deployment to Iraq and Afghanistan, assumed responsibility for the rotary wing aviation mission throughout Regional Command South in Afghanistan. Throughout its year-long deployment, the brigade provided full-spectrum aviation support to ground units, to include air assaults, air movements, reconnaissance, security, close combat attack and Pathfinder missions. During the deployment, Task Force Thunder made history when it became the first CAB to receive, integrate, and execute fixed-wing movements with Alenia C-27J Spartans and electronic attack missions with Beechcraft C-12 Caesar aircraft. The 159th CAB also took on a new role during this deployment, serving as mentors to Afghan National Security Forces. Partnerships with the Afghan Air Force, Afghan National Police, Afghan National Civil Order of Police, and the Afghan National Army helped to further improve security in the region and increase the capability of the ANSF and the government of Afghanistan. The majority of the 101st Airborne Division redeployed from Afghanistan by late 2011. On 22 March 2012 the 159th CAB redeployed to Fort Campbell, Kentucky and, for the first time in five years, the entire 101st Airborne Division (Air Assault) was "back home" together. Medevac support As Task Force Thunder, the 159th CAB was responsible for medical evacuation flights for all of RC-S and RC-SW in partnership with the U.S. Air Force. TF Thunder Medevac flights were based out of Kandahar Airfield, Camp Bastion, and several small combat outposts in Helmand, Uruzgun, and Zabul provinces. During the summer of 2011, TF Thunder partnered with Task Force Strike (2nd Brigade, 101st Airborne Division) and later Task Force Mountain (10th Mountain Division), and TF Thunder Medevac aircraft were repeatedly engaged at ranges of 100 meters or less by small arms and rocket propelled grenade fire in the claustrophobic Arghandab River and Helmand River valleys. The unique terrain in this region consisted of open wheat or poppy fields which could be used as a landing zone, and built-up grape rows which could not. The geographic situation limited Medevac pilots to a relative few landing sites, allowing for repeated ambush. TF Thunder Medevac crews learned to cooperate closely with infantry ground forces to establish a tight security perimeter around a given HLZ. Despite this, reports of deliberate Taliban ambush of Medevac aircraft continued until the onset of cold weather that fall. 2013 Afghanistan deployment 159th CAB again deployed to RC-E Afghanistan in December 2013, spending most of 2014 there in support of Operation Enduring Freedom. The Brigade returned in September/October 2014. Inactivation On 20 November 2014, the U.S. Army announced that the 159th CAB would be inactivated in 2015. As part of the restructuring, the Army will retain the 159th CAB's Apache battalion, the 3d Battalion (Attack/Reconnaissance), 101st Aviation Regiment, and reassign it to the 101st CAB. The majority of 159th CAB Soldiers would be sent elsewhere. References Aviation Brigades of the United States Army Military units and formations established in 1992 Military units and formations disestablished in 2015
Murthy Devarakonda is a computer scientist at the AI Innovation Center of Novartis Pharmaceuticals, Cambridge, MA. He was named a Fellow of the Institute of Electrical and Electronics Engineers (IEEE) in 2015 for his contributions to measurement-based analytics of distributed systems for data center optimization. References Fellow Members of the IEEE Living people Year of birth missing (living people) Place of birth missing (living people) American electrical engineers
The beadlet anemone (Actinia equina) is a common sea anemone found on rocky shores around all coasts of the British Isles. Its range extends to the rest of Western Europe and the Mediterranean Sea, and along the Atlantic coast of Africa as far south as South Africa and Australia. Actinia equina can be found both in exposed and sheltered situations. It is highly adapted to the intertidal zone as it can tolerate both high temperatures and desiccation. The anemone may also be found in regions of variable salinity such as estuaries. Beadlet anemones can live in solitary or in aggregations. Solitary beadlet anemones are found to be larger-sized than those that form clustered aggregation. Furthermore, larger sea anemones were found submerged in low tide, where they have greater access to food resources and are less subjected to harsh environmental exposures. The size of beadlet anemones may be connected to their physiological adaptation in regards to limited food resources and withstanding environmental conditions. Underwater, it displays up to 192 tentacles, arranged in six circles. Out of water, the tentacles retract and the anemone resembles a blob of red, brown, green or orange jelly, up to about across. It has bright blue beads (known as acrorhagi) located just beneath the tentacles, organised as an external ring containing stinging cells located at the top of the column that it uses to fight over territory. The acrorhagi contains the cnidocysts which themselves contain the nematocysts. There is some evidence that the various colour forms may in fact be different species. Actinia equina is similar in form to the Waratah anemone (Actinia tenebrosa) of Australia and New Zealand. It is also similar in form to the strawberry anemone (Actinia fragacea) but is a uniform colour and is typically rather smaller. Actinia equina is viviparous, with up to one hundred embryos developing inside the body cavity before being ejected into the open water as juveniles. A particularly famous example was that of "Granny" which was found on Scotland's east coast by John Dalyell in 1828 and produced several hundred offspring until it died in 1887. References Naylor, P, Great British Marine Animals, 2nd edn, Sound Diving Publications, 2003. Marine Life Information Network (MarLIN) Encyclopedia of Marine Life of Britain and Ireland External links Actiniidae Animals described in 1758 Taxa named by Carl Linnaeus
A Fallen Idol is a lost 1919 American silent melodrama film starring Evelyn Nesbit, a famed former model and Broadway showgirl who had been at the center of two highly publicized court trials after her wealthy husband shot and killed a prominent architect in 1906 in front of hundreds of witnesses. The plot has some parallels with Nesbit's well-known life story, as do most of the films in which she appeared – exploiting her fame to attract audiences to her films. As in her life, the story centers around a beautiful woman pursued by two male rivals and a rape by a man of wealth and power. Other aspects of the story are quite different from those of her life. Nesbit plays a Hawaiian princess. Plot The plot centers around the Hawaiian Princess Laone (Nesbit), whose love for a man named Keith Parrish is thwarted by societal pressure from her benefactor Mrs. Parrish, who is his aunt. Princess Laone is despondent after being persuaded to refuse Keith Parrish's proposal, and she attempts suicide, but is rescued by Keith Parrish. After Parrish leaves town to take care of his father, Princess Laone is told he has abandoned her, and she departs for Hawaii on board the yacht of the dastardly wealthy playboy Stephen Brainard. Princess Laone is forced into having sex with Brainard by being threatened with gang rape by his crew. Keith Parrish is accused of stealing a sacred necklace, but Princess Laone is able to prove that he is innocent and that Brainard was smuggling the necklace. Brainard is arrested and the princess is able to marry Keith Parrish in the end. Cast Evelyn Nesbit as Princess Laone Lillian Lawrence as Mrs. Parrish Sidney Mason as Keith Parrish Lyster Chambers as Stephen Brainard Pat J. Hartigan as Brainard's Chief Mate Harry Semels as Tushau Thelma Parker as Lato Marie Newton as Elsie Blair Fred C. Williams as Keith's Father See also 1937 Fox vault fire References External links 1919 films American silent feature films Fox Film films Lost American drama films 1919 drama films American black-and-white films Films directed by Kenean Buel Melodrama films Silent American drama films 1919 lost films 1910s American films
Friday is a comics character who appeared in the British anthology 2000 AD between 1989 and 1996. He was created by writer Dave Gibbons and artist Will Simpson. Subsequently Michael Fleisher and then Steve White took over as regular series writers. Friday was the lead character of the new Rogue Trooper series, which was a reboot of the original 1981 series, of which Gibbons had been the creator artist (with writer Gerry Finley-Day). Like the original Rogue Trooper, Friday is a Genetic Infantryman – a clone soldier genetically-engineered to survive in a toxic environment in which normal people require chemical-warfare suits and gas masks – fighting on the planet Nu-Earth. In 1995 the original Rogue Trooper briefly appeared alongside Friday in the new series. (See also 2000 AD crossovers#Rogue Trooper.) Publication history On the strength of Watchmen, the editorial staff of 2000 AD asked Dave Gibbons if he would be interested in redesigning the Rogue Trooper character. Gibbons accepted and proposed also writing it, which was greenlit by Richard Burton. However, time commitments would not allow him to both write it and provide the stories art and Will Simpson was brought in to cover the art duties. Gibbons says the redesign "was my chance to put everything into Rogue Trooper I wanted and take out all the crap, like the bio-chips" The fourteen-part story was hit by scheduling problems due to the lateness of the art. Gibbons said "I'm still quite happy with the story, although the way it was serialised was erratic - in for two issues, then out again. I was trying to have something that was quite cumulative." Michael Fleisher took over the writing of the series with artists Ron Smith, Simon Coleby and Chris Weston. Editor Alan McKenzie has declared about the new writer: "on paper Fleisher was a good bet. ... But his work on 2000 AD was embarrassing. I did my best to save it, but you can't polish a turd." After five stories Steve White was brought in to help address some problems. According to editor John Tomlinson "Ever since "War Machine" in 1989, readers had been confused as hell about who is Friday and whether he was the original Rogue. I told Steve to figure that out and explain it." This led to a two-year-long run on the series for the writer, although there was a move to hand the series to Mark Millar which only resulted in a three-part story. During this period Friday met both Judge Dredd, in an issue-length story, and later the original Rogue Trooper, the latter being intended to settle the issue of their origins and connections. Unfortunately, according to Tomlinson "Steve came up with a fairly watertight explanation, but it was enormously complicated and probably confused far more people than it enlightened." That story also brought in Venus Bluegenes, a G.I. Doll, who would appear in one more story before her appearance in the final story to feature Friday. Dan Abnett, co-author for that story, was complimentary of White's work, "Steve had such a great feel for military goings on," however, this couldn't overcome intrinsic problems with the story as "he was absolutely hamstrung by the weight of continuity." In the final story in 1996, Friday and Venus disappeared into a black hole and have not reappeared since. Subsequent Rogue Trooper stories have all featured the original version of the character. Characters Friday's adventures are a retcon of the Rogue Trooper storyline. Since all the G.I.s were identical and had serial numbers instead of names, they gave each other descriptive nicknames to tell each other apart. Friday (G.I. #19) is equivalent to Rogue. He seems to be less dogmatic and is stronger-willed than the other G.I.s. Top (G.I. #01), the G.I. company sergeant and field-radioman, is equivalent to Helm. He has an upgraded version of the standard issue G.I. helmet with improved sensors, increased communications range and multiple channels. Eightball (G.I. #08), the unit sniper, is equivalent to Gunnar. He has a rifle with enhanced sensors and a more powerful electronic sight. Lucky (G.I. #13), the unit Equipment Man, is equivalent to Bagman. He has a Backpack with extra equipment, including Caustic Foam Dispensers and over-the-shoulder lighting mechanism. Bibliography Rogue Trooper: "The War Machine" (by Dave Gibbons and Will Simpson, in 2000 AD #650-653, 667-671, 683-687, 1989–1990) "Decoys" (by Michael Fleisher and Chris Weston, in Rogue Trooper Annual 1991, 1990) "Marching As To War" (text story by John Smith, in Rogue Trooper Annual 1991, 1990) "The Undeath Project" (by Michael Fleisher and Smith & Tim Perkins, in Rogue Trooper Annual 1991, 1990) "Bio-Death" (by Michael Fleisher and Steve Dillon, in Rogue Trooper Annual 1991, 1990) "Circus Daze" (by Michael Fleisher and John Hicklenton, in Rogue Trooper Annual 1991, 1990) "Golden Fox Rebellion" (by Michael Fleisher and Ron Smith, in 2000 AD #712-723, 1991) "Saharan Ice Belt War" (by Michael Fleisher and Simon Coleby, in 2000 AD #730-741, 1991) "Hollow Town" (by John Smith, art by Simon Coleby, in 2000 AD Sci-Fi Special, 1991) "The Arena Of Long Knives" (by Michael Fleisher and Kev Walker, in 2000 AD Yearbook 1992, 1991) "Apocalypse Dreadnought" (by Michael Fleisher and Ron Smith, in 2000 AD #780-791, 1992) "House of Pain" (written by Mark Millar, art by Brett Ewins & Jim McCarthy, in 2000 AD Sci-Fi Special, 1992) "Enfleshings" (by John Smith and Chris Weston, in 2000 AD Yearbook 1993, 1992) "Shock Tactics" (written by John Smith, art by Chris Weston & Mike Hadley, in 2000 AD Sci-Fi Special, 1993) "Give War a Chance" (by Mark Millar and David Hill, in 2000 AD Yearbook 1994, 1993) "Scavenger of Souls Prologue" (by Michael Fleisher and Simon Coleby, in 2000 AD #850-851, 1993) "Scavenger of Souls" (by Michael Fleisher and Chris Weston, in 2000 AD #873-880, 1994) "Some Mother's Son" (by Steve White and Henry Flint, in 2000 AD Sci-Fi Special, 1994) "Hill 392" (by Steve White and Chris Weston & Gina Hart, in Rogue Trooper Poster Prog #1, 1994) "Mercy Killing" (by Steve White and Henry Flint, in 2000 AD #889-891, 1994) "Some Mother's Son" (by Steve White and Henry Flint, in 2000AD Sci-Fi Special, 1994) "Mercenary Attitudes" (by Steve White and Henry Flint, in 2000 AD #896-899, 1994) "Danger Drop" (by Steve White and Adrian Lutton, 2000AD Yearbook 1995, 1994) Judge Dredd: "Casualties Of War" (by John Wagner and John Higgins, in 2000 AD #900, 1994) Rogue Trooper: "G.I. Blues" (by Mark Millar and Chris Weston, in 2000 AD #901-903, 1994) "Blue on Blue" (by Steve White and Henry Flint, in 2000 AD #928-931, 1995) "Mind Bombs" (by Steve White and Edmund Bagwell (credited as Edmund Perryman) & Nick Abadzis, in 2000 AD #937-939, 1995) "Ascent" (by Steve White and Steve Tappin, in 2000 AD #946-949, 1995) "Angels" (by Steve White and Charlie Adlard, in 2000 AD #950-952, 1995) "Descent" (by Steve White and Steve Tappin, in 2000 AD #964-966, 1995) "Combat Rocks" (by Steve White and Steve Tappin, in 2000 AD #967-970, 1995) "A Night Out with the Boys" (by Steve White and Steve Tappin, in 2000AD Sci-Fi Special, 1995) "Hot Metal" (by Steve White and Steve Tappin, in 2000 AD #983-986, 1996) "Street Fighting Man" (by Steve White and Steve Tappin, in 2000 AD #987-989, 1996) "Gaia" (by Steve White and Dougie Braithwaite, in Rogue Trooper Action Special, 1996) "Shakedown" (by Steve White and Steve Tappin, in Rogue Trooper Action Special, 1996) "Collateral" (by Steve White and Steve Tappin, in 2000 AD #1007-1009, 1996) "Rogue Alone" (by Steve White and Calum Alexander Watt, in 2000 AD #1010-1013, 1996) "Rogue Troopers" (by Dan Abnett & Steve White and Alex Ronald, in 2000 AD #1014-1022, 1996) See also Other Genetic Infantrymen (and women) with prominent roles: Rogue Venus Bluegenes Tor Cyan Rafe Notes References Friday at Barney Friday at the International Catalogue of Superheroes Fictional genetically engineered characters
```c++ //===-- SparcInstrInfo.cpp - Sparc Instruction Information ----------------===// // // See path_to_url for license information. // //===your_sha256_hash------===// // // This file contains the Sparc implementation of the TargetInstrInfo class. // //===your_sha256_hash------===// #include "SparcInstrInfo.h" #include "Sparc.h" #include "SparcMachineFunctionInfo.h" #include "SparcSubtarget.h" #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/SmallVector.h" #include "llvm/CodeGen/MachineFrameInfo.h" #include "llvm/CodeGen/MachineInstrBuilder.h" #include "llvm/CodeGen/MachineMemOperand.h" #include "llvm/CodeGen/MachineRegisterInfo.h" #include "llvm/MC/TargetRegistry.h" #include "llvm/Support/ErrorHandling.h" using namespace llvm; #define GET_INSTRINFO_CTOR_DTOR #include "SparcGenInstrInfo.inc" // Pin the vtable to this file. void SparcInstrInfo::anchor() {} SparcInstrInfo::SparcInstrInfo(SparcSubtarget &ST) : SparcGenInstrInfo(SP::ADJCALLSTACKDOWN, SP::ADJCALLSTACKUP), RI(), Subtarget(ST) {} /// isLoadFromStackSlot - If the specified machine instruction is a direct /// load from a stack slot, return the virtual or physical register number of /// the destination along with the FrameIndex of the loaded stack slot. If /// not, return 0. This predicate must return 0 if the instruction has /// any side effects other than loading from the stack slot. unsigned SparcInstrInfo::isLoadFromStackSlot(const MachineInstr &MI, int &FrameIndex) const { if (MI.getOpcode() == SP::LDri || MI.getOpcode() == SP::LDXri || MI.getOpcode() == SP::LDFri || MI.getOpcode() == SP::LDDFri || MI.getOpcode() == SP::LDQFri) { if (MI.getOperand(1).isFI() && MI.getOperand(2).isImm() && MI.getOperand(2).getImm() == 0) { FrameIndex = MI.getOperand(1).getIndex(); return MI.getOperand(0).getReg(); } } return 0; } /// isStoreToStackSlot - If the specified machine instruction is a direct /// store to a stack slot, return the virtual or physical register number of /// the source reg along with the FrameIndex of the loaded stack slot. If /// not, return 0. This predicate must return 0 if the instruction has /// any side effects other than storing to the stack slot. unsigned SparcInstrInfo::isStoreToStackSlot(const MachineInstr &MI, int &FrameIndex) const { if (MI.getOpcode() == SP::STri || MI.getOpcode() == SP::STXri || MI.getOpcode() == SP::STFri || MI.getOpcode() == SP::STDFri || MI.getOpcode() == SP::STQFri) { if (MI.getOperand(0).isFI() && MI.getOperand(1).isImm() && MI.getOperand(1).getImm() == 0) { FrameIndex = MI.getOperand(0).getIndex(); return MI.getOperand(2).getReg(); } } return 0; } static bool IsIntegerCC(unsigned CC) { return (CC <= SPCC::ICC_VC); } static SPCC::CondCodes GetOppositeBranchCondition(SPCC::CondCodes CC) { switch(CC) { case SPCC::ICC_A: return SPCC::ICC_N; case SPCC::ICC_N: return SPCC::ICC_A; case SPCC::ICC_NE: return SPCC::ICC_E; case SPCC::ICC_E: return SPCC::ICC_NE; case SPCC::ICC_G: return SPCC::ICC_LE; case SPCC::ICC_LE: return SPCC::ICC_G; case SPCC::ICC_GE: return SPCC::ICC_L; case SPCC::ICC_L: return SPCC::ICC_GE; case SPCC::ICC_GU: return SPCC::ICC_LEU; case SPCC::ICC_LEU: return SPCC::ICC_GU; case SPCC::ICC_CC: return SPCC::ICC_CS; case SPCC::ICC_CS: return SPCC::ICC_CC; case SPCC::ICC_POS: return SPCC::ICC_NEG; case SPCC::ICC_NEG: return SPCC::ICC_POS; case SPCC::ICC_VC: return SPCC::ICC_VS; case SPCC::ICC_VS: return SPCC::ICC_VC; case SPCC::FCC_A: return SPCC::FCC_N; case SPCC::FCC_N: return SPCC::FCC_A; case SPCC::FCC_U: return SPCC::FCC_O; case SPCC::FCC_O: return SPCC::FCC_U; case SPCC::FCC_G: return SPCC::FCC_ULE; case SPCC::FCC_LE: return SPCC::FCC_UG; case SPCC::FCC_UG: return SPCC::FCC_LE; case SPCC::FCC_ULE: return SPCC::FCC_G; case SPCC::FCC_L: return SPCC::FCC_UGE; case SPCC::FCC_GE: return SPCC::FCC_UL; case SPCC::FCC_UL: return SPCC::FCC_GE; case SPCC::FCC_UGE: return SPCC::FCC_L; case SPCC::FCC_LG: return SPCC::FCC_UE; case SPCC::FCC_UE: return SPCC::FCC_LG; case SPCC::FCC_NE: return SPCC::FCC_E; case SPCC::FCC_E: return SPCC::FCC_NE; case SPCC::CPCC_A: return SPCC::CPCC_N; case SPCC::CPCC_N: return SPCC::CPCC_A; case SPCC::CPCC_3: [[fallthrough]]; case SPCC::CPCC_2: [[fallthrough]]; case SPCC::CPCC_23: [[fallthrough]]; case SPCC::CPCC_1: [[fallthrough]]; case SPCC::CPCC_13: [[fallthrough]]; case SPCC::CPCC_12: [[fallthrough]]; case SPCC::CPCC_123: [[fallthrough]]; case SPCC::CPCC_0: [[fallthrough]]; case SPCC::CPCC_03: [[fallthrough]]; case SPCC::CPCC_02: [[fallthrough]]; case SPCC::CPCC_023: [[fallthrough]]; case SPCC::CPCC_01: [[fallthrough]]; case SPCC::CPCC_013: [[fallthrough]]; case SPCC::CPCC_012: // "Opposite" code is not meaningful, as we don't know // what the CoProc condition means here. The cond-code will // only be used in inline assembler, so this code should // not be reached in a normal compilation pass. llvm_unreachable("Meaningless inversion of co-processor cond code"); case SPCC::REG_BEGIN: llvm_unreachable("Use of reserved cond code"); case SPCC::REG_Z: return SPCC::REG_NZ; case SPCC::REG_LEZ: return SPCC::REG_GZ; case SPCC::REG_LZ: return SPCC::REG_GEZ; case SPCC::REG_NZ: return SPCC::REG_Z; case SPCC::REG_GZ: return SPCC::REG_LEZ; case SPCC::REG_GEZ: return SPCC::REG_LZ; } llvm_unreachable("Invalid cond code"); } static bool isUncondBranchOpcode(int Opc) { return Opc == SP::BA || Opc == SP::BPA; } static bool isI32CondBranchOpcode(int Opc) { return Opc == SP::BCOND || Opc == SP::BPICC || Opc == SP::BPICCA || Opc == SP::BPICCNT || Opc == SP::BPICCANT; } static bool isI64CondBranchOpcode(int Opc) { return Opc == SP::BPXCC || Opc == SP::BPXCCA || Opc == SP::BPXCCNT || Opc == SP::BPXCCANT; } static bool isFCondBranchOpcode(int Opc) { return Opc == SP::FBCOND; } static bool isCondBranchOpcode(int Opc) { return isI32CondBranchOpcode(Opc) || isI64CondBranchOpcode(Opc) || isFCondBranchOpcode(Opc); } static bool isIndirectBranchOpcode(int Opc) { return Opc == SP::BINDrr || Opc == SP::BINDri; } static void parseCondBranch(MachineInstr *LastInst, MachineBasicBlock *&Target, SmallVectorImpl<MachineOperand> &Cond) { unsigned Opc = LastInst->getOpcode(); int64_t CC = LastInst->getOperand(1).getImm(); // Push the branch opcode into Cond too so later in insertBranch // it can use the information to emit the correct SPARC branch opcode. Cond.push_back(MachineOperand::CreateImm(Opc)); Cond.push_back(MachineOperand::CreateImm(CC)); Target = LastInst->getOperand(0).getMBB(); } bool SparcInstrInfo::analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB, SmallVectorImpl<MachineOperand> &Cond, bool AllowModify) const { MachineBasicBlock::iterator I = MBB.getLastNonDebugInstr(); if (I == MBB.end()) return false; if (!isUnpredicatedTerminator(*I)) return false; // Get the last instruction in the block. MachineInstr *LastInst = &*I; unsigned LastOpc = LastInst->getOpcode(); // If there is only one terminator instruction, process it. if (I == MBB.begin() || !isUnpredicatedTerminator(*--I)) { if (isUncondBranchOpcode(LastOpc)) { TBB = LastInst->getOperand(0).getMBB(); return false; } if (isCondBranchOpcode(LastOpc)) { // Block ends with fall-through condbranch. parseCondBranch(LastInst, TBB, Cond); return false; } return true; // Can't handle indirect branch. } // Get the instruction before it if it is a terminator. MachineInstr *SecondLastInst = &*I; unsigned SecondLastOpc = SecondLastInst->getOpcode(); // If AllowModify is true and the block ends with two or more unconditional // branches, delete all but the first unconditional branch. if (AllowModify && isUncondBranchOpcode(LastOpc)) { while (isUncondBranchOpcode(SecondLastOpc)) { LastInst->eraseFromParent(); LastInst = SecondLastInst; LastOpc = LastInst->getOpcode(); if (I == MBB.begin() || !isUnpredicatedTerminator(*--I)) { // Return now the only terminator is an unconditional branch. TBB = LastInst->getOperand(0).getMBB(); return false; } else { SecondLastInst = &*I; SecondLastOpc = SecondLastInst->getOpcode(); } } } // If there are three terminators, we don't know what sort of block this is. if (SecondLastInst && I != MBB.begin() && isUnpredicatedTerminator(*--I)) return true; // If the block ends with a B and a Bcc, handle it. if (isCondBranchOpcode(SecondLastOpc) && isUncondBranchOpcode(LastOpc)) { parseCondBranch(SecondLastInst, TBB, Cond); FBB = LastInst->getOperand(0).getMBB(); return false; } // If the block ends with two unconditional branches, handle it. The second // one is not executed. if (isUncondBranchOpcode(SecondLastOpc) && isUncondBranchOpcode(LastOpc)) { TBB = SecondLastInst->getOperand(0).getMBB(); return false; } // ...likewise if it ends with an indirect branch followed by an unconditional // branch. if (isIndirectBranchOpcode(SecondLastOpc) && isUncondBranchOpcode(LastOpc)) { I = LastInst; if (AllowModify) I->eraseFromParent(); return true; } // Otherwise, can't handle this. return true; } unsigned SparcInstrInfo::insertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB, ArrayRef<MachineOperand> Cond, const DebugLoc &DL, int *BytesAdded) const { assert(TBB && "insertBranch must not be told to insert a fallthrough"); assert((Cond.size() <= 2) && "Sparc branch conditions should have at most two components!"); assert(!BytesAdded && "code size not handled"); if (Cond.empty()) { assert(!FBB && "Unconditional branch with multiple successors!"); BuildMI(&MBB, DL, get(Subtarget.isV9() ? SP::BPA : SP::BA)).addMBB(TBB); return 1; } // Conditional branch unsigned Opc = Cond[0].getImm(); unsigned CC = Cond[1].getImm(); if (IsIntegerCC(CC)) { BuildMI(&MBB, DL, get(Opc)).addMBB(TBB).addImm(CC); } else { BuildMI(&MBB, DL, get(SP::FBCOND)).addMBB(TBB).addImm(CC); } if (!FBB) return 1; BuildMI(&MBB, DL, get(Subtarget.isV9() ? SP::BPA : SP::BA)).addMBB(FBB); return 2; } unsigned SparcInstrInfo::removeBranch(MachineBasicBlock &MBB, int *BytesRemoved) const { assert(!BytesRemoved && "code size not handled"); MachineBasicBlock::iterator I = MBB.end(); unsigned Count = 0; while (I != MBB.begin()) { --I; if (I->isDebugInstr()) continue; if (!isCondBranchOpcode(I->getOpcode()) && !isUncondBranchOpcode(I->getOpcode())) break; // Not a branch I->eraseFromParent(); I = MBB.end(); ++Count; } return Count; } bool SparcInstrInfo::reverseBranchCondition( SmallVectorImpl<MachineOperand> &Cond) const { assert(Cond.size() <= 2); SPCC::CondCodes CC = static_cast<SPCC::CondCodes>(Cond[1].getImm()); Cond[1].setImm(GetOppositeBranchCondition(CC)); return false; } void SparcInstrInfo::copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg, bool KillSrc) const { unsigned numSubRegs = 0; unsigned movOpc = 0; const unsigned *subRegIdx = nullptr; bool ExtraG0 = false; const unsigned DW_SubRegsIdx[] = { SP::sub_even, SP::sub_odd }; const unsigned DFP_FP_SubRegsIdx[] = { SP::sub_even, SP::sub_odd }; const unsigned QFP_DFP_SubRegsIdx[] = { SP::sub_even64, SP::sub_odd64 }; const unsigned QFP_FP_SubRegsIdx[] = { SP::sub_even, SP::sub_odd, SP::sub_odd64_then_sub_even, SP::sub_odd64_then_sub_odd }; if (SP::IntRegsRegClass.contains(DestReg, SrcReg)) BuildMI(MBB, I, DL, get(SP::ORrr), DestReg).addReg(SP::G0) .addReg(SrcReg, getKillRegState(KillSrc)); else if (SP::IntPairRegClass.contains(DestReg, SrcReg)) { subRegIdx = DW_SubRegsIdx; numSubRegs = 2; movOpc = SP::ORrr; ExtraG0 = true; } else if (SP::FPRegsRegClass.contains(DestReg, SrcReg)) BuildMI(MBB, I, DL, get(SP::FMOVS), DestReg) .addReg(SrcReg, getKillRegState(KillSrc)); else if (SP::DFPRegsRegClass.contains(DestReg, SrcReg)) { if (Subtarget.isV9()) { BuildMI(MBB, I, DL, get(SP::FMOVD), DestReg) .addReg(SrcReg, getKillRegState(KillSrc)); } else { // Use two FMOVS instructions. subRegIdx = DFP_FP_SubRegsIdx; numSubRegs = 2; movOpc = SP::FMOVS; } } else if (SP::QFPRegsRegClass.contains(DestReg, SrcReg)) { if (Subtarget.isV9()) { if (Subtarget.hasHardQuad()) { BuildMI(MBB, I, DL, get(SP::FMOVQ), DestReg) .addReg(SrcReg, getKillRegState(KillSrc)); } else { // Use two FMOVD instructions. subRegIdx = QFP_DFP_SubRegsIdx; numSubRegs = 2; movOpc = SP::FMOVD; } } else { // Use four FMOVS instructions. subRegIdx = QFP_FP_SubRegsIdx; numSubRegs = 4; movOpc = SP::FMOVS; } } else if (SP::ASRRegsRegClass.contains(DestReg) && SP::IntRegsRegClass.contains(SrcReg)) { BuildMI(MBB, I, DL, get(SP::WRASRrr), DestReg) .addReg(SP::G0) .addReg(SrcReg, getKillRegState(KillSrc)); } else if (SP::IntRegsRegClass.contains(DestReg) && SP::ASRRegsRegClass.contains(SrcReg)) { BuildMI(MBB, I, DL, get(SP::RDASR), DestReg) .addReg(SrcReg, getKillRegState(KillSrc)); } else llvm_unreachable("Impossible reg-to-reg copy"); if (numSubRegs == 0 || subRegIdx == nullptr || movOpc == 0) return; const TargetRegisterInfo *TRI = &getRegisterInfo(); MachineInstr *MovMI = nullptr; for (unsigned i = 0; i != numSubRegs; ++i) { Register Dst = TRI->getSubReg(DestReg, subRegIdx[i]); Register Src = TRI->getSubReg(SrcReg, subRegIdx[i]); assert(Dst && Src && "Bad sub-register"); MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(movOpc), Dst); if (ExtraG0) MIB.addReg(SP::G0); MIB.addReg(Src); MovMI = MIB.getInstr(); } // Add implicit super-register defs and kills to the last MovMI. MovMI->addRegisterDefined(DestReg, TRI); if (KillSrc) MovMI->addRegisterKilled(SrcReg, TRI); } void SparcInstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, Register SrcReg, bool isKill, int FI, const TargetRegisterClass *RC, const TargetRegisterInfo *TRI, Register VReg) const { DebugLoc DL; if (I != MBB.end()) DL = I->getDebugLoc(); MachineFunction *MF = MBB.getParent(); const MachineFrameInfo &MFI = MF->getFrameInfo(); MachineMemOperand *MMO = MF->getMachineMemOperand( MachinePointerInfo::getFixedStack(*MF, FI), MachineMemOperand::MOStore, MFI.getObjectSize(FI), MFI.getObjectAlign(FI)); // On the order of operands here: think "[FrameIdx + 0] = SrcReg". if (RC == &SP::I64RegsRegClass) BuildMI(MBB, I, DL, get(SP::STXri)).addFrameIndex(FI).addImm(0) .addReg(SrcReg, getKillRegState(isKill)).addMemOperand(MMO); else if (RC == &SP::IntRegsRegClass) BuildMI(MBB, I, DL, get(SP::STri)).addFrameIndex(FI).addImm(0) .addReg(SrcReg, getKillRegState(isKill)).addMemOperand(MMO); else if (RC == &SP::IntPairRegClass) BuildMI(MBB, I, DL, get(SP::STDri)).addFrameIndex(FI).addImm(0) .addReg(SrcReg, getKillRegState(isKill)).addMemOperand(MMO); else if (RC == &SP::FPRegsRegClass) BuildMI(MBB, I, DL, get(SP::STFri)).addFrameIndex(FI).addImm(0) .addReg(SrcReg, getKillRegState(isKill)).addMemOperand(MMO); else if (SP::DFPRegsRegClass.hasSubClassEq(RC)) BuildMI(MBB, I, DL, get(SP::STDFri)).addFrameIndex(FI).addImm(0) .addReg(SrcReg, getKillRegState(isKill)).addMemOperand(MMO); else if (SP::QFPRegsRegClass.hasSubClassEq(RC)) // Use STQFri irrespective of its legality. If STQ is not legal, it will be // lowered into two STDs in eliminateFrameIndex. BuildMI(MBB, I, DL, get(SP::STQFri)).addFrameIndex(FI).addImm(0) .addReg(SrcReg, getKillRegState(isKill)).addMemOperand(MMO); else llvm_unreachable("Can't store this register to stack slot"); } void SparcInstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, Register DestReg, int FI, const TargetRegisterClass *RC, const TargetRegisterInfo *TRI, Register VReg) const { DebugLoc DL; if (I != MBB.end()) DL = I->getDebugLoc(); MachineFunction *MF = MBB.getParent(); const MachineFrameInfo &MFI = MF->getFrameInfo(); MachineMemOperand *MMO = MF->getMachineMemOperand( MachinePointerInfo::getFixedStack(*MF, FI), MachineMemOperand::MOLoad, MFI.getObjectSize(FI), MFI.getObjectAlign(FI)); if (RC == &SP::I64RegsRegClass) BuildMI(MBB, I, DL, get(SP::LDXri), DestReg).addFrameIndex(FI).addImm(0) .addMemOperand(MMO); else if (RC == &SP::IntRegsRegClass) BuildMI(MBB, I, DL, get(SP::LDri), DestReg).addFrameIndex(FI).addImm(0) .addMemOperand(MMO); else if (RC == &SP::IntPairRegClass) BuildMI(MBB, I, DL, get(SP::LDDri), DestReg).addFrameIndex(FI).addImm(0) .addMemOperand(MMO); else if (RC == &SP::FPRegsRegClass) BuildMI(MBB, I, DL, get(SP::LDFri), DestReg).addFrameIndex(FI).addImm(0) .addMemOperand(MMO); else if (SP::DFPRegsRegClass.hasSubClassEq(RC)) BuildMI(MBB, I, DL, get(SP::LDDFri), DestReg).addFrameIndex(FI).addImm(0) .addMemOperand(MMO); else if (SP::QFPRegsRegClass.hasSubClassEq(RC)) // Use LDQFri irrespective of its legality. If LDQ is not legal, it will be // lowered into two LDDs in eliminateFrameIndex. BuildMI(MBB, I, DL, get(SP::LDQFri), DestReg).addFrameIndex(FI).addImm(0) .addMemOperand(MMO); else llvm_unreachable("Can't load this register from stack slot"); } Register SparcInstrInfo::getGlobalBaseReg(MachineFunction *MF) const { SparcMachineFunctionInfo *SparcFI = MF->getInfo<SparcMachineFunctionInfo>(); Register GlobalBaseReg = SparcFI->getGlobalBaseReg(); if (GlobalBaseReg) return GlobalBaseReg; // Insert the set of GlobalBaseReg into the first MBB of the function MachineBasicBlock &FirstMBB = MF->front(); MachineBasicBlock::iterator MBBI = FirstMBB.begin(); MachineRegisterInfo &RegInfo = MF->getRegInfo(); const TargetRegisterClass *PtrRC = Subtarget.is64Bit() ? &SP::I64RegsRegClass : &SP::IntRegsRegClass; GlobalBaseReg = RegInfo.createVirtualRegister(PtrRC); DebugLoc dl; BuildMI(FirstMBB, MBBI, dl, get(SP::GETPCX), GlobalBaseReg); SparcFI->setGlobalBaseReg(GlobalBaseReg); return GlobalBaseReg; } bool SparcInstrInfo::expandPostRAPseudo(MachineInstr &MI) const { switch (MI.getOpcode()) { case TargetOpcode::LOAD_STACK_GUARD: { assert(Subtarget.isTargetLinux() && "Only Linux target is expected to contain LOAD_STACK_GUARD"); // offsetof(tcbhead_t, stack_guard) from sysdeps/sparc/nptl/tls.h in glibc. const int64_t Offset = Subtarget.is64Bit() ? 0x28 : 0x14; MI.setDesc(get(Subtarget.is64Bit() ? SP::LDXri : SP::LDri)); MachineInstrBuilder(*MI.getParent()->getParent(), MI) .addReg(SP::G7) .addImm(Offset); return true; } } return false; } ```
```html <!doctype html> <html> <title>npm-whoami</title> <meta charset="utf-8"> <link rel="stylesheet" type="text/css" href="../../static/style.css"> <link rel="canonical" href="path_to_url"> <script async=true src="../../static/toc.js"></script> <body> <div id="wrapper"> <h1><a href="../cli/npm-whoami.html">npm-whoami</a></h1> <p>Display npm username</p> <h2 id="synopsis">SYNOPSIS</h2> <pre><code>npm whoami [--registry &lt;registry&gt;]</code></pre><h2 id="description">DESCRIPTION</h2> <p>Print the <code>username</code> config to standard output.</p> <h2 id="see-also">SEE ALSO</h2> <ul> <li><a href="../cli/npm-config.html">npm-config(1)</a></li> <li><a href="../misc/npm-config.html">npm-config(7)</a></li> <li><a href="../files/npmrc.html">npmrc(5)</a></li> <li><a href="../cli/npm-adduser.html">npm-adduser(1)</a></li> </ul> </div> <table border=0 cellspacing=0 cellpadding=0 id=npmlogo> <tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18>&nbsp;</td></tr> <tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td colspan=6 style="width:60px;height:10px;background:#fff">&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td></tr> <tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2>&nbsp;</td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff" rowspan=2>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff">&nbsp;</td></tr> <tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr> <tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr> </table> <p id="footer">npm-whoami &mdash; npm@6.4.1</p> ```
William Lea (b Stone, Worcestershire 6 June 1820 - d Droitwich 24 September 1889) was Archdeacon of Worcester from 1881 to 1889. Walters was educated at Brasenose College, Oxford, matriculating in 1839 and graduating B.A. in 1842, and was ordained in 1845. He was for many years the Vicar of St Peter, Droitwich. References Alumni of Brasenose College, Oxford Archdeacons of Worcester 19th-century English Anglican priests People from Wyre Forest District 1820 births 1889 deaths
```objective-c #pragma once #include "source/common/common/assert.h" #include "source/common/common/fmt.h" #include "source/common/singleton/const_singleton.h" #include "source/extensions/filters/network/dubbo_proxy/message.h" #include "absl/container/node_hash_map.h" namespace Envoy { namespace Extensions { namespace NetworkFilters { namespace DubboProxy { /** * Names of available Protocol implementations. */ class ProtocolNameValues { public: struct ProtocolTypeHash { template <typename T> std::size_t operator()(T t) const { return static_cast<std::size_t>(t); } }; using ProtocolTypeNameMap = absl::node_hash_map<ProtocolType, std::string, ProtocolTypeHash>; const ProtocolTypeNameMap protocolTypeNameMap = { {ProtocolType::Dubbo, "dubbo"}, }; const std::string& fromType(ProtocolType type) const { const auto& itor = protocolTypeNameMap.find(type); ASSERT(itor != protocolTypeNameMap.end()); return itor->second; } }; using ProtocolNames = ConstSingleton<ProtocolNameValues>; /** * Names of available serializer implementations. */ class SerializerNameValues { public: struct SerializationTypeHash { template <typename T> std::size_t operator()(T t) const { return static_cast<std::size_t>(t); } }; using SerializerTypeNameMap = absl::node_hash_map<SerializationType, std::string, SerializationTypeHash>; const SerializerTypeNameMap serializerTypeNameMap = { {SerializationType::Hessian2, "hessian2"}, }; const std::string& fromType(SerializationType type) const { const auto& itor = serializerTypeNameMap.find(type); ASSERT(itor != serializerTypeNameMap.end()); return itor->second; } }; using SerializerNames = ConstSingleton<SerializerNameValues>; class ProtocolSerializerNameValues { public: inline uint8_t generateKey(ProtocolType protocol_type, SerializationType serialization_type) const { return static_cast<uint8_t>(serialization_type) ^ static_cast<uint8_t>(protocol_type); } inline std::string generateValue(ProtocolType protocol_type, SerializationType serialization_type) const { return fmt::format("{}.{}", ProtocolNames::get().fromType(protocol_type), SerializerNames::get().fromType(serialization_type)); } #define GENERATE_PAIR(X, Y) generateKey(X, Y), generateValue(X, Y) using ProtocolSerializerTypeNameMap = absl::node_hash_map<uint8_t, std::string>; const ProtocolSerializerTypeNameMap protocolSerializerTypeNameMap = { {GENERATE_PAIR(ProtocolType::Dubbo, SerializationType::Hessian2)}, }; const std::string& fromType(ProtocolType protocol_type, SerializationType type) const { const auto& itor = protocolSerializerTypeNameMap.find(generateKey(protocol_type, type)); ASSERT(itor != protocolSerializerTypeNameMap.end()); return itor->second; } }; using ProtocolSerializerNames = ConstSingleton<ProtocolSerializerNameValues>; } // namespace DubboProxy } // namespace NetworkFilters } // namespace Extensions } // namespace Envoy ```
```chuck /*++ version 3. Alternative licensing terms are available. Contact info@minocacorp.com for details. See the LICENSE file at the root of this project for complete licensing information. Module Name: SD Abstract: This module implements the Secure Digital host controller driver. It can be used as a standalone driver or imported as a support library. Author: Evan Green 27-Feb-2014 Environment: Kernel --*/ from menv import driver; function build() { var drv; var entries; var name = "sd"; var sources; sources = [ "sd.c", "sdlib.c", "sdstd.c" ]; drv = { "label": name, "inputs": sources, }; entries = driver(drv); return entries; } ```