Jump to content

Medic873

Active Members
  • Posts

    204
  • Joined

  • Last visited

Everything posted by Medic873

  1. Wow never saw that command in the help file. Thanks so much
  2. So I have a question I have never needed to cross this bridge but it finally came up at work today. I need to execute some code that is going be inputed from a inputbox. For example [script] msgbox("Hello", "Hello"); $code = inputbox("hello", "hello"); ;Then right here it would take the variable $code and run its code that was just entered through the input box. Does tamake sense. [/script]
  3. Hello, I am trying to make a simple script. The basic concept is it will automatically re size windows on to each monitor so I don't waste time re sizing them. I understand how to re size them easily WinMove('C:\Users\medic_000\Desktop\Monitor 1.au3 - SciTE-Lite', "", 1919, 0, 1280, 1040) Here is what I need / am confused about I understand the winactive function but I need something that will give me the title of the window that is currently active so basically it would just set that as a variable and then re size witch ever window I have active currently Any help on this would be greatly appreciated. Thanks
  4. I am curious if someone that understands the Skype UDF could answer a simple question for me. Is it possible for me to make a simple script that would call a phone number play a recording and know if the users presses a button then hang up. Thanks any help is greatly helpful
  5. here is all my code still can not figure out have tried changing so many things #include <IE.au3> #include <array.au3> #Include <File.au3> #include <string.au3> #include <INet.au3> Local $tempfile = FileOpen("C:\Users\Medic873\Desktop\directory stuff\here.txt", 1) $Url = 'http://www.bbb.org/search/?type=category&input=flooring&location=Austin%2c+TX&filter=business&accredited=&radius=50&country=USA,%20CAN&language=en&codeType=YPPA&page=1&source='; $TodaysDate = InputBox("Todays Date", "Please enter todays date in the fallowing format. YYYY-MM-DD"); $AudioFile = "file.mp3"; $BBBHTML = _INetGetSource($Url);Pulls the data from the address InetClose ($BBBHTML);Closes the connection to yellow pages $HowManyPagesAreThereStart = _StringBetween($BBBHTML, ' <li class="disabled"><span>...</span></li>', '</li>'); $HowManyPagesThereAre = _StringBetween($HowManyPagesAreThereStart[0], '">', '</a>'); $PageCount = 1; Do $Url = 'http://www.bbb.org/search/?type=category&input=flooring&location=Austin%2c+TX&filter=business&accredited=&radius=50&country=USA,%20CAN&language=en&codeType=YPPA&page=' & $PageCount & '&source='; $BBBHTML = _INetGetSource($Url);Pulls the data from the address InetClose ($BBBHTML);Closes the connection to yellow pages $BBBListingHTML = _StringBetween($BBBHTML, '<td class="business-info">', '</td> '); $i = 0; Do $BBBListingUrl = _StringBetween($BBBListingHTML[$i], 'href="', '">'); FileWriteLine($tempfile, $BBBListingUrl[0]); $i = $i + 1; Until (Ubound($BBBListingHTML) = $i); $PageCount = $PageCount + 1; Until $PageCount = $HowManyPagesThereAre[0] FileClose($tempfile);Closes File For A second Local $tempfile = FileOpen("C:\Users\Medic873\Desktop\directory stuff\here.txt", 0) Local $FinishFile = FileOpen("C:\Users\Medic873\Desktop\directory stuff\finish.txt", 1); $PullContactInformation = 1; $TotalBBBPages = _FileCountLines($tempfile); Do $Contact = 0; $BBBUrl = FileReadLine($tempfile, $PullContactInformation) $BBBContactHTML = _INetGetSource($BBBUrl); InetClose ($BBBContactHTML);Closes the connection to the BBB $Name = _StringBetween($BBBContactHTML, '<meta itemprop="legalName" content="', '" />'); If UBound($Name) > 0 Then $Contact = 1; EndIf $PhoneNumber = _StringBetween($BBBContactHTML, '<meta itemprop="telephone" content="', '" />'); $City = _StringBetween($BBBContactHTML, '<meta itemprop="addressLocality" content="', '" />'); $State = _StringBetween($BBBContactHTML, '<meta itemprop="addressRegion" content="', '" />'); $Website = _StringBetween($BBBContactHTML, '<meta itemprop="url" content="', '" />'); If $Contact = 0 Then FileWriteLine($FinishFile , "," & $TodaysDate & "," & $Name[0] & "," & $City[0] & "," & $State[0] & "," & $PhoneNumber[0] & "," & "NA" & "," & $BBBUrl & "," & "" & "," & $AudioFile & "," & "0000-00-00"); EndIf $PullContactInformation = $PullContactInformation + 1; Until $PullContactInformation = $TotalBBBPages
  6. Hmmm I still have a error and I cant find out why $Contact = 0; $BBBUrl = FileReadLine($tempfile, $PullContactInformation) $BBBContactHTML = _INetGetSource($BBBurl); InetClose ($BBBContactHTML);Closes the connection to the BBB $Name = _StringBetween($BBBContactHTML, '<meta itemprop="legalName" content="', '" />'); If UBound($Name) <> 0 Then $Contact = 1; EndIf $PhoneNumber = _StringBetween($BBBContactHTML, '<meta itemprop="telephone" content="', '" />'); If UBound($PhoneNumber) <> 0 Then $Contact = 1; EndIf $City = _StringBetween($BBBContactHTML, '<meta itemprop="addressLocality" content="', '" />'); If Ubound($City) <> 0 Then $Contact = 1; EndIf $State = _StringBetween($BBBContactHTML, '<meta itemprop="addressRegion" content="', '" />'); If Ubound($State) <> 0 Then $Contact = 1; EndIf $Website = _StringBetween($BBBContactHTML, '<meta itemprop="url" content="', '" />'); If Ubound($Website) <> 0 Then $Contact = 1; EndIf If $Contact = 0 Then $FinishedFile = "C:\Users\Medic873\Desktop\directory stuff\finish.txt"; FileWriteLine($FinishedFile , "," & $TodaysDate & "," & $Name[0] & "," & $City[0] & "," & $State[0] & "," & $PhoneNumber[0] & "," & "NA" & "," & $BBBUrl & "," & "" & "," & $AudioFile & "," & "0000-00-00"); EndIf
  7. Thanks I just code not find that snippet anywhere. Thank You So Much
  8. I searched the forum and the help file but I can not find a statement for not equal. Just want to write a line to stop code from erroring out like such if ubound($Name) != 0 Then EndIf
  9. Don't know why my sample data of the file didnt post but here it is Customer Name,Full Customer Number,Store Number,Kiosk First Sale Date,Item Number,1/7/2012,1/14/2012,1/21/2012,1/28/2012,2/4/2012,2/11/2012,2/18/2012,2/25/2012,3/3/2012,3/10/2012,3/17/2012,3/24/2012,3/31/2012,4/7/2012,4/14/2012,4/21/2012,4/28/2012,5/5/2012,5/12/2012,5/19/2012,5/26/2012,6/2/2012,6/9/2012,6/16/2012,6/23/2012,6/30/2012,7/7/2012,7/14/2012,7/21/2012,7/28/2012,8/4/2012,8/11/2012,8/18/2012,8/25/2012,9/1/2012,9/8/2012,9/15/2012,9/22/2012,9/29/2012,10/6/2012,10/13/2012,10/20/2012,10/27/2012,11/3/2012,11/10/2012,11/17/2012,11/24/2012,12/1/2012,12/8/2012,12/15/2012,12/22/2012,12/29/2012 what #5893 (NOVI; MI),1012079,5893,07/18/2012,7322-1139,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,,,,,3,8,1 what #5893 (NOVI; MI),1012079,5893,07/18/2012,7323-12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,,,,,,2,20,8 what #5893 (NOVI; MI),1012079,5893,07/18/2012,7324-18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,,,,,6,9,2 what #5893 (NOVI; MI),1012079,5893,07/18/2012,7324-20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,,,,,9,19,13 what #5893 (NOVI; MI),1012079,5893,07/18/2012,7337-02,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13,8,,,,,6,28,11 what #5893 (NOVI; MI),1012079,5893,07/18/2012,7337-626,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,,,,,2,10,4 what #5893 (NOVI; MI),1012079,5893,07/18/2012,7750-04,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13,4,,,,,6,22,10 what #5893 (NOVI; MI),1012079,5893,07/18/2012,7750-05,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,3,,,,,4,11,2
  10. Okay, I have the fallowing code and the purpose is to convert some data so if a colum has a number in it the code will create a whole line for that date. While looping through I get off some how if someone can look at this it would help greatly all help is appreciated #include <IE.au3> #include <array.au3> #Include <File.au3> #include <string.au3> #include <INet.au3> $file = FileOpen("C:\Users\Medic873\Desktop\walmart backup.csv", 0) $finisheddocument = FileOpen("C:\Users\Medic873\Desktop\finisheddocument.txt", 1); Local $line = FileReadLine($file, 2) $datadivided = StringSplit($line, ',', 1) Local $datesstart = FileReadLine($file, 1) $dates = StringSplit($datesstart, ','); _ArrayDisplay($datadivided); For $x = 0 To ubound($datadivided) Step +1 $variablenumber = $x + 6; if $datadivided[$x] = "" Then Else FileWriteLine($finisheddocument, $datadivided[1] & ',' & $datadivided[2] & ',' & $datadivided[3] & ',' & $datadivided[4] & ',' & $datadivided[5] & ',' & $dates[$variablenumber] & ',' & $datadivided[$variablenumber]) EndIf Next _arraydisplay($datadivided);
  11. Never mind I found Jons email udf and this works great '?do=embed' frameborder='0' data-embedContent>> This is the best script I have used all night thanks so much
  12. I have been working on making a basic script that will open a godaddy web email compose link. All this should do is give me a nice little space to enter a email along with a message to basicly email myself. I tried using the email UDF but it only works with gmail I discovered. But here is what I have so far The only problem with this nice little scirpt is that for some reason it keeps giving me a error after logging in that says Line 585 WEnd WEnd^ ERROR This script is no where near 585 lines I am confused thanks. #include <IE.au3> #include <array.au3> #Include <File.au3> #include <string.au3> #include <INet.au3> #include <Excel.au3> $oIE = _IECreate("https://email22.secureserver.net/pcompose.php"); _IELoadWait($oIE); Sleep(100); $HTML = _IEDocReadHTML($oIE); $Title = _stringBetween($HTML, '<title>', '</title>'); if $Title[0] = "Workspace Login" Then $oForm = _IEFormGetObjByName ($oIE, "login_form");Runs the form of the webpage $EmailUsernameFeild= _IEFormElementGetObjByName ($oForm, "username");Enters the password _IEFormElementSetValue ($EmailUsernameFeild, "MyUSERNAME");Enters the password $EmailPasswordFeild= _IEFormElementGetObjByName ($oForm, "password");Enters the password _IEFormElementSetValue ($EmailPasswordFeild, "MyPASSWORD");Enters the password _IEFormSubmit($oForm); EndIf
  13. Okay I am new to functions and have very little experience with them. What I want is to have it where I define a variable called stock symbol and then it will use the function pulldata and pull all of the information as the two array #include <IE.au3> #include <array.au3> #Include <File.au3> #include <string.au3> #include <INet.au3> Global $StockSymbol = InputBox("Stock Symbol", "Enter stock symbol"); Func PullData() $x = 0;This keeps track of the loop for Stock One $BloombergDataDirty = _INetGetSource('http://www.bloomberg.com/quote/' & $StockSymbol & ':US');Pulls bloombergs data InetClose ($BloombergDataDirty);Closes the connection to bloomberg $BloombergData = _StringBetween($BloombergDataDirty, '"data_values":[', '],"');This seperates the data set $BloombergDataSet = _StringBetween($BloombergData[0], '[', ']'); $totalcount = Ubound($BloombergDataSet); Local $StockOneTime[1]; Local $StockOnePrice[1]; Do $Finished = StringSplit($BloombergDataSet[$x], ','); _ArrayAdd($StockOneTime, $Finished[1]); _ArrayAdd($StockOnePrice, $Finished[2]); $x = $x + 1; Until $x = $totalcount EndFunc _ArrayDisplay($StockOneTime); _ArrayDisplay($StockOnePrice);
  14. hmm second time this has happened it didnt include what I put in my message after the code. I wan this to exclude anything that is a /ofiheif.html type of link or anything that is a yellowpages.com/ type of link how would I do this Thanks
  15. Hello, I am pulling information from yellow pages and seem to be having a issue I want to pull any website's that are not internal links or yellowpages.com here is my current code #include <IE.au3> #include <array.au3> #Include <File.au3> #include <string.au3> #include <INet.au3> #include <Excel.au3> $YellowPagesUrl = "http://www.yellowpages.com/phoenix-az/pet-store?g=Phoenix%2C+AZ&page=2&q=pet+store";This will help us on finding the next URL. $i = 1;This will keep track of how many pofiles we have pulled from linkedin $YellowPages = _INetGetSource($YellowPagesUrl);Pulls the data from the address InetClose ($YellowPages);Closes the connection to linkedin $YellowPagesWebsite = _StringBetween($YellowPages, '<a href="', '"');List out all yellow pages links _ArrayDisplay($YellowPagesWebsite);
  16. I have a list of bounce back emails that I want to get removed from my outlook account. Long story short they are all mixed into a bunch of other junk but. I have this code #Include <Array.au3> #Include <File.au3> $File = InputBox("Email Extractor", "Please enter the path. "); $body = FileRead($File); $adresses = _adressesInBody($body) _ArrayDisplay($adresses) Func _adressesInBody($body) Local $i, $adress, $rc[1] = [0] $body = stringsplit($body, @cr & @lf & ':;, ') If @error Then Return SetError(1,0,0) For $i = 1 To $body[0] If StringInStr ($body[$i],'@') Then $adress = StringSplit($body[$i],'@',2) If UBound($adress) <> 2 Then ContinueLoop If $adress[0] = '' Then ContinueLoop If StringRight($adress[1],1) = '.' Then $adress[1] = StringReplace($adress[1],'.','',-1) If StringInStr($adress[1],'.') = 0 Then ContinueLoop If StringRight($body[$i],1) = '.' Then $body[$i] = StringReplace($body[$i],'.','',-1) If StringLeft($body[$i],1) = '.' Then $body[$i] = StringReplace($body[$i],'.','',1) $rc[0] = $rc[0] +1 _ArrayAdd($rc, $body[$i]) EndIf Next Return $rc EndFunc
  17. Has anyone been able to find out why this wont run.
  18. Okay, I have contacted this company and they have given me permission to scrape there website and I have been trying to write a simple script to scrape there website and store the information in excell but for some reason it always stops after the second one. I thought at first it was because there was no data on the second so I tried to build in a if @error function but nothing seems to be working for the ArinNumber put in 02988826 #include <IE.au3> #Include <ScreenCapture.au3> #include <Excel.au3> #include <array.au3> #Include <File.au3> #include <string.au3> #include <FileConstants.au3> #include <MsgBoxConstants.au3> #include <INet.au3> $ArinNumber = InputBox ("Start Number", "Enter the number you want to start on?"); $LoopAmount = InputBox ("Loop Count", "How many data points do you want?"); Local $oExcel = _ExcelBookNew() _ExcelWriteCell($oExcel, "Id", 1, 1) _ExcelWriteCell($oExcel, "Registration Date", 1, 2) _ExcelWriteCell($oExcel, "Company Name", 1, 3) _ExcelWriteCell($oExcel, "City", 1, 4) _ExcelWriteCell($oExcel, "Country", 1, 5) _ExcelWriteCell($oExcel, "Handle", 1, 6) _ExcelWriteCell($oExcel, "Postal Code", 1, 7) _ExcelWriteCell($oExcel, "Update Time", 1, 8) $i = 2; do $ArinData = _INetGetSource("http://whois.arin.net/rest/customer/C" & $ArinNumber); InetClose ($ArinData) if $ArinData = '0' Then $i = $i + 1; $ArinNumber = $ArinNumber + 1; else $RegistrationDate = _StringBetween ($ArinData, '<registrationDate>', '</registrationDate>');Pulls the date that this as # was registered $CompanyName = _StringBetween($ArinData, '<name>', '</name>');The name of the company $City = _StringBetween ($ArinData, '<city>', '</city>');Pulls the City name $Country = _StringBetween ($ArinData, '<name>', '</name>');Pulls the country $Handle = _StringBetween($ArinData, '<handle>', '</handle>');Pulls the handle number $PostalCode = _StringBetween($ArinData, '<postalCode>', '</postalCode>');Pulls the zip code $UpdateTime = _StringBetween($ArinData, '<updateDate>', '</updateDate>');Pulls the date and time that it was last updated _ExcelWriteCell($oExcel, $i, $i, 1);Adds the Id to the excell sheet _ExcelWriteCell($oExcel, $RegistrationDate[0], $i, 2);Adds the registration date to the excel File _ExcelWriteCell($oExcel, $CompanyName[1], $i, 3);Adds the company name to the excell File _ExcelWriteCell($oExcel, $City[0], $i, 4);Adds the city to the excell File _ExcelWriteCell($oExcel, $Country[0], $i, 5);Adds the country to the excell File _ExcelWriteCell($oExcel, $Handle[0], $i, 6);Adds the Handle to the excell File _ExcelWriteCell($oExcel, $PostalCode[0], $i, 7);Adds the postal code to the excel File _ExcelWriteCell($oExcel, $UpdateTime, $i, 8);Adds the last time the AS # was updated to the excel File $i = $i + 1;Adds on to keep the looping going $ArinNumber = $ArinNumber + 1;Adds one to the arin loop to keep it going endif Until $i = $LoopAmount
  19. Hey it looks like that will work but you can you make it out put in an array _arraydisplay ($oEmails) dose not seem to work
  20. sorry here you go and Im confused about how to use stringregexp $NameGenerator = _INetGetSource('http://www.medic873.com/email.html') $Start = _StringBetween($NameGenerator, '<', '.com') $End = _StringBetween($ _arrayDisplay($Start)
  21. No I am the one confused I am trying to use the AT Sign to find all the possible emails in the file so right now I am going between all of them and its messing up my list What function would you use for this?
  22. Hello, I run this website obviously it is my name after all medic873.com/email.html has all the data on it But here is my issue I want to pull all the email address and put them into a array. But right now I am using the @ sign to do thing and its dividing it all wired I want this Start[1]="jenifer@gmail.com" Start[2]="hello@cox.net" Here is my current code Thanks a ton $NameGenerator = _INetGetSource('http://www.behindthename.com/random/random.php?number=2&gender=f&surname=&all=no&usage_est=1&usage_lim=1') $Start = _StringBetween($NameGenerator, '<center><p><span class="heavymedium">', '</div>') $Name = _StringBetween ($Start[0], '" class="plain">', '</a>');
  23. Ya I am sorry I thought I had attached the file but I dont know what happened to it here you go Www.MicroCapCompany.com Www.PennyStockCentral.info Www.BullontheStreet.com Www.nanocaps.org Www.nanocaps.co <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 133.68386,41.869231 0.085,0.221 0.082,0.188 0.071,0.095 0.438,0.28 0.157,0.103 0.577,0.315 1.037,-0.526 0.054,-0.049 0.157,-0.019 0.6,-0.087 1.037,0.208 0.198,0.081 0.257,0.212 0.077,3.642 -0.091,-0.203 -0.225,-0.116 -0.969,-0.155 -0.266,0.06 -0.337,0.117 -0.172,0.306 0.031,0.27 0.037,0.117 -0.023,0.037 -4.043,-0.023 -0.361,-0.071 -0.09,-0.072 -0.027,-0.124 -1.027,-0.765 -0.054,-4.845 2.79,0.803" id="Bowie" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 126.48986,37.992231 1.249,1.068 1.83,1.465 1.325,0.541 0.054,4.845 -0.673,-0.442 -3.398,-0.296 -1.938,0.162 -0.022,-0.033 -0.067,-6.359 0.158,-0.018 0.084,-0.009 0.284,-0.185 0.06,-0.058 0.058,-0.131 0.018,-0.13 -0.018,-0.112 0,-0.019 -0.041,-0.086 -0.004,-0.009 0.004,-0.013 0,-0.023 0.005,-0.018 0.229,-0.347 0.006,0 0.009,-0.004 0.036,-0.018 0.076,0.003 0.676,0.226" id="Red River" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 58.238861,37.766231 5.562,0.272 -0.275,5.646 -5.548,-0.279 0.261,-5.639" id="Crosby" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 52.676861,37.501231 5.562,0.265 -0.261,5.639 -5.557,-0.271 0.256,-5.633" id="Lubbock" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 47.042861,37.118231 5.634,0.383 -0.256,5.633 -5.548,-0.355 0.17,-5.661" id="Hockley" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 42.450861,36.794231 4.592,0.324 -0.17,5.661 -4.94,-0.356 0.221,-2.353 0.297,-3.276" id="Cochran" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 59.577861,31.588231 4.547,0.248 -0.324,6.202 -5.562,-0.272 0.352,-6.237 0.987,0.059" id="Floyd" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 53.033861,31.177231 0.978,0.063 4.579,0.289 -0.352,6.237 -5.562,-0.265 0.357,-6.324" id="Hale" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 47.489861,30.807231 0.946,0.069 4.598,0.301 -0.357,6.324 -5.634,-0.383 0.447,-6.311" id="Lamb" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 47.489861,30.807231 -0.447,6.311 -4.592,-0.324 0.496,-6.175 0.009,-0.135 4.534,0.323" id="Bailey" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 59.901861,25.954231 4.007,0.211 1.533,0.082 -0.307,5.638 -1.01,-0.049 -4.547,-0.248 0.324,-5.634" id="Briscoe" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 54.362861,25.606231 3.881,0.248 1.658,0.1 -0.324,5.634 -0.987,-0.059 -4.579,-0.289 0.351,-5.634" id="Swisher" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 52.569861,25.503231 1.793,0.103 -0.351,5.634 -0.978,-0.063 -4.598,-0.301 0.388,-5.617 3.746,0.244" id="Castro" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 43.388861,24.863231 5.435,0.396 -0.388,5.617 -0.946,-0.069 -4.534,-0.323 0.433,-5.621" id="Parmer" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 58.644861,20.217231 5.611,0.329 -0.347,5.619 -4.007,-0.211 -1.658,-0.1 0.401,-5.637" id="Armstrong" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 52.952861,19.860231 5.692,0.357 -0.401,5.637 -3.881,-0.248 -1.793,-0.103 0.383,-5.643" id="Randall" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 43.388861,24.863231 0.198,-2.673 0.225,-2.965 2.137,0.149 2.221,0.112 4.783,0.374 -0.383,5.643 -3.746,-0.244 -5.435,-0.396" id="Deaf Smith" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 58.982861,14.551231 0,-0.049 5.584,0.297 -0.005,0.081 -0.306,5.666 -5.611,-0.329 0.338,-5.666" id="Carson" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 53.366861,14.204231 5.616,0.347 -0.338,5.666 -5.692,-0.357 0.414,-5.656" id="Potter" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 53.375861,14.109231 -0.009,0.095 -0.414,5.656 -4.783,-0.374 -2.221,-0.112 -2.137,-0.149 0.428,-5.687 9.136,0.571" id="Oldham" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 59.306861,8.9082296 5.562,0.315001 -0.302,5.5760004 -5.584,-0.297 0.324,-5.5940014" id="Hutchinson" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 53.731861,8.5652296 5.575,0.343 -0.324,5.5940014 0,0.049 -5.616,-0.347 0.009,-0.095 0.356,-5.5440014" id="Moore" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 44.663861,7.93423 9.068,0.6309996 -0.356,5.5440014 -9.136,-0.571 0.117,-1.511 0.307,-4.093001" id="Hartley" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 65.179861,3.46423 -0.311,5.7280006 0,0.031 -5.562,-0.315001 0.338,-5.7599996 5.535,0.316" id="Hansford" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 55.449861,2.88323 4.195,0.265 -0.338,5.7599996 -5.575,-0.343 0.379,-5.7689996 1.339,0.087" id="Sherman" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 54.110861,2.79623 -0.379,5.7689996 -9.068,-0.6309996 0.244,-3.407 0.157,-2.078 0.424,-0.252 8.622,0.599" id="Dallam" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 20.365861,58.626231 -0.166,1.816 -0.276,3.507 -0.734,8.509 -0.108,0.761 -0.104,0.375 -0.216,2.212 -0.735,0.38 -0.068,0.058 -0.576,-0.829 -0.857,-0.943 -0.838,-0.72 -0.428,-0.037 -0.167,-0.058 -1.352,-0.865 -1.614,-1.853 -1.897,-2.47 -1.4609998,-1.907 -0.95,-1.22 0.522,-0.423 0.023,-0.714 -0.32,-0.468 0.608,-6.306 11.7139998,1.195" id="Hudspeth" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 8.6518612,57.431231 -0.608,6.306 0.32,0.468 -0.023,0.714 -0.522,0.423 -1.073,-0.478 -0.352,-0.177 -0.568,-0.464 -0.144,-0.117 -0.004,-0.01 -0.041,-0.045 -0.014,-0.017 -0.089,-0.144 -0.294,-0.915 -0.906,-2.11 -0.215,-0.409 -0.375,-0.304 -1.158,-0.539 -0.847,-0.906 -0.104,-0.14 -0.018,-0.059 0.252,-1.113 0.027,-0.094 0.235,-0.554 0,-0.005 0.004,0 0.036,0.005 2.371,0.251 4.11,0.433" id="El Paso" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 57.977861,43.405231 -0.334,5.607 -1.437,-0.094 -4.142,-0.231 0.356,-5.553 5.557,0.271" id="Lynn" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 46.872861,42.779231 5.548,0.355 -0.356,5.553 -1.424,-0.081 -4.156,-0.279 0.388,-5.548" id="Terry" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 46.872861,42.779231 -0.388,5.548 -5.048,-0.369 0.496,-5.535 4.94,0.356" id="Yoakum" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 52.064861,48.687231 4.142,0.231 -0.311,5.638 -5.563,-0.32 0.308,-5.63 1.424,0.081" id="Dawson" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 41.436861,47.958231 5.048,0.369 4.156,0.279 -0.308,5.63 -0.089,-0.005 -9.226,-0.636 0.419,-5.637" id="Gaines" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 50.243861,54.231231 0.089,0.005 5.563,0.32 -0.406,5.648 -0.884,-0.045 -4.732,-0.299 0.37,-5.629" id="Martin" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 41.017861,53.595231 9.226,0.636 -0.37,5.629 -0.82,-0.054 -5.571,-0.37 -2.88,-0.229 0.415,-5.612" id="Andrews" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 49.053861,59.806231 0.82,0.054 4.732,0.299 -0.337,5.615 -5.594,-0.355 0.379,-5.613" id="Midland" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 49.053861,59.806231 -0.379,5.613 -0.338,-0.019 -4.908,-0.348 -0.347,-0.021 0.401,-5.595 5.571,0.37" id="Ector" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 43.428861,65.052231 4.908,0.348 -0.297,7.287 -0.965,-0.076 -0.347,-1.352 -0.099,-0.249 -0.031,-0.053 -0.141,-0.135 -0.531,-0.46 -0.144,-0.113 -1.352,-0.775 -0.14,0.005 -1.19,0.184 0.329,-4.611" id="Crane" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 30.831861,80.120231 -0.09,1.401 -0.316,3.89 -0.473,6.455 -0.244,3.002 -1.879,-0.614 -0.613,-0.235 -0.068,-0.026 -0.045,-0.037 -0.401,-0.32 -0.807,-0.639 -3.876,-3.674 -0.216,-0.482 -1.248,-3.136 -0.046,-0.132 -0.036,-1.27 0.172,-0.933 0.085,-1.118 -0.171,-0.743 -2.015,-4.891 -0.586,-0.374 0.068,-0.058 11.692,3.843 1.113,0.091" id="Presidio" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 21.132861,58.698231 8.946,0.802 -1.83,11.439 -9.487,4.867 0.216,-2.212 0.104,-0.375 0.108,-0.761 0.734,-8.509 0.276,-3.507 0.166,-1.816 0.767,0.072" id="Culberson" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 43.081861,65.031231 0.347,0.021 -0.329,4.611 -0.784,0.051 -0.469,-0.469 -0.311,-0.276 -0.347,-0.208 -0.69,-0.288 -0.645,0.033 -0.405,-0.009 -0.261,-0.028 -0.559,-0.126 -3.02,-1 -0.139,-0.145 -0.127,-0.226 -0.108,-0.648 0.027,-0.772 0.063,-0.442 -0.067,-0.273 -0.181,-0.29 -0.861,-0.192 3.093,0.247 5.773,0.429" id="Ward" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 40.602861,59.207231 2.88,0.229 -0.401,5.595 -5.773,-0.429 0.36,-4.494 0.64,0.051 0.563,0.039 0.767,0.059 0.612,0.049 0.267,0.019 0.085,-1.118" id="Winkler" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 30.560861,59.541231 2.794,0.229 4.314,0.338 -0.36,4.494 -3.093,-0.247 -0.234,-0.514 -0.541,-0.785 -0.108,-0.022 -0.216,0.045 -0.009,0.026 -0.027,0.023 -0.1,0.005 -0.238,-0.054 -0.086,-0.113 -1.455,-2.092 -0.641,-1.333" id="Loving" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 30.078861,59.500231 0.482,0.041 0.641,1.333 1.455,2.092 0.086,0.113 0.238,0.054 0.1,-0.005 0.027,-0.023 0.009,-0.026 0.216,-0.045 0.108,0.022 0.541,0.785 0.234,0.514 0.861,0.192 0.181,0.29 0.067,0.273 -0.063,0.442 -0.027,0.772 0.108,0.648 0.127,0.226 0.139,0.145 3.02,1 0.559,0.126 0.261,0.028 0.405,0.009 0.645,-0.033 -6.913,7.293 -5.337,-4.827 1.83,-11.439" id="Reeves" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 33.585861,75.766231 1.5,1.42 -4.254,2.934 -1.113,-0.091 -11.692,-3.843 0.735,-0.38 9.487,-4.867 5.337,4.827" id="Jeff Davis" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 35.085861,77.186231 9.109,8.595 2.651,2.465 -0.577,0.37 -1.416,0.641 -2.037,0.49 -0.261,0.158 -0.027,0.018 -1.515,2.47 -0.91,2.109 -3.047,4.519996 -0.478,0.127 -0.081,0 -1.316,-0.329 -1.109,-0.527 -3.57,-2.343996 -0.103,-0.108 -0.451,-0.464 -0.239,-0.509 0.244,-3.002 0.473,-6.455 0.316,-3.89 0.09,-1.401 4.254,-2.934" id="Brewster" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 53.393861,83.339231 -0.428,6.566 -0.198,-0.059 -0.082,-0.026 -1.077,-0.248 -0.68,-0.108 -1.082,0.076 -0.108,0.058 -0.735,-0.143 -2.158,-1.209 -2.651,-2.465 0.208,-2.966 2.488,0.158 0.27,-4.044 1.528,-0.139 0.793,-0.446 4.083,0.288 0.162,-0.017 0.609,0.126 0.442,0.356 0.072,0.815 -0.018,0.113 -1.177,2.835 -0.261,0.479" id="Terrell" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 43.099861,69.663231 1.19,-0.184 0.14,-0.005 1.352,0.775 0.144,0.113 0.531,0.46 0.141,0.135 0.031,0.053 0.099,0.249 0.347,1.352 1.501,0.681 2.172,0.676 0.704,0.22 1.118,0.934 0.937,3.178 0.058,0.332 -4.083,-0.288 -0.793,0.446 -1.528,0.139 -0.27,4.044 -2.488,-0.158 -0.208,2.966 -9.109,-8.595 -1.5,-1.42 6.913,-7.293 0.69,0.288 0.347,0.208 0.311,0.276 0.469,0.469 0.784,-0.051" id="Pecos" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 48.336861,65.400231 0.338,0.019 5.594,0.355 -0.456,7.364 -5.773,-0.451 0.297,-7.287" id="Upton" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 54.268861,65.774231 5.561,0.333 -0.072,1.217 -0.022,0.356 -0.397,5.788 -5.526,-0.33 0.456,-7.364" id="Reagan" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 55.489861,60.204231 4.683,0.274 -0.343,5.629 -5.561,-0.333 0.337,-5.615 0.884,0.045" id="Glasscock" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 61.456861,54.890231 -0.41,5.637 -0.874,-0.049 -4.683,-0.274 0.406,-5.648 5.561,0.334" id="Howard" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 57.643861,49.012231 4.138,0.203 -0.32,5.629 -0.005,0.046 -5.561,-0.334 0.311,-5.638 1.437,0.094" id="Borden" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 63.525861,43.684231 -0.293,5.522 -1.451,0.009 -4.138,-0.203 0.334,-5.607 5.548,0.279" id="Garza" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 63.232861,49.206231 4.115,0.298 -0.329,5.661 -5.557,-0.321 0.32,-5.629 1.451,-0.009" id="Scurry" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 61.461861,54.844231 5.557,0.321 -0.329,5.678 -1.699,-0.104 -3.944,-0.212 0.41,-5.637 0.005,-0.046" id="Mitchell" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 60.172861,60.478231 0.874,0.049 3.944,0.212 -0.298,5.039 -0.382,-0.139 -0.141,1.843 -4.412,-0.158 0.072,-1.217 0.343,-5.629" id="Sterling" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 59.735861,67.680231 3.033,0.176 3.263,0.217 -0.234,5.638 -3.016,-0.099 -3.443,-0.144 0.397,-5.788" id="Irion" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 47.074861,72.611231 0.965,0.076 5.773,0.451 5.526,0.33 3.443,0.144 -0.234,4.85 -0.279,5.381 -8.875,-0.504 0.261,-0.479 1.177,-2.835 0.018,-0.113 -0.072,-0.815 -0.442,-0.356 -0.609,-0.126 -0.162,0.017 -0.058,-0.332 -0.937,-3.178 -1.118,-0.934 -0.704,-0.22 -2.172,-0.676 -1.501,-0.681" id="Crockett" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 53.393861,83.339231 8.875,0.504 2.893,0.139 -0.419,8.542 -0.113,2.361 -0.126,0.965 -0.063,0.311 -0.45,1.063 -0.145,0.212 -0.045,0.009 -0.347,-0.063 -2.642,-2.367 -2.212,-2.744 -0.027,-0.073 -1.627,-1.812 -0.559,-0.193 -0.05,-0.005 -1.609,-0.103 -0.256,-0.013 -1.506,-0.167 0.428,-6.566" id="Val Verde" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 77.623861,123.35621 0.987,-0.662 0.406,0.604 4.372,0.194 -0.185,6.174 -2.619,2.669 -0.171,-0.686 -0.207,-0.838 0,-0.013 -0.347,-1.276 -0.279,-0.708 -0.591,-0.834 -0.649,-0.378 -0.744,-1.159 -0.045,-0.509 0.014,-0.05 0.054,-0.044 0.203,-0.298 0.081,-1.045 -0.144,-0.947 -0.117,-0.186 -0.01,-0.003 -0.009,-0.005" id="Zapata" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 85.227861,122.46421 2.835,0.013 0.342,0.211 -0.04,1.002 0.342,0.392 0.812,2.316 -0.145,3.472 -6.17,-0.204 0.185,-6.174 1.839,-1.028" id="Jim Hogg" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 83.203861,129.66621 6.17,0.204 1.181,0.036 -0.932,1.987 -1.092,2.109 -1.243,2.524 -0.546,0.077 -0.838,-0.37 -3.939,-1.771 -0.663,-0.428 -0.676,-1.543 -0.023,-0.089 -0.018,-0.067 2.619,-2.669" id="Starr" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 102.16086,132.45721 0.356,0.009 0.716,2.415 -0.198,0 -0.874,-2.424 m -7.432999,-0.271 5.998999,0.243 0.654,2.428 -0.455,0.565 -1.257999,0.838 -3.894,-0.69 0.018,-0.946 -0.536,-0.172 -1.113,-0.197 0.099,-0.55 0.153,-0.568 0.333,-0.951" id="Willacy" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 90.554861,129.90621 3.894,0.112 0.279,2.168 -0.333,0.951 -0.153,0.568 -0.099,0.55 1.113,0.197 0.536,0.172 -0.018,0.946 -0.072,3.656 -0.081,-0.018 -0.23,-0.035 -1.05,0.011 -0.351,0.006 -0.045,0.058 -0.384,0.153 -1.447,-0.279 -0.851,-0.167 -0.266,-0.144 -0.167,-0.112 -1.239,-0.844 -0.591,-0.706 -0.315,-0.15 -0.027,-0.009 -1.362,-0.464 -0.008,0 1.243,-2.524 1.092,-2.109 0.932,-1.987" id="Hidalgo" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 88.364861,123.69021 3.362,0.117 2.01,0.064 0.82,0.68 -0.108,5.467 -3.894,-0.112 -1.181,-0.036 0.145,-3.472 -0.812,-2.316 -0.342,-0.392" id="Brooks" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 101.65086,123.79921 0.298,0.003 -0.036,0.123 -0.163,0.739 -0.094,0.627 -0.081,0.765 -0.036,0.676 0,0.708 0.072,1.064 0.054,0.437 0.009,0.045 0.14,0.812 0.203,0.919 0.356,1.297 0.018,0.05 0.018,0.049 0.108,0.353 -0.356,-0.009 -0.762,-2.823 0,-1.599 0.009,-1.358 0.005,-0.536 0.018,-0.797 0.049,-0.613 0.055,-0.311 0.116,-0.621 m -7.093999,0.752 4.039,-0.812 -0.027,0.1 0.004,0.225 0.046,0.081 0.071,0.054 0.992,0.189 0.261,-0.022 0.121999,-0.049 0.077,-0.055 0.036,-0.058 0.175,-0.081 0.401,-0.145 0.307,-0.012 0.019,0.081 -0.276,1.802 -0.491,1.474 -0.337999,2.51 0.436999,0.577 0.284,1.604 0.031,0.415 -5.998999,-0.243 -0.279,-2.168 0.108,-5.467" id="Kenedy" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 101.65086,123.79921 1.497,-3.864 0.298,0.073 -1.497,3.794 -0.298,-0.003 m -6.475999,-4.693 0.757,0.491 0.401,0.519 0.099,0.004 5.822999,0.068 -0.581,2.032 -0.347,0.834 -0.036,0.073 -0.095,0.108 -0.081,0.05 -1.027,0.526 -1.491999,-0.072 -4.039,0.812 -0.82,-0.68 0.086,-4.792 1.352,0.027" id="Kleberg" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 91.929861,113.63021 4.029,0.099 0.956,0.802 -1.587,1.384 -0.018,1.388 -0.135,1.803 -1.352,-0.027 -0.086,4.792 -2.01,-0.064 0.203,-10.177" id="Jim Wells" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 105.50986,116.69521 -2.064,3.313 -0.298,-0.073 2.303,-3.403 0.059,0.163 m -10.334999,2.411 0.135,-1.803 0.018,-1.388 1.587,-1.384 -0.126,0.303 0.116,0.468 1.515,0.79 0.297,0.139 0.591,0.13 0.819999,0.068 0.099,-0.334 1.844,-0.04 0.793,0.04 -0.207,0.037 -0.753,0.342 -0.217,0.158 -0.152,0.306 -0.023,0.397 0.081,0.208 0.198,0.324 0.244,0.212 0.347,0.166 0.572,0.446 -0.361,0.821 -0.338,0.676 -5.822999,-0.068 -0.099,-0.004 -0.401,-0.519 -0.757,-0.491" id="Nueces" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 96.733861,112.20921 3.16,0.209 3.189999,1.189 1.412,2.241 -1.632,0.247 -0.793,-0.04 -1.844,0.04 -0.099,0.334 -0.819999,-0.068 -0.591,-0.13 -0.297,-0.139 -1.515,-0.79 -0.116,-0.468 0.126,-0.303 -0.956,-0.802 0.775,-1.52" id="San Patricio" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 108.01586,113.19821 0.153,-0.591 2.573,-1.763 0.135,-0.062 0.596,-0.257 0.887,-0.185 0.136,0.235 -1.086,0.535 -0.159,0.072 -0.013,0.013 -0.829,0.511 -0.838,0.603 -0.731,0.573 -1.054,0.916 -0.023,0.022 -0.027,0.026 0.28,-0.648 m 2.907,-7.698 2.907,0.504 0.004,0.433 -0.703,0.329 -1.118,0.455 -0.91,-0.83 -0.104,-0.3 -0.076,-0.591 m -3.557,2.623 -0.166,-0.325 -0.275,-0.699 0.879,-0.613 1.713,-0.586 0.608,-0.338 -0.167,0.15 0.6,1.426 0.031,0.035 0.5,0.093 0.316,0.217 1.321,1.19 0.103,0.103 0.095,0.131 -0.018,0.086 -2.146,1.076 -0.099,0.041 -0.829,0.234 -0.289,-0.094 -0.081,-0.077 -0.73,-0.785 -1.366,-1.265" id="Calhoun" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 104.30186,107.49621 3.064,0.627 1.366,1.265 -0.252,1.16 -3.795,0.553 0.018,0.262 0.256,0.343 0.438,0.262 0.248,0.036 0.238,0.008 -0.071,0.194 -1.447,1.091 -1.023,0.496 -0.036,-0.005 -0.222,-0.181 -3.189999,-1.189 1.932999,-2.84 2.475,-2.082" id="Refugio" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 97.301861,105.91921 0.902,1.636 1.627,0.992 1.995999,1.031 -1.932999,2.84 -3.16,-0.209 0.108,-0.084 -3.073,-6.211 0.964,-0.329 1.033,-0.356 0.148,0.09 0.09,0.157 0.401,0.222 0.357,0.148 0.54,0.073" id="Bee" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 93.705861,104.31821 1.027,1.267 -0.964,0.329 3.073,6.211 -0.108,0.084 -0.775,1.52 -4.029,-0.099 -1.132,-0.028 0.167,-7.111 2.741,-2.173" id="Live Oak" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 85.678861,106.02221 5.296,0.072 -0.177,7.508 -5.363,-0.138 0.244,-7.442" id="McMullen" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 85.434861,113.46421 5.363,0.138 1.132,0.028 -0.203,10.177 -3.362,-0.117 0.04,-1.002 -0.342,-0.211 -2.835,-0.013 0.207,-9" id="Duval" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 69.434861,111.08421 1.095,0.036 8.217,0.239 -0.023,2.231 6.711,-0.126 -0.207,9 -1.839,1.028 -4.372,-0.194 -0.406,-0.604 -0.987,0.662 -0.194,-0.017 -0.247,-0.155 -0.023,-0.008 -0.388,-0.378 -0.049,-0.054 -0.018,-0.023 -0.009,-0.009 -0.013,-0.049 0.053,-0.072 0.32,-0.429 0.181,-0.428 0.068,-0.248 0.121,-0.964 -0.41,-1.141 -0.239,-0.419 -0.154,-0.113 -0.509,-0.37 -0.261,-0.045 -0.031,0.018 -0.014,0.055 -0.446,-0.018 -1.97,-1.821 -0.356,-0.423 -1.222,-2.462 -0.968,-1.96 -0.055,-0.045 -1.356,-0.694" id="Webb" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 85.686861,105.90521 -0.008,0.117 -0.244,7.442 -6.711,0.126 0.023,-2.231 0.18,-5.589 6.76,0.135" id="La Salle" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 70.772861,105.35021 8.005,0.415 0.149,0.005 -0.18,5.589 -8.217,-0.239 0.243,-5.77" id="Dimmit" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 71.048861,99.735227 -0.276,5.614983 -0.243,5.77 -1.095,-0.036 -0.041,-0.045 -0.486,-0.536 -0.361,-0.464 -0.559,-1.718 -1.622,-4.358 -1.443,-3.19599 -0.167,-1.298993 6.293,0.267" id="Maverick" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 64.742861,92.524231 6.594,0.316 -0.288,6.894996 -6.293,-0.267 -1.302,-2.085996 0.347,0.063 0.045,-0.009 0.145,-0.212 0.45,-1.063 0.063,-0.311 0.126,-0.965 0.113,-2.361" id="Kinney" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 71.660861,84.258231 4.034,0.166 -0.149,2.782 -0.982,-0.036 -1.357,-0.162 -0.667,2.447 -0.122,1.86 0.018,1.569 -1.099,-0.044 -6.594,-0.316 0.419,-8.542 6.499,0.276" id="Edwards" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 75.545861,87.206231 0.758,0.03 -0.081,1.686 0.225,0.455 0.744,0.042 -0.14,3.6 -4.616,-0.135 -0.018,-1.569 0.122,-1.86 0.667,-2.447 1.357,0.162 0.982,0.036" id="Real" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 71.336861,92.840231 1.099,0.044 4.616,0.135 2.145,0.076 -0.27,6.887996 -7.878,-0.248 0.288,-6.894996" id="Uvalde" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 78.926861,99.983227 -0.149,5.781983 -8.005,-0.415 0.276,-5.614983 7.878,0.248" id="Zavala" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 85.809861,100.21722 -0.123,5.68799 -6.76,-0.135 -0.149,-0.005 0.149,-5.781983 6.883,0.233993" id="Frio" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 102.70586,103.48921 0.838,-0.004 0.329,0.152 0.163,0.33 0.216,0.559 0.05,2.97 -2.475,2.082 -1.995999,-1.031 -1.627,-0.992 -0.902,-1.636 2.349,-1.823 1.802999,-1.409 0.071,0 0.298,0.113 0.5,0.279 0.154,0.136 0.229,0.274" id="Goliad" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 106.46986,100.45722 0.423,0.526 1.123,0.496 0.076,0.054 0.811,1.60399 1.289,2.394 -0.067,0.031 -0.608,0.338 -1.713,0.586 -0.879,0.613 0.275,0.699 0.166,0.325 -3.064,-0.627 -0.05,-2.97 -0.216,-0.559 -0.163,-0.33 -0.329,-0.152 -0.838,0.004 3.764,-3.03199" id="Victoria" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 103.53986,96.814231 2.93,3.642989 -3.764,3.03199 -0.229,-0.274 -0.154,-0.136 -0.5,-0.279 -0.298,-0.113 -0.071,0 -1.802999,1.409 -2.002,-2.52199 1.627,-1.289 4.263999,-3.470989" id="DeWitt" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 98.000861,98.820227 1.275,1.464993 -1.627,1.289 2.002,2.52199 -2.349,1.823 -0.54,-0.073 -0.357,-0.148 -0.401,-0.222 -0.09,-0.157 -0.148,-0.09 -1.033,0.356 -1.027,-1.267 -1.023,-1.248 5.318,-4.249983" id="Karnes" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 96.774861,96.805231 1.226,2.014996 -5.318,4.249983 -2.376,-3.03798 3.191,-4.137999 0.068,0.663 0.04,0.162 0.095,0.172 0.324,-0.18 2.75,0.094" id="Wilson" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 85.872861,98.162227 4.434,1.870003 2.376,3.03798 1.023,1.248 -2.741,2.173 0.01,-0.397 -5.296,-0.072 0.008,-0.117 0.123,-5.68799 0.063,-2.054993" id="Atascosa" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 86.016861,92.506231 -0.144,5.655996 -0.063,2.054993 -6.883,-0.233993 0.27,-6.887996 4.804,0.212 0.077,0.119 0.009,0.062 -0.036,0.14 -0.098,0.148 0.004,0.258 0.067,0.153 0.045,0.039 0.041,0.006 0.505,-0.118 1.402,-1.608" id="Medina" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 77.191861,89.419231 3.457,0.162 1.298,0.166 0.59,0.306 2.272,1.244 1.528,0.838 -0.32,0.371 -1.402,1.608 -0.505,0.118 -0.041,-0.006 -0.045,-0.039 -0.067,-0.153 -0.004,-0.258 0.098,-0.148 0.036,-0.14 -0.009,-0.062 -0.077,-0.119 -4.804,-0.212 -2.145,-0.076 0.14,-3.6" id="Bandera" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 80.724861,84.659231 -0.054,1.96 4.25,0.091 -0.112,4.587 -2.272,-1.244 -0.59,-0.306 -1.298,-0.166 -3.457,-0.162 -0.744,-0.042 -0.225,-0.455 0.081,-1.686 -0.758,-0.03 0.149,-2.782 5.03,0.235" id="Kerr" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 80.801861,81.914231 3.772,0.143 4.138,0.104 -0.086,4.647 -3.705,-0.098 -4.25,-0.091 0.131,-4.705" id="Gillespie" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 91.393861,82.410231 2.474,0.829 -0.55,0.888 -1.483,4.065 -1.334,1.257 -1.875,-2.641 0.086,-4.647 2.682,0.249" id="Blanco" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 84.920861,86.710231 3.705,0.098 1.875,2.641 -2.664,2.407 -1.5,0.279 -1.528,-0.838 0.112,-4.587" id="Kendall" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 87.836861,91.856231 1.023,-0.126 0.091,0.005 1.428,0.185 0.69,0.554 0.478,1.42 0.112,0.356 0.32,0.248 0.546,0.175 1.068,0.717 0.018,0.383 -0.113,0.121 -3.191,4.137999 -4.434,-1.870003 0.144,-5.655996 0.32,-0.371 1.5,-0.279" id="Bexar" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 96.508861,90.608231 2.664,2.727 -2.398,3.47 -2.75,-0.094 -0.324,0.18 -0.095,-0.172 -0.04,-0.162 -0.068,-0.663 0.113,-0.121 -0.018,-0.383 -1.068,-0.717 -0.546,-0.175 -0.32,-0.248 -0.112,-0.356 3.542,-1.952 1.42,-1.334" id="Guadalupe" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 91.834861,88.192231 2.93,2.506 0.324,1.244 -3.542,1.952 -0.478,-1.42 -0.69,-0.554 -1.428,-0.185 -0.091,-0.005 -1.023,0.126 2.664,-2.407 1.334,-1.257" id="Comal" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 93.317861,84.127231 5.075,4.376 -0.618,0.554 -1.469,1.213 -0.072,0.342 0.104,0.019 0.171,-0.023 -1.42,1.334 -0.324,-1.244 -2.93,-2.506 1.483,-4.065" id="Hays" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 98.392861,88.503231 0.671,-0.568 3.691999,3.7 -0.023,0.023 -3.559999,1.677 -2.664,-2.727 -0.171,0.023 -0.104,-0.019 0.072,-0.342 1.469,-1.213 0.618,-0.554" id="Caldwell" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 102.73286,91.658231 1.934,2.042 -0.69,0.6 0.009,0.941 -0.446,1.573 -4.263999,3.470989 -1.275,-1.464993 -1.226,-2.014996 2.398,-3.47 3.559999,-1.677" id="Gonzales" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 104.66686,93.700231 3.019,-0.027 0.095,0.027 0.208,0.126 0.608,0.568 2.591,3.123 -1.108,0.914996 -3.187,2.550993 -3.353,-4.168989 0.446,-1.573 -0.009,-0.941 0.69,-0.6" id="Lavaca" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 110.07986,98.432227 0.203,0.207 3.723,3.673983 -0.176,3.691 -2.907,-0.504 -0.731,0.031 -1.289,-2.394 -0.811,-1.60399 -0.076,-0.054 -1.123,-0.496 3.187,-2.550993" id="Jackson" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 114.00586,102.31321 3.893,-2.351983 1.028,-1.065 0.266,0.253 0.068,0.068 0.464,1.543993 0.288,1.119 0.095,0.31999 0.027,0.041 2.231,1.758 0.041,0.022 0.685,0.063 -0.216,0.144 -0.474,0.302 -0.211,0.126 -2.556,1.488 -0.811,0.41 -1.325,0.577 -0.879,0.406 -1.623,0.829 -0.572,0.384 -0.041,0.026 -0.771,0.54 -0.338,0.253 -0.094,0.149 -0.027,-0.094 0.067,-0.109 1.834,-1.379 0.28,-2.366 -0.054,-0.058 -0.076,-0.028 -0.231,0.032 -0.517,0.122 -0.222,0.072 -0.185,0.147 -0.216,0.38 -0.004,-0.433 0.176,-3.691" id="Matagorda" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 116.50686,94.114231 0.914,2.218 0.645,1.199 0.807,0.896996 0.351,0.045 -0.297,0.423 -1.028,1.065 -3.893,2.351983 -3.723,-3.673983 0.405,-0.229 2.894,-1.816996 0.185,-0.537 0.54,-1.094 1.226,-1.262 0.974,0.414" id="Wharton" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 111.12986,89.468231 0.379,0.698 0.459,0.416 0.113,0.102 0.708,0.492 0.112,0.054 0.199,0.04 2.154,2.128 0.279,0.302 -1.226,1.262 -0.54,1.094 -0.185,0.537 -2.894,1.816996 -0.405,0.229 -0.203,-0.207 1.108,-0.914996 -2.591,-3.123 -0.608,-0.568 -0.208,-0.126 -0.095,-0.027 3.444,-4.205" id="Colorado" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 102.66086,83.698231 1.487,0.856 1.303,1.029 0.609,2.685 -3.304,3.367 -3.691999,-3.7 0.492,-0.451 1.306999,-1.329 1.41,-2.679 0.388,0.222" id="Bastrop" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 108.64186,86.884231 0.289,0.253 0.369,-0.076 0.374,-0.132 0.167,-0.085 0.428,0.284 0.163,0.473 0.103,0.506 0.023,0.287 0.572,1.074 -3.444,4.205 -3.019,0.027 -1.934,-2.042 0.023,-0.023 3.304,-3.367 2.582,-1.384" id="Fayette" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 104.66186,83.022231 2.141,-1.262 1.285,1.632 1.018,1.177 1.262,0.576 -1.726,1.739 -2.582,1.384 -0.609,-2.685 -1.303,-1.029 -1.487,-0.856 2.001,-0.676" id="Lee" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 110.55786,88.394231 0.401,-0.257 3.276,-0.391 0.203,0.041 0.514,0.224 0.55,0.195 0.261,0.018 0.118,-0.14 1.257,4.408 -0.631,1.622 -0.974,-0.414 -0.279,-0.302 -2.154,-2.128 -0.199,-0.04 -0.112,-0.054 -0.708,-0.492 -0.113,-0.102 -0.459,-0.416 -0.379,-0.698 -0.572,-1.074" id="Austin" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 114.17186,84.091231 0.122,0.162 0.126,0.09 0.08,0.027 0.605,-0.207 0.19,-0.23 0.076,-0.058 0.149,0.018 0.311,0.328 -0.049,0.51 0.68,1.361 -0.581,1.992 -0.118,0.14 -0.261,-0.018 -0.55,-0.195 -0.514,-0.224 -0.203,-0.041 -3.276,0.391 -0.401,0.257 -0.023,-0.287 -0.103,-0.506 -0.163,-0.473 -0.428,-0.284 -0.167,0.085 -0.374,0.132 -0.369,0.076 -0.289,-0.253 1.726,-1.739 1.645,-0.405 0.325,-0.091 1.685,-0.613 0.099,0.015 0.05,0.04" id="Washington" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 116.46186,86.092231 3.222,-0.266 0.018,2.001 -0.599,-0.148 -0.604,-0.338 -0.226,-0.213 -0.329,-0.244 0.154,0.497 1.357,4.332 -2.317,0.779 -1.257,-4.408 0.581,-1.992" id="Waller" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 117.13786,92.492231 2.317,-0.779 4.52,2.659 -0.419,1.816 -1.456,1.456 -0.383,0.198 -0.991,-0.014 -0.433,-0.154 -0.509,0.217 -0.56,0.581996 -0.351,-0.045 -0.807,-0.896996 -0.645,-1.199 -0.914,-2.218 0.631,-1.622" id="Fort Bend" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 123.97486,94.372231 2.335,0.297 -0.175,1.163 1.293,2.168 0.73,1.233996 -0.816,1.469993 0.122,0.095 -0.068,0.139 -2.83,2.47499 -1.474,0.671 -0.685,-0.063 -0.041,-0.022 -2.231,-1.758 -0.027,-0.041 -0.095,-0.31999 -0.288,-1.119 -0.464,-1.543993 -0.068,-0.068 -0.266,-0.253 0.297,-0.423 0.56,-0.581996 0.509,-0.217 0.433,0.154 0.991,0.014 0.383,-0.198 1.456,-1.456 0.419,-1.816" id="Brazoria" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 135.81486,94.556231 -0.334,0.154 -1,0.46 -0.077,0.036 -0.049,0.027 -0.901,0.419 -0.14,0.066 -0.405,0.217 -0.073,0.045 -0.23,0.145 -0.135,0.081 -0.04,0.031 -0.131,0.1 -0.095,0.067 -0.045,0.054 -0.032,0.027 -0.081,0.086 -0.027,0.04 -0.098,0.149 -0.046,0.068 -0.054,0.13 -0.023,0.051 -0.342,0.098 -0.194,0.01 -0.04,-0.036 -0.009,-0.151 0.18,-0.229 0.947,-1.014 0.098,-0.071 0.861,-0.41 0.577,-0.199 0.145,-0.018 0.107,-0.045 -0.058,-0.14 0,-0.185 1.744,-0.063 m -7.274,0.104 0.518,0.586 1.849,1.978 0.896,0.266 -0.613,0.537 -0.193,0.148996 -1.069,0.734 -1.344,0.924 -0.081,0.053 -0.144,0.114003 -0.405,0.30999 -0.072,0.059 -0.041,0.032 -0.162,0.153 -0.121,0.113 -0.095,0.131 -0.122,-0.095 0.816,-1.469993 -0.73,-1.233996 -1.293,-2.168 0.175,-1.163 0.541,0.541 1.122,-0.578 0.568,0.028" id="Galveston" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 119.38686,80.868231 2.573,1.56 1.195,-0.005 0.726,-0.004 0.748,0.049 2.163,2.038 0.789,2.284 -1.123,1.064 -0.73,0.69 -0.329,0.037 -0.197,-0.042 -0.119,-0.257 -0.323,-0.302 -0.812,-0.436 -1.41,-0.748 -0.528,0.459 -0.789,0.374 -0.739,0.149 -0.244,0.022 -0.536,0.027 -0.018,-2.001 -0.297,-4.958" id="Montgomery" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 119.70186,87.827231 0.536,-0.027 0.244,-0.022 0.739,-0.149 0.789,-0.374 0.528,-0.459 1.41,0.748 0.812,0.436 0.323,0.302 0.119,0.257 0.197,0.042 0.329,-0.037 0.73,-0.69 1.123,-1.064 1.339,3.629 0.572,2.68 -0.951,1.561 -0.568,-0.028 -1.122,0.578 -0.541,-0.541 -2.335,-0.297 -4.52,-2.659 -1.357,-4.332 -0.154,-0.497 0.329,0.244 0.226,0.213 0.604,0.338 0.599,0.148" id="Harris" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 134.94086,90.270231 0.946,0.008 0.123,4.022 -0.01,0.17 -0.185,0.086 -1.744,0.063 -2.348,-0.374 0.284,-0.531 0.162,-0.893 0.004,-0.117 -0.036,-0.253 -0.333,-0.657 -0.122,-0.136 -0.063,-0.023 -0.573,0.262 -0.265,0.14 -1.289,1.062 -0.572,-2.68 6.021,-0.149" id="Chambers" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 133.66086,82.081231 5.264,-0.081 -0.28,0.684 -0.098,0.298 -0.122,0.5 0.032,0.18 0.202,0.461 0.036,0.012 0.113,0.118 -0.203,1.257 -0.116,0.163 0.04,1.042 -0.072,-0.073 -0.826,-0.275 -0.156,0.022 -0.727,0.235 -0.027,0.036 -0.009,0.144 0.027,0.204 -0.031,0.081 -0.149,0.215 -0.081,0.045 -1.127,0.24 -0.176,-0.033 -0.311,-0.162 -1.69,0.036 -1.587,-4.844 2.074,-0.505" id="Hardin" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 130.28986,82.558231 1.297,0.028 1.587,4.844 1.69,-0.036 0.077,2.876 -6.021,0.149 -1.339,-3.629 -0.789,-2.284 3.498,-1.948" id="Liberty" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 134.86386,87.394231 0.311,0.162 0.176,0.033 1.127,-0.24 0.081,-0.045 0.149,-0.215 0.031,-0.081 -0.027,-0.204 0.009,-0.144 0.027,-0.036 0.727,-0.235 0.156,-0.022 0.826,0.275 0.072,0.073 0.027,0.157 0.234,0.811 0.031,0.035 1.552,1.01 0.932,0.24 0.144,0.063 0.172,0.265 0.041,0.104 0.022,0.127 -0.019,0.293 0.1,2.875 -1.041,0.167 -0.276,-0.005 -0.513,-0.005 -0.617,0.145 -0.848,0.338 -2.47,1.135 0.01,-0.17 -0.123,-4.022 -0.946,-0.008 -0.077,-2.876" id="Jefferson" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 142.95786,85.538231 -0.008,2.491 -1.285,1.791 0.019,-0.293 -0.022,-0.127 -0.041,-0.104 -0.172,-0.265 -0.144,-0.063 -0.932,-0.24 -1.552,-1.01 -0.031,-0.035 -0.234,-0.811 -0.027,-0.157 -0.04,-1.042 2.406,-0.064 2.063,-0.071" id="Orange" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 93.867861,83.239231 0.897,-2.533 1.032,-0.031 0.437,0.31 0.528,0.762 0.197,0.947 0.411,0.347 0.352,0.117 0.256,-0.009 0.753,-0.265 1.037,-0.5 0.225,0 0.706999,0.224 1.573,0.868 -1.41,2.679 -1.306999,1.329 -0.492,0.451 -0.671,0.568 -5.075,-4.376 0.55,-0.888" id="Travis" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 69.105861,43.955231 -0.284,5.625 -1.474,-0.076 -4.115,-0.298 0.293,-5.522 5.58,0.271" id="Kent" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 78.899861,79.128231 -0.104,2.718 2.006,0.068 -0.077,2.745 -5.03,-0.235 -4.034,-0.166 0.239,-5.405 7,0.275" id="Kimble" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 71.899861,78.853231 -0.239,5.405 -6.499,-0.276 -2.893,-0.139 0.279,-5.381 9.352,0.391" id="Sutton" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 65.797861,73.711231 6.323,0.275 -0.221,4.867 -9.352,-0.391 0.234,-4.85 3.016,0.099" id="Schleicher" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 72.120861,73.986231 5.643,0.238 1.235,1.939 -0.099,2.965 -7,-0.275 0.221,-4.867" id="Menard" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 78.998861,76.163231 4.336,0.148 1.401,0.298 -0.162,5.448 -3.772,-0.143 -2.006,-0.068 0.104,-2.718 0.099,-2.965" id="Mason" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 84.735861,76.609231 5.734,0.162 0.734,1.155 0.049,3.366 0.141,1.118 -2.682,-0.249 -4.138,-0.104 0.162,-5.448" id="Llano" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 96.404861,75.442231 0.884,1.676 -2.524,3.588 -0.897,2.533 -2.474,-0.829 -0.141,-1.118 -0.049,-3.366 -0.734,-1.155 0.103,-1.392 5.832,0.063" id="Burnet" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 97.288861,77.118231 1.915,0.425 0.329,0.081 3.398999,1.572 1.73,3.826 -2.001,0.676 -0.388,-0.222 -1.573,-0.868 -0.706999,-0.224 -0.225,0 -1.037,0.5 -0.753,0.265 -0.256,0.009 -0.352,-0.117 -0.411,-0.347 -0.197,-0.947 -0.528,-0.762 -0.437,-0.31 -1.032,0.031 2.524,-3.588" id="Williamson" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 110.62086,79.556231 0.594,0.455 -0.063,0.082 -0.315,0.594 0,0.036 1.028,0.245 0.946,0.441 1.195,1.704 0.166,0.978 -0.05,-0.04 -0.099,-0.015 -1.685,0.613 -0.325,0.091 -1.645,0.405 -1.262,-0.576 -1.018,-1.177 -1.285,-1.632 3.818,-2.204" id="Burleson" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 124.94386,77.888231 1.416,0.443 0.761,0.793 2.813,2.696 0.356,0.738 -3.498,1.948 -2.163,-2.038 0.315,-4.58" id="San Jacinto" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 123.74586,75.339231 1.198,2.549 -0.315,4.58 -0.748,-0.049 -0.726,0.004 -1.195,0.005 -2.573,-1.56 -0.365,-3.011 2.708,-0.865 2.016,-1.653" id="Walker" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 115.64186,78.384231 3.38,-0.527 0.365,3.011 0.297,4.958 -3.222,0.266 -0.68,-1.361 0.779,-1.159 -0.396,-0.275 -0.082,-0.144 -0.126,-0.233 -0.518,-1.737 0.094,-1.334 0.109,-1.465" id="Grimes" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 115.64186,78.384231 -0.109,1.465 -0.094,1.334 0.518,1.737 0.126,0.233 0.082,0.144 0.396,0.275 -0.779,1.159 0.049,-0.51 -0.311,-0.328 -0.149,-0.018 -0.076,0.058 -0.19,0.23 -0.605,0.207 -0.08,-0.027 -0.126,-0.09 -0.122,-0.162 -0.166,-0.978 -1.195,-1.704 -0.946,-0.441 -1.028,-0.245 0,-0.036 0.315,-0.594 0.063,-0.082 1.227,-0.621 0.302,-0.527 0.22,-0.51 0.248,-0.472 0.298,-0.465 0.139,-0.181 0.181,-0.157 0.329,-0.226 0.451,-0.298 0.234,-0.112 0.798,1.942" id="Brazos" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 114.84386,76.442231 0.766,-0.266 0.996,-0.662 1.163,-0.595 2.335,-0.032 1.626,2.105 -2.708,0.865 -3.38,0.527 -0.798,-1.942" id="Madison" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 120.35986,69.596231 0.113,0.189 0.203,0.455 0.491,1.405 -0.247,0.628 -0.046,-0.009 -0.094,0.054 -0.248,0.279 -0.554,1.752 0.013,0.168 0.113,0.37 -2.335,0.032 -1.163,0.595 -0.996,0.662 -0.766,0.266 -0.848,-4.953 0.911,-0.722 4.931,-2.644 0.522,1.473" id="Leon" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 110.93186,73.233231 3.064,-1.744 0.848,4.953 -0.234,0.112 -0.451,0.298 -0.329,0.226 -0.181,0.157 -0.139,0.181 -0.298,0.465 -0.248,0.472 -0.22,0.51 -0.302,0.527 -1.227,0.621 -0.594,-0.455 -0.532,-1.338 -0.951,-1.217 -0.645,-1.884 -0.131,-0.419 2.57,-1.465" id="Robertson" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 108.36186,74.698231 0.131,0.419 0.645,1.884 0.951,1.217 0.532,1.338 -3.818,2.204 -2.141,1.262 -1.73,-3.826 0.649,-1.759 2.105,-1.22 2.676,-1.519" id="Milam" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 101.89886,71.858231 1.537,0.542 2.25,3.817 -2.105,1.22 -0.649,1.759 -3.398999,-1.572 -0.329,-0.081 -1.915,-0.425 -0.884,-1.676 0.059,-0.442 5.434999,-3.142" id="Bell" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 99.906861,68.370231 1.991999,3.488 -5.434999,3.142 -2.894,-5.157 4.589,-2.6 1.748,1.127" id="Coryell" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 92.555861,70.434231 1.014,-0.591 2.894,5.157 -0.059,0.442 -5.832,-0.063 -1.284,-2.628 3.267,-2.317" id="Lampasas" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 90.527861,66.927231 2.028,3.507 -3.267,2.317 -0.028,-0.154 -0.419,-0.915 -1.447,-1.27 -0.351,0.333 -2.131,-0.802 -0.285,-0.374 0.041,-0.23 0.568,-0.357 1.803,-1.207 0.248,-0.987 1.004,-0.135 2.236,0.274" id="Mills" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 84.668861,69.339231 -0.041,0.23 0.285,0.374 2.131,0.802 0.351,-0.333 1.447,1.27 0.419,0.915 0.028,0.154 1.284,2.628 -0.103,1.392 -5.734,-0.162 -1.401,-0.298 0.238,-6.706 1.096,-0.266" id="San Saba" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 82.342861,69.483231 1.23,0.122 -0.238,6.706 -4.336,-0.148 -1.235,-1.939 0.212,-5.218 0.712,0.139 0.996,0.154 2.118,0.053 0.541,0.131" id="McCulloch" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 76.704861,67.860231 1.271,1.146 -0.212,5.218 -5.643,-0.238 0.32,-6.346 4.264,0.22" id="Concho" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 64.692861,65.778231 6.446,0.346 1.302,1.516 -0.32,6.346 -6.323,-0.275 0.234,-5.638 -3.263,-0.217 -3.033,-0.176 0.022,-0.356 4.412,0.158 0.141,-1.843 0.382,0.139" id="Tom Green" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 64.990861,60.739231 1.699,0.104 4.683,0.256 -0.234,5.025 -6.446,-0.346 0.298,-5.039" id="Coke" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 72.278861,61.136231 4.764,0.207 -0.338,6.517 -4.264,-0.22 -1.302,-1.516 0.234,-5.025 0.906,0.037" id="Runnels" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 77.943861,61.388231 4.742,0.195 -0.343,7.9 -0.541,-0.131 -2.118,-0.053 -0.996,-0.154 -0.712,-0.139 -1.271,-1.146 0.338,-6.517 0.901,0.045" id="Coleman" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 83.527861,61.609231 2.115,0.086 2.649,4.958 -1.004,0.135 -0.248,0.987 -1.803,1.207 -0.568,0.357 -1.096,0.266 -1.23,-0.122 0.343,-7.9 0.842,0.026" id="Brown" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 89.769861,59.442231 2.331,4.199 0.843,-0.481 0.45,0.82 0.542,0.991 -3.408,1.956 -2.236,-0.274 -2.649,-4.958 4.127,-2.253" id="Comanche" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 93.393861,63.980231 2.245,-1.249 2.52,4.512 -4.589,2.6 -1.014,0.591 -2.028,-3.507 3.408,-1.956 -0.542,-0.991" id="Hamilton" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 99.934861,60.411231 1.504999,0.414 -0.122,0.798 -0.077,0.671 0.059,0.546 1.731,3.119 0.131,0.202 0.364,0.226 -3.618999,1.983 -1.748,-1.127 -2.52,-4.512 1.546,-0.865 2.75,-1.455" id="Bosque" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 108.71386,69.325231 2.218,3.908 -2.57,1.465 -2.676,1.519 -2.25,-3.817 5.278,-3.075" id="Falls" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 107.29886,66.905231 1.415,2.42 -5.278,3.075 -1.537,-0.542 -1.991999,-3.488 3.618999,-1.983 2.646,-1.487 1.127,2.005" id="McLennan" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 101.43986,60.825231 4.254,-1.131 2.047,2.497 1.902,3.366 -2.344,1.348 -1.127,-2.005 -2.646,1.487 -0.364,-0.226 -0.131,-0.202 -1.731,-3.119 -0.059,-0.546 0.077,-0.671 0.122,-0.798" id="Hill" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 109.64286,65.557231 2.429,0.257 2.835,4.953 -0.911,0.722 -3.064,1.744 -2.218,-3.908 -1.415,-2.42 2.344,-1.348" id="Limestone" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 116.92986,63.115231 -0.098,0.603 0.968,1.798 0.699,0.704 0.37,0.136 0.874,1.031 0.095,0.736 -4.931,2.644 -2.835,-4.953 4.836,-2.785 0.022,0.086" id="Freestone" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 107.74086,62.191231 5.597,-3.255 1.024,0.473 0.595,0.542 0.387,0.464 0.924,1.118 0.505,0.752 0.135,0.744 -4.836,2.785 -2.429,-0.257 -1.902,-3.366" id="Navarro" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 96.346861,59.961231 3.61,-1.037 -0.022,1.487 -2.75,1.455 -0.838,-1.905" id="Somervell" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 105.72986,56.020231 0.528,0.019 5.508,0.091 0.833,2.415 0.739,0.391 -5.597,3.255 -2.047,-2.497 0.036,-3.674" id="Ellis" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 99.988861,55.863231 0.719999,0.014 5.021,0.143 -0.036,3.674 -4.254,1.131 -1.504999,-0.414 0.022,-1.487 0.032,-3.061" id="Johnson" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 95.120861,55.723231 4.868,0.14 -0.032,3.061 -3.61,1.037 -1.258,-3.624 0.032,-0.614" id="Hood" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 95.088861,56.337231 1.258,3.624 0.838,1.905 -1.546,0.865 -2.245,1.249 -0.45,-0.82 -0.843,0.481 -2.331,-4.199 0.911,-3.232 4.408,0.127" id="Erath" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 83.956861,55.989231 5.629,0.167 1.095,0.054 -0.911,3.232 -4.127,2.253 -2.115,-0.086 0.23,-5.626 0.199,0.006" id="Eastland" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 78.367861,55.795231 5.39,0.188 -0.23,5.626 -0.842,-0.026 -4.742,-0.195 0.235,-5.602 0.189,0.009" id="Callahan" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 78.178861,55.786231 -0.235,5.602 -0.901,-0.045 -4.764,-0.207 0.306,-5.683 5.594,0.333" id="Taylor" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 72.584861,55.453231 -0.306,5.683 -0.906,-0.037 -4.683,-0.256 0.329,-5.678 5.566,0.288" id="Nolan" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 68.821861,49.580231 4.034,0.225 -0.271,5.648 -5.566,-0.288 0.329,-5.661 1.474,0.076" id="Fisher" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 72.855861,49.805231 1.672,0.068 4.056,0.203 -0.216,5.719 -0.189,-0.009 -5.594,-0.333 0.271,-5.648" id="Jones" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 78.583861,50.076231 1.519,0.055 4.039,0.139 -0.185,5.719 -0.199,-0.006 -5.39,-0.188 0.216,-5.719" id="Shackelford" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 85.705861,50.324231 4.042,0.148 -0.162,5.684 -5.629,-0.167 0.185,-5.719 1.564,0.054" id="Stephens" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 91.370861,49.824231 3.989,0.153 -0.239,5.746 -0.032,0.614 -4.408,-0.127 -1.095,-0.054 0.162,-5.684 1.623,-0.648" id="Palo Pinto" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 95.359861,49.977231 1.447,0.058 4.064999,0.162 -0.163,5.68 -0.719999,-0.014 -4.868,-0.14 0.239,-5.746" id="Parker" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 100.87186,50.197231 1.568,0.077 3.944,0.121 -0.126,5.644 -0.528,-0.019 -5.021,-0.143 0.163,-5.68" id="Tarrant" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 106.38386,50.395231 2.019,-0.017 3.534,0.094 -0.036,2.182 -0.135,3.476 -5.508,-0.091 0.126,-5.644" id="Dallas" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 114.30386,50.490231 -0.006,1.811 -2.397,0.353 0.036,-2.182 2.367,0.018" id="Rockwall" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 114.29786,52.301231 2.381,0.046 0.004,6.224 -4.084,-0.026 -0.833,-2.415 0.135,-3.476 2.397,-0.353" id="Kaufman" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 118.98586,50.522231 2.127,0.243 0.333,3.106 -3.231,-1.506 0.771,-1.843" id="Rains" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 118.21486,52.365231 3.231,1.506 0.442,0.429 0.019,2.68 1.333,1.42 0.244,0.186 -6.801,-0.015 -0.004,-6.224 1.536,0.018" id="Van Zandt" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 116.68286,58.571231 6.801,0.015 -0.099,2.84 0.346,0.657 -6.801,1.032 -0.022,-0.086 -0.135,-0.744 -0.505,-0.752 -0.924,-1.118 -0.387,-0.464 -0.595,-0.542 -1.024,-0.473 -0.739,-0.391 4.084,0.026" id="Henderson" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 123.73086,62.083231 -0.193,1.754 0.176,0.931 0.406,1.461 0.765,0.698 0.149,0.032 0.249,0.302 0.153,0.32 0.157,0.5 0.032,0.127 -0.153,0.216 -2.408,0.375 -1.739,0.306 -0.965,0.491 -0.522,-1.473 -0.095,-0.736 -0.874,-1.031 -0.37,-0.136 -0.699,-0.704 -0.968,-1.798 0.098,-0.603 6.801,-1.032" id="Anderson" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 120.35986,69.596231 0.965,-0.491 1.739,-0.306 2.408,-0.375 0.703,0.271 1.09,1.117 1.19,0.735 0.505,0.501 -5.214,4.291 -2.016,1.653 -1.626,-2.105 -0.113,-0.37 -0.013,-0.168 0.554,-1.752 0.248,-0.279 0.094,-0.054 0.046,0.009 0.247,-0.628 -0.491,-1.405 -0.203,-0.455 -0.113,-0.189" id="Houston" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 130.26286,74.134231 -3.903,4.197 -1.416,-0.443 -1.198,-2.549 5.214,-4.291 1.303,3.086" id="Trinity" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 133.37686,75.221231 -1.055,0.626 1.339,6.234 -2.074,0.505 -1.297,-0.028 -0.356,-0.738 -2.813,-2.696 -0.761,-0.793 3.903,-4.197 1.252,0.524 0.961,0.202 0.901,0.361" id="Polk" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 143.95586,73.499231 0.513,-0.135 0.041,4.088 -0.199,0.865 -1.582,2.979 -0.126,0.451 0,0.005 0.032,0.034 0.311,0.375 0.157,0.804 -0.004,0.067 -0.045,0.112 -0.425,0.357 -0.012,0.012 0.341,2.025 -2.063,0.071 0.167,-5.475 0.027,-3.616 -0.56,-2.704 3.427,-0.315" id="Newton" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 139.12286,74.148231 1.406,-0.334 0.56,2.704 -0.027,3.616 -0.167,5.475 -2.406,0.064 0.116,-0.163 0.203,-1.257 -0.113,-0.118 -0.036,-0.012 -0.202,-0.461 -0.032,-0.18 0.122,-0.5 0.098,-0.298 0.28,-0.684 -0.167,-0.271 -0.116,-0.379 0.03,-0.099 0.249,-0.479 -0.054,-0.517 -0.788,-1.564 -0.1,-0.085 -0.249,-0.036 -0.067,-0.014 -0.026,-0.031 -0.744,-2.169 0.076,-0.432 -0.04,-0.103 -0.131,-0.136 -0.514,-0.198 -0.654,0.018 -1.099,0.031 3.606,-0.915 0.986,-0.473" id="Jasper" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 134.53086,75.536231 1.099,-0.031 0.654,-0.018 0.514,0.198 0.131,0.136 0.04,0.103 -0.076,0.432 0.744,2.169 0.026,0.031 0.067,0.014 0.249,0.036 0.1,0.085 0.788,1.564 0.054,0.517 -0.249,0.479 -0.03,0.099 0.116,0.379 0.167,0.271 -5.264,0.081 -1.339,-6.234 1.055,-0.626 1.154,0.315" id="Tyler" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 129.95186,69.231231 0.468,0.518 2.037,0.523 0.492,-0.081 0.432,0.181 0.582,0.305 0.14,0.15 1.829,2.217 2.205,1.577 -3.606,0.915 -1.154,-0.315 -0.901,-0.361 -0.961,-0.202 -1.252,-0.524 -1.303,-3.086 -0.505,-0.501 1.497,-1.316" id="Angelina" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 141.24186,68.265231 1.185,1.245 1.01,1.465 0.329,1.434 0.076,0.423 0.114,0.667 -3.427,0.315 -1.406,0.334 -0.094,-0.302 -0.04,-1.798 0.009,-1.456 0.468,-0.504 0.184,-0.235 -0.044,-1.329 1.636,-0.259" id="Sabine" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 139.60586,68.524231 0.044,1.329 -0.184,0.235 -0.468,0.504 -0.009,1.456 0.04,1.798 0.094,0.302 -0.986,0.473 -2.205,-1.577 0.059,-1.541 0.081,-2.944 -0.766,-0.856 -0.261,-0.181 3.385,0.361 1.176,0.641" id="San Augustine" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 133.74686,63.403231 5.408,-0.175 1.537,1.717 0.55,3.32 -1.636,0.259 -1.176,-0.641 -3.385,-0.361 -0.627,-2.456 -0.671,-1.663" id="Shelby" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 129.12286,65.125231 5.295,-0.059 0.627,2.456 0.261,0.181 0.766,0.856 -0.081,2.944 -0.059,1.541 -1.829,-2.217 -0.14,-0.15 -0.582,-0.305 -0.432,-0.181 -0.492,0.081 -2.037,-0.523 -0.468,-0.518 -0.596,-0.587 -0.053,-0.085 -0.27,-0.734 -0.2,-0.744 -0.117,-1.155 0.407,-0.801" id="Nacogdoches" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 123.38486,61.426231 5.17,-0.074 0.568,3.773 -0.407,0.801 0.117,1.155 0.2,0.744 0.27,0.734 0.053,0.085 0.596,0.587 -1.497,1.316 -1.19,-0.735 -1.09,-1.117 -0.703,-0.271 0.153,-0.216 -0.032,-0.127 -0.157,-0.5 -0.153,-0.32 -0.249,-0.302 -0.149,-0.032 -0.765,-0.698 -0.406,-1.461 -0.176,-0.931 0.193,-1.754 -0.346,-0.657" id="Cherokee" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 138.74886,57.905231 0.055,2.537 0.351,2.786 -5.408,0.175 -0.964,0.023 -0.037,-1.379 0.211,-1.596 0.239,-0.596 0.347,-0.612 0.326,-0.789 0.008,-0.491 0.311,0.275 1.176,0.505 0.091,0.017 3.294,-0.855" id="Panola" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 132.92586,57.971231 0.951,-0.008 -0.008,0.491 -0.326,0.789 -0.347,0.612 -0.239,0.596 -0.211,1.596 0.037,1.379 0.964,-0.023 0.671,1.663 -5.295,0.059 -0.568,-3.773 -0.041,-2.992 1.916,-0.041 1.798,-0.018 0.698,-0.33" id="Rusk" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 128.47286,56.187231 0.176,-0.018 1.632,-0.699 0.644,-0.896 0.081,-0.036 0.509,0.058 0.032,0.063 0.04,2.579 0.014,0.387 0.645,0.311 0.572,0.075 0.108,-0.04 -0.698,0.33 -1.798,0.018 -1.916,0.041 -0.041,-2.173" id="Gregg" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 121.88786,54.300231 0.979,0.877 0.31,0.136 3.114,0.78 0.078,-0.009 0.207,-0.101 0.099,-0.201 1.798,0.405 0.041,2.173 0.041,2.992 -5.17,0.074 0.099,-2.84 -0.244,-0.186 -1.333,-1.42 -0.019,-2.68" id="Smith" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 126.63486,50.045231 0.013,1.437 0.027,4.3 -0.099,0.201 -0.207,0.101 -0.078,0.009 -3.114,-0.78 -0.31,-0.136 -0.979,-0.877 -0.442,-0.429 -0.333,-3.106 3.84,-0.049 1.682,-0.671" id="Wood" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 131.51986,52.843231 2.127,1.252 1.326,-0.012 0.356,-0.181 1.285,-0.166 0.76,-0.063 0.551,0.067 0.739,0.275 0.085,3.89 -3.294,0.855 -0.091,-0.017 -1.176,-0.505 -0.311,-0.275 -0.951,0.008 -0.108,0.04 -0.572,-0.075 -0.645,-0.311 -0.014,-0.387 -0.04,-2.579 -0.027,-1.816" id="Harrison" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 126.64786,51.482231 4.66,-0.082 0.158,0.329 0.054,1.114 0.027,1.816 -0.032,-0.063 -0.509,-0.058 -0.081,0.036 -0.644,0.896 -1.632,0.699 -0.176,0.018 -1.798,-0.405 -0.027,-4.3" id="Upshur" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 126.63486,50.045231 0.279,-0.276 0.919,-0.501 0.239,-0.046 0.194,-0.003 0.635,0.01 0.145,0.049 0.572,0.708 0.604,0.414 1.086,1 -4.66,0.082 -0.013,-1.437" id="Camp" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 132.02486,51.717231 6.594,-0.136 0.045,2.434 -0.739,-0.275 -0.551,-0.067 -0.76,0.063 -1.285,0.166 -0.356,0.181 -1.326,0.012 -2.127,-1.252 -0.054,-1.114 0.559,-0.012" id="Marion" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 131.97486,46.676231 0.027,0.124 0.09,0.072 0.361,0.071 4.043,0.023 0.023,-0.037 -0.037,-0.117 -0.031,-0.27 0.172,-0.306 0.337,-0.117 0.266,-0.06 0.969,0.155 0.225,0.116 0.091,0.203 0.068,3.259 0.04,1.789 -6.594,0.136 -0.05,-5.041" id="Cass" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 130.27486,45.469231 0.673,0.442 1.027,0.765 0.05,5.041 -0.559,0.012 -0.158,-0.329 -1.086,-1 0.053,-4.931" id="Morris" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 130.27486,45.469231 -0.053,4.931 -0.604,-0.414 -0.572,-0.708 -0.145,-0.049 -0.635,-0.01 -0.194,0.003 -0.239,0.046 -0.919,0.501 -0.037,-4.596 3.398,0.296" id="Titus" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 126.87686,45.173231 0.037,4.596 -0.279,0.276 -1.682,0.671 -0.036,-5.364 0.022,-0.017 1.938,-0.162" id="Franklin" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 118.98986,47.417231 0.884,-0.524 0.482,-0.563 1.334,-0.609 0.257,-0.108 0.55,-0.018 2.42,-0.243 0.036,5.364 -3.84,0.049 -2.127,-0.243 0.004,-3.105" id="Hopkins" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 119.03086,44.280231 0.834,-0.388 0.198,-0.054 1.487,0.108 0.208,0.032 1.176,0.369 0.208,0.09 1.086,0.739 0.689,0.126 0.022,0.033 -0.022,0.017 -2.42,0.243 -0.55,0.018 -0.257,0.108 -1.334,0.609 -0.482,0.563 -0.884,0.524 0.028,-2.465 0.013,-0.672" id="Delta" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 119.01786,44.952231 -0.028,2.465 -0.004,3.105 -0.771,1.843 -1.536,-0.018 -2.381,-0.046 0.006,-1.811 0.035,-4.795 4.679,-0.743" id="Hunt" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 108.56486,44.969231 4.819,0.13 0.955,0.596 -0.035,4.795 -2.367,-0.018 -3.534,-0.094 0.162,-5.409" id="Collin" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 102.68786,44.577231 4.706,0.239 1.171,0.153 -0.162,5.409 -2.019,0.017 -3.944,-0.121 0.248,-5.697" id="Denton" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 96.958861,44.433231 4.615999,0.085 1.113,0.059 -0.248,5.697 -1.568,-0.077 -4.064999,-0.162 0.152,-5.602" id="Wise" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 91.578861,43.883231 4.736,0.108 0.644,0.442 -0.152,5.602 -1.447,-0.058 -3.989,-0.153 0.194,-5.025 0.014,-0.916" id="Jack" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 85.849861,44.618231 5.715,0.181 -0.194,5.025 -1.623,0.648 -4.042,-0.148 0.144,-5.706" id="Young" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 80.296861,44.411231 5.553,0.207 -0.144,5.706 -1.564,-0.054 -4.039,-0.139 0.194,-5.72" id="Throckmorton" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 74.743861,44.217231 5.553,0.194 -0.194,5.72 -1.519,-0.055 -4.056,-0.203 0.216,-5.656" id="Haskell" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 69.105861,43.955231 5.638,0.262 -0.216,5.656 -1.672,-0.068 -4.034,-0.225 0.284,-5.625" id="Stonewall" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 63.800861,38.038231 5.562,0.252 -0.257,5.665 -5.58,-0.271 0.275,-5.646" id="Dickens" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 64.124861,31.836231 1.01,0.049 4.539,0.21 -0.311,6.195 -5.562,-0.252 0.324,-6.202" id="Motley" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 69.691861,26.463231 1.316,0.067 -0.284,5.621 -1.05,-0.056 -4.539,-0.21 0.307,-5.638 4.25,0.216" id="Hall" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 69.979861,20.820231 -0.288,5.643 -4.25,-0.216 -1.533,-0.082 0.347,-5.619 5.724,0.274" id="Donley" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 64.561861,14.880231 5.675,0.284 -0.257,5.656 -5.724,-0.274 0.306,-5.666" id="Gray" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 64.868861,9.2232306 0,-0.031 5.575,0.297 0.068,0.004 -0.275,5.6710004 -5.675,-0.284 0.005,-0.081 0.302,-5.5760004" id="Roberts" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 66.527861,3.53123 4.196,0.211 -0.28,5.7470006 -5.575,-0.297 0.311,-5.7280006 1.348,0.067" id="Ochiltree" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 70.723861,3.74223 5.58,0.249 -0.212,5.7650006 -5.58,-0.263 -0.068,-0.004 0.28,-5.7470006" id="Lipscomb" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 76.091861,9.7562306 -0.095,2.2660004 -0.139,3.399 -5.621,-0.257 0.275,-5.6710004 5.58,0.263" id="Hemphill" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 70.236861,15.164231 5.621,0.257 -0.239,5.661 -5.639,-0.262 0.257,-5.656" id="Wheeler" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 69.979861,20.820231 5.639,0.262 -0.086,1.974 -0.153,3.682 -4.372,-0.208 -1.316,-0.067 0.288,-5.643" id="Collingsworth" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 71.007861,26.530231 4.372,0.208 -0.072,2.398 -0.14,3.236 -4.444,-0.221 0.284,-5.621" id="Childress" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 69.673861,32.095231 1.05,0.056 4.444,0.221 -0.045,1.132 -0.118,-0.231 -0.297,0.028 -0.104,0.113 -0.234,5.096 -5.007,-0.22 0.311,-6.195" id="Cottle" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 69.362861,38.290231 5.007,0.22 0.555,0.028 -0.181,5.679 -5.638,-0.262 0.257,-5.665" id="King" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 80.431861,40.079231 -0.135,4.332 -5.553,-0.194 0.181,-5.679 1.712,0.072 1.438,0.279 1.636,0.361 0.541,0.383 0.153,0.279 0.027,0.167" id="Knox" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 75.122861,33.504231 1.929,1.491 2.74,0.884 0.636,-0.105 0.121,-0.126 0.041,-0.126 -0.122,3.255 -0.036,1.302 -0.027,-0.167 -0.153,-0.279 -0.541,-0.383 -1.636,-0.361 -1.438,-0.279 -1.712,-0.072 -0.555,-0.028 0.234,-5.096 0.104,-0.113 0.297,-0.028 0.118,0.231" id="Foard" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 76.852861,29.906231 0.55,0.713 0.266,0.315 0.739,0.703 0.325,0.077 0.09,0 0.41,-0.004 0.411,-0.519 0.058,-0.022 0.117,0.017 0.505,0.059 0.162,0.068 0.262,0.153 -0.158,4.056 -0.041,0.126 -0.121,0.126 -0.636,0.105 -2.74,-0.884 -1.929,-1.491 0.045,-1.132 0.14,-3.236 1.545,0.77" id="Hardeman" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 86.034861,38.966231 5.642,0.135 -0.098,4.782 -0.014,0.916 -5.715,-0.181 0.185,-5.652" id="Archer" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 86.034861,38.966231 -0.185,5.652 -5.553,-0.207 0.135,-4.332 0.036,-1.302 5.567,0.189" id="Baylor" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 83.505861,32.362231 -0.013,0.298 -0.009,0.28 0.184,1 0,0.004 0.005,0.006 0.135,0.04 0.216,0.067 0.397,0.09 0.198,-0.009 0.428,-0.008 0.978,0.077 0.014,0 0.149,0.075 -0.153,4.684 -5.567,-0.189 0.122,-3.255 0.158,-4.056 0.347,0.329 0.356,0.031 0.081,-0.035 0.009,0 0.014,-0.023 0.004,-0.01 0.455,-0.815 0.464,0.252 0.528,0.284 0.5,0.87 0,0.013" id="Wilbarger" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 89.806861,34.837231 0.108,0.008 0.235,0.155 0.243,0.207 0.504,0.811 0.303,0.109 0.004,0.004 0.009,-0.009 0.568,-0.51 -0.104,3.489 -5.642,-0.135 0.153,-4.684 0.982,0.587 0.978,0.239 0.694,0.026 0.965,-0.297" id="Wichita" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 95.115861,36.622231 0.185,0.37 0.027,0.027 0.018,0.004 0.451,0.135 0.23,0 0.013,-0.004 0.37,-0.09 0.397,0.157 0.004,0.005 -0.095,0.689 -0.275,0.595 -0.126,5.481 -4.736,-0.108 0.098,-4.782 0.104,-3.489 0.428,-0.541 0.207,-0.117 0.406,0.091 1.65,0.518 0.644,1.059" id="Clay" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 101.70586,38.272231 -0.131,6.246 -4.615999,-0.085 -0.644,-0.442 0.126,-5.481 0.118,0.109 0.941,0.429 0.127,0.012 0.333,-0.099 0.532,-0.419 0.559,-0.581 0.365,-0.46 1.085999,0.725 0.383,0.267 0.821,-0.221" id="Montague" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 107.45186,37.915231 -0.058,6.901 -4.706,-0.239 -1.113,-0.059 0.131,-6.246 0.211,0.964 0.028,0.067 0.009,0.023 0,0.005 0.063,0.076 0.094,0.063 3.106,1.357 0.149,0.05 0.171,0.022 0.153,-0.049 0.108,-0.086 0.05,-0.067 1.604,-2.782" id="Cooke" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 119.17486,39.367231 -0.144,4.913 -0.013,0.672 -4.679,0.743 -0.955,-0.596 0.072,-4.272 0.103,0.141 1.591,-0.393 0.221,-0.059 0.194,-0.083 0.013,-0.016 0.1,-0.104 0.013,-0.017 0.005,-0.009 0.027,-0.086 0.031,-0.099 0.009,-0.036 0.005,-0.032 0.067,-0.311 0.09,-0.316 0.541,-0.125 1.199,-0.1 0.23,-0.017 0.145,-0.015 0.617,0.122 0.518,0.095" id="Fannin" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 107.55586,37.857231 0.541,1.112 0.175,0.196 0.108,0.075 1.006,0.308 0.518,-0.087 0.009,-0.004 1.068,-0.482 -0.036,0.207 0.009,0.159 0.009,0.062 0.009,0.031 1.095,0.735 0.099,0.068 0.014,0 0.546,-0.104 0.126,0.014 0.14,0.045 0,0.004 0.464,0.631 -0.072,4.272 -4.819,-0.13 -1.171,-0.153 0.058,-6.901 0.104,-0.058" id="Grayson" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 124.84986,38.943231 0.067,6.359 -0.689,-0.126 -1.086,-0.739 -0.208,-0.09 -1.176,-0.369 -0.208,-0.032 -1.487,-0.108 -0.198,0.054 -0.834,0.388 0.144,-4.913 0.915,-0.343 0.004,-0.004 0.893,-0.465 0.78,-0.405 0.346,0.018 0.081,0.032 0.113,0.288 -0.003,0.086 -0.032,0.091 0.003,0.066 0,0.009 0.042,0.072 0.04,0.036 1.055,0.14 0.4,0.032 0.722,-0.036 0.005,0 0.311,-0.041" id="Lamar" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 103.08386,113.60721 0.222,0.181 0.036,0.005 1.023,-0.496 1.447,-1.091 0.071,-0.194 -0.238,-0.008 -0.248,-0.036 -0.438,-0.262 -0.256,-0.343 -0.018,-0.262 3.795,-0.553 -0.095,0.594 0.135,0.217 0,0.072 -0.153,0.333 -0.113,0.086 -1.437,1.181 -0.32,0.004 -0.997,1.29 -1.004,1.523 -1.412,-2.241 m 4.932,-0.409 -0.28,0.648 -2.226,2.849 -0.059,-0.163 2.565,-3.334" id="Aransas" inkscape:connector-curvature="0" /> <path style="font-size:12px;fill:#d0d0d0;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" d="m 95.773861,135.57021 3.894,0.69 1.257999,-0.838 0.455,-0.565 0.055,0.028 0.54,0.757 -0.031,1.082 0.405,2.01 0.865,1.439 0.028,0.031 -0.136,0.441 -2.131,1.277 -1.036999,-0.317 -0.163,-0.099 -0.161,-0.125 -0.668,-0.528 -0.982,-1.095 -0.041,-0.145 -1.334,-0.233 -0.888,-0.154 0.072,-3.656 m 7.260999,-0.689 0.198,0 0.32,1.343 0.1,0.505 0.135,0.951 0.203,1.605 -0.054,-0.01 -0.032,-0.004 -0.094,-0.131 -0.104,-0.869 0.013,-0.397 -0.054,-0.474 -0.113,-0.729 -0.225,-1.05 -0.135,-0.41 -0.158,-0.33" id="Cameron" inkscape:connector-curvature="0" /> </svg>
  24. I dont think so its currently just a .txt file
  25. Okay I have not spent to long on this project but I am a little confused. I have a text file that needs to be formatted currently its a list of all counties in Texas witch is great but I want it to be like this id="$County - $State" In this case id="Bowie - Texas" Well I have made it where the program pulls the list from my desktop text file and gets the data as an array and edits it but I can get it to write the line from where it came. Any help is greatly appreciated here is the full code and the text file I am working with #include <FileConstants.au3> #include <MsgBoxConstants.au3> #include <IE.au3> #Include <ScreenCapture.au3> #include <Excel.au3> #include "array.au3" #Include <File.au3> #include <string.au3> #include <INet.au3> Local $aArray = FileRead("C:\Users\development\Desktop\raw.txt") $New = _StringBetween($aArray, 'id="', '"'); $i = 0; $Total = Ubound($New); Do $New[$i] = $New[$i] & " - Texas"; $i = $i + 1 Until $i = $Total _ArrayDisplay($New);
×
×
  • Create New...