Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH | ||||
5318430 | 11 days ago | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
DogTest
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./DogData.sol"; import "erc721a/contracts/ERC721A.sol"; import "base64-sol/base64.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract DogTest is ERC721A, Ownable, DogData, ReentrancyGuard { address public deployer; bytes32 private lastBlockHash; uint256 private lastBlockNumber; /// Mint Settings uint public maxSupply = 2500; uint public mintPrice = 0.003 ether; bool public mintEnabled = false; /// Mint Rules uint public maxMintPerTrans = 100; uint public maxMintPerWallet = 100; /// Whitelist Settings mapping(address => uint) public mintAmount; mapping(address => bool) public whiteListed; /// Whitelist setup address public listController; modifier onlylistController() { require(msg.sender == listController, "Controller Only"); _; } constructor() ERC721A("Pocket Dogs", "POKEDOGS") { lastBlockHash = blockhash(block.number - 1); lastBlockNumber = block.number; _transferOwnership(msg.sender); } function _startTokenId() internal pure override returns (uint256) { return 1; } function mint(uint256 quantity) external payable { uint256 cost = mintPrice; require(mintEnabled, "Mint not ready yet"); require(msg.value == quantity * cost, "Please send the exact ETH amount"); require(quantity <= maxMintPerTrans, "Exceeds max mint per transaction"); // Check if the mint quantity exceeds the per wallet limit uint256 totalMintedByWallet = mintAmount[msg.sender] + quantity; require(totalMintedByWallet <= maxMintPerWallet, "Exceeds max mint per wallet"); mintAmount[msg.sender] = mintAmount[msg.sender] + totalMintedByWallet; // Start minting _internalMint(quantity); } function _internalMint(uint256 quantity) internal { require(_totalMinted() + quantity <= maxSupply, "Sold Out!"); // What token do we start minting with? uint startTokenID = _startTokenId() + _totalMinted(); uint mintUntilTokenID = quantity + startTokenID; for(uint256 tokenId = startTokenID; tokenId < mintUntilTokenID; tokenId++) { /// got get our random traits uint[6] memory randomSeeds = _randomSeed(lastBlockHash,tokenId); /// set this new Dog traits! _setDogTraits(tokenId, randomSeeds); } lastBlockHash = blockhash(block.number - 1); lastBlockNumber = block.number; _safeMint(msg.sender, quantity); } function _randomSeed(bytes32 _lastBlockHash, uint256 _tokenId) internal pure returns (uint[6] memory _randomSeeds) { // Initial seed _randomSeeds[0] = uint256(keccak256(abi.encodePacked(_lastBlockHash, _tokenId))) % 101; // Generate subsequent seeds for (uint i = 1; i < 6; i++) { _randomSeeds[i] = uint256(keccak256(abi.encodePacked(_randomSeeds[i - 1], _tokenId))) % 101; } return _randomSeeds; } function _setDogTraits(uint _tokenID, uint[6] memory _randomSeeds) internal { // Randomly select traits uint randFur = _pickTraitByProbability(_randomSeeds[0], fur_data, fur_probability); uint randEyes = _pickTraitByProbability(_randomSeeds[1], eyes_data, eyes_probability); uint randHead = _pickTraitByProbability(_randomSeeds[2], head_data, head_probability); uint randMouth = _pickTraitByProbability(_randomSeeds[3], mouth_data, mouth_probability); uint randMark = _pickTraitByProbability(_randomSeeds[4], mark_data, mark_probability); uint randBoard = _pickTraitByProbability(_randomSeeds[5], board_data, board_probability); TraitStruct memory newTraits = TraitStruct({ fur: randFur, eyes: randEyes, head: randHead, mouth: randMouth, mark: randMark, board: randBoard }); // Assign the generated traits to the token tokenTraits[_tokenID] = newTraits; } function _pickTraitByProbability(uint seed, bytes[] memory traitArray, uint[] memory traitProbability) internal pure returns (uint) { require(traitArray.length > 0, "Elements array is empty"); require(traitArray.length == traitProbability.length, "Elements and weights length mismatch"); for (uint i = 0; i < traitProbability.length; i++) { if(seed < traitProbability[i]) { return i; } } // Fallback, return first element as a safe default return 0; } function tokenURI(uint256 tokenId) public view override returns (string memory) { // Get image string memory image = buildSVG(tokenId); // Encode SVG data to base64 string memory base64Image = Base64.encode(bytes(image)); // Build JSON metadata string memory json = string( abi.encodePacked( '{"name": "Pocket Dogs #', Strings.toString(tokenId), '",', '"description": "Fully Onchain Pocket Dogs on Abstract Chain",', '"attributes": [', _getDogTraits(tokenId), '],', '"image": "data:image/svg+xml;base64,', base64Image, '"}' ) ); // Encode JSON data to base64 string memory base64Json = Base64.encode(bytes(json)); // Construct final URI return string(abi.encodePacked('data:application/json;base64,', base64Json)); } function buildSVG(uint tokenid) public view returns (string memory) { require(_exists(tokenid), "Token does not exist"); TraitStruct memory localTraits = tokenTraits[tokenid]; string memory svg = string(abi.encodePacked( '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" shape-rendering="crispEdges" width="512" height="512">', '<rect width="16" height="16" fill="#01CA6A"/>', _getSVGTraitData(fur_data[localTraits.fur]), _getSVGTraitData(eyes_data[localTraits.eyes]), _getSVGTraitData(head_data[localTraits.head]), _getSVGTraitData(mouth_data[localTraits.mouth]), _getSVGTraitData(mark_data[localTraits.mark]), _getSVGTraitData(board_data[localTraits.board]), '</svg>' )); return svg; } function _getSVGTraitData(bytes memory data) internal pure returns (string memory) { require(data.length % 5 == 0, "Invalid number of reacts"); /// if empty this is a transparent react if (data.length == 0) { return "<rect x=\"0\" y=\"0\" width=\"0\" height=\"0\" fill=\"rgb(0,0,0)\"/>"; } // Initialize arrays to store values uint reactCount = data.length / 5; /// react string to return string memory rects; uint[] memory x = new uint[](reactCount); uint[] memory y = new uint[](reactCount); uint[] memory r = new uint[](reactCount); uint[] memory g = new uint[](reactCount); uint[] memory b = new uint[](reactCount); // Iterate through each react and get the values we need for (uint i = 0; i < reactCount; i++) { // Convert and assign values to respective arrays x[i] = uint8(data[i * 5]); y[i] = uint8(data[i * 5 + 1]); r[i] = uint8(data[i * 5 + 2]); g[i] = uint8(data[i * 5 + 3]); b[i] = uint8(data[i * 5 + 4]); // Convert uint values to strings string memory xStr = Strings.toString(x[i]); string memory yStr = Strings.toString(y[i]); string memory rStr = Strings.toString(r[i]); string memory gStr = Strings.toString(g[i]); string memory bStr = Strings.toString(b[i]); rects = string(abi.encodePacked(rects, '<rect x="', xStr, '" y="', yStr, '" width="1" height="1" fill="rgb(', rStr, ',', gStr, ',', bStr, ')" />')); } return rects; } function _getDogTraits(uint tokenid) internal view returns (string memory) { TraitStruct memory traits = tokenTraits[tokenid]; string memory metadata = string(abi.encodePacked( '{"trait_type":"Fur", "value":"', fur_traits[traits.fur], '"},', '{"trait_type":"Eyes", "value":"', eyes_traits[traits.eyes], '"},', '{"trait_type":"Head", "value":"', head_traits[traits.head], '"},', '{"trait_type":"Mouth", "value":"', mouth_traits[traits.mouth], '"},', '{"trait_type":"Mark", "value":"', mark_traits[traits.mark], '"},', '{"trait_type":"Board", "value":"', board_traits[traits.board], '"}' )); return metadata; } //// Admin methods function toggleMinting() external onlyOwner { mintEnabled = !mintEnabled; } function devMint(uint _quantity) external onlyOwner { _internalMint(_quantity); } function addToWhiteList(address[] calldata addresses) external onlylistController nonReentrant { for (uint i = 0; i < addresses.length; i++) { whiteListed[addresses[i]] = true; } } function changelistController(address _address) external onlyOwner { listController = _address; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; contract DogData { struct TraitStruct { uint fur; uint eyes; uint head; uint mouth; uint mark; uint board; } mapping(uint => TraitStruct) public tokenTraits; mapping(uint => uint) public CowBarn; bytes[] internal fur_data = [ bytes(hex'0805df71260706df71260906df71260a06df71260b06df71260207df71260807df71260907ffffff0a07df71260b07ffffff0308df71260808df71260908df71260a08df71260b088843140c088843140409df71260509df71260609df71260709df71260809df71260909df71260a09df71260b09df7126040adf7126050adf7126060adf7126070adf7126080adf7126090adf71260a0adf71260b0adf7126040bdf7126050bdf7126060bdf7126070bdf7126080bdf7126090bdf71260a0bdf71260b0bdf7126040cdf7126060cdf7126090cdf71260b0cdf7126'), bytes(hex'0805a0bdfa0706a0bdfa0906a0bdfa0a06a0bdfa0b06a0bdfa0207a0bdfa0807a0bdfa0907ffffff0a07a0bdfa0b07ffffff0308a0bdfa0808a0bdfa0908a0bdfa0a08a0bdfa0b08759ff70c08759ff70409a0bdfa0509a0bdfa0609a0bdfa0709a0bdfa0809a0bdfa0909a0bdfa0a09a0bdfa0b09a0bdfa040aa0bdfa050aa0bdfa060aa0bdfa070aa0bdfa080aa0bdfa090aa0bdfa0a0aa0bdfa0b0aa0bdfa040ba0bdfa050ba0bdfa060ba0bdfa070ba0bdfa080ba0bdfa090ba0bdfa0a0ba0bdfa0b0ba0bdfa040ca0bdfa060ca0bdfa090ca0bdfa0b0ca0bdfa'), bytes(hex'0805d77bba0706d77bba0906d77bba0a06d77bba0b06d77bba0207d77bba0807d77bba0907ffffff0a07d77bba0b07ffffff0308d77bba0808d77bba0908d77bba0a08d77bba0b08c7479f0c08c7479f0409d77bba0509d77bba0609d77bba0709d77bba0809d77bba0909d77bba0a09d77bba0b09d77bba040ad77bba050ad77bba060ad77bba070ad77bba080ad77bba090ad77bba0a0ad77bba0b0ad77bba040bd77bba050bd77bba060bd77bba070bd77bba080bd77bba090bd77bba0a0bd77bba0b0bd77bba040cd77bba060cd77bba090cd77bba0b0cd77bba'), bytes(hex'08055fcde407065fcde409065fcde40a065fcde40b065fcde402075fcde408075fcde40907ffffff0a075fcde40b07ffffff03085fcde408085fcde409085fcde40a085fcde40b081c8ea60c081c8ea604095fcde405095fcde406095fcde407095fcde408095fcde409095fcde40a095fcde40b095fcde4040a5fcde4050a5fcde4060a5fcde4070a5fcde4080a5fcde4090a5fcde40a0a5fcde40b0a5fcde4040b5fcde4050b5fcde4060b5fcde4070b5fcde4080b5fcde4090b5fcde40a0b5fcde40b0b5fcde4040c5fcde4060c5fcde4090c5fcde40b0c5fcde4'), bytes(hex'0805eec39a0706eec39a0906eec39a0a06eec39a0b06eec39a0207eec39a0807eec39a0907ffffff0a07eec39a0b07ffffff0308eec39a0808eec39a0908eec39a0a08eec39a0b08d9a0660c08d9a0660409eec39a0509eec39a0609eec39a0709eec39a0809eec39a0909eec39a0a09eec39a0b09eec39a040aeec39a050aeec39a060aeec39a070aeec39a080aeec39a090aeec39a0a0aeec39a0b0aeec39a040beec39a050beec39a060beec39a070beec39a080beec39a090beec39a0a0beec39a0b0beec39a040ceec39a060ceec39a090ceec39a0b0ceec39a'), bytes(hex'0805222034070622203409062220340a062220340b06222034020722203408072220340a072220340308222034080822203409082220340a082220340b081816210c081816210409222034050922203406092220340709222034080922203409092220340a092220340b09222034040a222034050a222034060a222034070a222034080a222034090a2220340a0a2220340b0a222034040b222034050b222034060b222034070b222034080b222034090b2220340a0b2220340b0b222034040c222034060c222034090c2220340b0c222034'), bytes(hex'08053f3f7407063f3f7409063f3f740a063f3f740b063f3f7402073f3f7408073f3f740907ffffff0a073f3f740b07ffffff03083f3f7408083f3f7409083f3f740a083f3f740b08282f670c08282f6704093f3f7405093f3f7406093f3f7407093f3f7408093f3f7409093f3f740a093f3f740b093f3f74040a3f3f74050a3f3f74060a3f3f74070a3f3f74080a3f3f74090a3f3f740a0a3f3f740b0a3f3f74040b3f3f74050b3f3f74060b3f3f74070b3f3f74080b3f3f74090b3f3f740a0b3f3f740b0b3f3f74040c3f3f74060c3f3f74090c3f3f740b0c3f3f74'), bytes(hex'0805fbf2360706fbf2360906fbf2360a06fbf2360b06fbf2360207fbf2360807fbf2360907ffffff0a07fbf2360b07ffffff0308fbf2360808fbf2360908fbf2360a08fbf2360b08b3ab040c08b3ab040409fbf2360509fbf2360609fbf2360709fbf2360809fbf2360909fbf2360a09fbf2360b09fbf236040afbf236050afbf236060afbf236070afbf236080afbf236090afbf2360a0afbf2360b0afbf236040bfbf236050bfbf236060bfbf236070bfbf236080bfbf236090bfbf2360a0bfbf2360b0bfbf236040cfbf236060cfbf236090cfbf2360b0cfbf236') ]; string[] internal fur_traits = [ 'Autumn', 'Blue', 'Bubblegum', 'Cottoncandy', 'Cream', 'Dark', 'Night', 'Yellow' ]; uint[] internal fur_probability = [15,30,48,58,64,80,90,100]; bytes[] internal eyes_data = [ bytes(hex'09070000000b07000000'), bytes(hex'0907ff00000a07ff00000b07ff00000c07ff00000d07ff00000e07ff0000'), bytes(hex'0906ffffff0a06ffffff0b06ffffff0807ffffff09070000000a07ffffff0b070000000908ffffff0a08ffffff'), bytes(hex'09060000000a060000000b0600000008070000000907ffffff0a070000000b07ffffff09080000000a08000000'), bytes(hex'09060000000a060000000b060000000807000000090768ff000a0768ff000b0768ff0009080000000a08000000'), bytes(hex'0906fbf2360b06fbf2360807fbf2360907ffffff0a07fbf2360b07ffffff0c07fbf2360908fbf236'), bytes(hex'09069badb70a069badb70b069badb708079badb709070000000a070000000b0700000009089badb70a089badb7'), bytes(hex'0907ffffff0b07ffffff') ]; string[] internal eyes_traits = [ 'Black', 'LAZEEERRRR', 'Mask White', 'Mask Black', 'NV Googles', 'Sparkling', 'VR', 'White' ]; uint[] internal eyes_probability = [20, 30, 45, 60, 70, 80, 90, 100]; bytes[] internal head_data = [ bytes(hex'0a03fff3000904fff3000a04ff00000b04fff30009050037ff0a050037ff0b050037ff'), bytes(hex'0805196cff0905196cff0a05196cff0b05196cff0806196cff0906196cff0a06196cff0b06196cff0c06196cff'), bytes(hex'0903c9c9c90a03c9c9c90b03c9c9c90904ffffff0a04ffffff0b04ffffff0905ffffff0a05ffffff0b05ffffff'), bytes(hex'0904ffe1f60a04ffe1f60b04ffe1f60805ff5a5a0905ffccef0a05ffccef0b05ffccef0c05ff5a5a'), bytes(hex'0804f5ec230a04f5ec230c04f5ec230805f5ec230905f5ec230a05f5ec230b05f5ec230c05f5ec23'), bytes(hex'0804ac32320c04ac32320905ac32320b05ac3232'), bytes(hex'0704d9a0660904df71260a04df71260b04df71260d04d9a0660805d9a0660905d9a0660a05d9a0660b05d9a0660c05d9a066'), bytes(hex'0904aa70540a04aa70540b04aa705408058f563b09058f563b0a058f563b0b058f563b0c058f563b'), bytes(hex'0902fbf2360a02fbf2360b02fbf2360803fbf2360c03fbf2360904fbf2360a04fbf2360b04fbf236'), bytes(hex'0a03fff74e0b03fff74e0904fff74e0a04fff74e0b04fff74e0805fff74e0905fff74e0a05fff74e0b05fff74e'), bytes(hex'0a03ff00000b03ff00000904ff00000a04ff00000b04ff00000805ff00000905ff00000a05ff00000b05ff0000'), bytes(hex''), bytes(hex'0903ffffff0a03ffffff0b03ffffff0904c9c9c90a04c9c9c90b04c9c9c90805ffffff0905ffffff0a05ffffff0b05ffffff0c05ffffff'), bytes(hex'09040000000a040000000b040000000905f219190a05f219190b05f21919080600000009060000000a060000000b060000000c06000000') ]; string[] internal head_traits = [ 'Beanie Cap', 'Blue Cap', 'Chef hat', 'Cotton hat', 'Crown', 'Devil horns', 'Farmer hat', 'Fedora', 'Halo', 'Mohawk Golden', 'Mohawk Red', 'None', 'Top hat white', 'Top hat black' ]; uint[] internal head_probability = [10,20,30,40,45,50,60,66,70,75,78,90,95,100]; bytes[] internal mouth_data = [ bytes(hex'0a09f4f4f40b09f4f4f40c09f4f4f40d09f4f4f4'), bytes(hex'0e06ffffff0e07ffffff0b09f4f4f40c09f4f4f40d09f4f4f40e09ff0000'), bytes(hex'0e08fffcb30a09fbf2360b09fbf2360c09fbf2360e0afffcb30d0cfffcb3'), bytes(hex'0a094b692f0b09524b240c094b692f0d094b692f0e09ffffff0a0a524b240b0a4b692f0c0a524b24'), bytes(hex''), bytes(hex'0a09ffffff0b09ffffff0c09ffffff0d09ffffff0a0affffff0d0affffff'), bytes(hex'0e05ffffff0e07ffffff0b09c3dfff0c09c3dfff0d09c3dfff0e09003dff') ]; string[] internal mouth_traits = [ 'Bone', 'Cig', 'Gold bar', 'Grenade', 'None', 'Sabertooth', 'Vape' ]; uint[] internal mouth_probability = [10,20,30,40, 80,90, 100]; bytes[] internal mark_data = [ bytes(hex'090affffff'), bytes(hex'090affffff070bf4f4f4'), bytes(hex'050973eff7060973eff7070b73eff7080b73eff7'), bytes(hex'040ac7b6b6050ac7b6b6060ac7b6b6070ac7b6b6080ac7b6b6090ac7b6b60a0ac7b6b60b0ac7b6b6'), bytes(hex''), bytes(hex'05094447460809444746060a444746090a444746070b4447460a0b444746'), bytes(hex'080afb3838090afb3838070bfb3838') ]; string[] internal mark_traits = [ 'DOT 1', 'DOT 2', 'Highlight', 'Line', 'None', 'Stripes', 'Scar' ]; uint[] internal mark_probability = [10, 20, 30, 40, 80, 90, 100]; bytes[] internal board_data = [ bytes(hex'020b272820020c272820030d272820040d272820050d272820060d272820070d272820080d272820090d2728200a0d2728200b0d2728200c0d272820060efff8c3070efff8c3080efff8c3090efff8c3'), bytes(hex'020bae81ff020cae81ff030dae81ff040dae81ff050dae81ff060dae81ff070dae81ff080dae81ff090dae81ff0a0dae81ff0b0dae81ff0c0dae81ff060efff8c3070efff8c3080efff8c3090efff8c3'), bytes(hex'020b66d9ef020c66d9ef030d66d9ef040d66d9ef050d66d9ef060d66d9ef070d66d9ef080d66d9ef090d66d9ef0a0d66d9ef0b0d66d9ef0c0d66d9ef060efff8c3070efff8c3080efff8c3090efff8c3'), bytes(hex'020be6db74020ce6db74030de6db74040de6db74050de6db74060de6db74070de6db74080de6db74090de6db740a0de6db740b0de6db740c0de6db74060efff8c3070efff8c3080efff8c3090efff8c3'), bytes(hex''), bytes(hex'020c823e2c0d0c823e2c030d823e2c040d823e2c050d823e2c060d823e2c070d823e2c080d823e2c090d823e2c0a0d823e2c0b0d823e2c0c0d823e2c050e16171a060e16171a090e16171a0a0e16171a'), bytes(hex'020c1008200d0c100820030d100820040d100820050d100820060d100820070d100820080d100820090d1008200a0d1008200b0d1008200c0d100820050e16171a060e16171a090e16171a0a0e16171a'), bytes(hex'020c10d2750d0c10d275030d10d275040d10d275050d10d275060d10d275070d10d275080d10d275090d10d2750a0d10d2750b0d10d2750c0d10d275050e16171a060e16171a090e16171a0a0e16171a'), bytes(hex'020c7f06220d0c7f0622030d7f0622040d7f0622050d7f0622060d7f0622070d7f0622080d7f0622090d7f06220a0d7f06220b0d7f06220c0d7f0622050e16171a060e16171a090e16171a0a0e16171a'), bytes(hex'020cfafdff0d0cfafdff030dfafdff040dfafdff050dfafdff060dfafdff070dfafdff080dfafdff090dfafdff0a0dfafdff0b0dfafdff0c0dfafdff050e16171a060e16171a090e16171a0a0e16171a'), bytes(hex'020c14121d020d14121d030d14121d040d14121d050d14121d060d14121d070d14121d080d14121d090d14121d0a0d14121d0b0d14121d0c0d14121d030e14121d040e14121d'), bytes(hex'020cfdc9c9020dfdc9c9030dfdc9c9040dfdc9c9050dfdc9c9060dfdc9c9070dfdc9c9080dfdc9c9090dfdc9c90a0dfdc9c90b0dfdc9c90c0dfdc9c9030efdc9c9040efdc9c9'), bytes(hex'020ceee6ea020deee6ea030deee6ea040deee6ea050deee6ea060deee6ea070deee6ea080deee6ea090deee6ea0a0deee6ea0b0deee6ea0c0deee6ea030eeee6ea040eeee6ea') ]; string[] internal board_traits = [ 'Hoverboard 1Bit', 'Hoverboard Inked', 'Hoverboard Sky', 'Hoverboard tan', 'None', 'Skateboard Brown', 'Skateboard Dark Blue', 'Skateboard Green', 'Skateboard Maroon', 'Skateboard White', 'Surfboard Dark', 'Surfboard Faded', 'Surfboard Smoke' ]; uint[] internal board_probability = [5,10,15,20,50,58,66,74,82,91,94,97,100]; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0; /// @title Base64 /// @author Brecht Devos - <[email protected]> /// @notice Provides functions for encoding/decoding base64 library Base64 { string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; bytes internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000" hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000" hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000" hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000"; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ''; // load the table into memory string memory table = TABLE_ENCODE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for {} lt(dataPtr, endPtr) {} { // read 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // write 4 characters mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and( input, 0x3F)))) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } function decode(string memory _data) internal pure returns (bytes memory) { bytes memory data = bytes(_data); if (data.length == 0) return new bytes(0); require(data.length % 4 == 0, "invalid base64 decoder input"); // load the table into memory bytes memory table = TABLE_DECODE; // every 4 characters represent 3 bytes uint256 decodedLen = (data.length / 4) * 3; // add some extra buffer at the end required for the writing bytes memory result = new bytes(decodedLen + 32); assembly { // padding with '=' let lastBytes := mload(add(data, mload(data))) if eq(and(lastBytes, 0xFF), 0x3d) { decodedLen := sub(decodedLen, 1) if eq(and(lastBytes, 0xFFFF), 0x3d3d) { decodedLen := sub(decodedLen, 1) } } // set the actual output length mstore(result, decodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 4 characters at a time for {} lt(dataPtr, endPtr) {} { // read 4 characters dataPtr := add(dataPtr, 4) let input := mload(dataPtr) // write 3 bytes let output := add( add( shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)), shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))), add( shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)), and(mload(add(tablePtr, and( input , 0xFF))), 0xFF) ) ) mstore(resultPtr, shl(232, output)) resultPtr := add(resultPtr, 3) } } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * The `_sequentialUpTo()` function can be overriden to enable spot mints * (i.e. non-consecutive mints) for `tokenId`s greater than `_sequentialUpTo()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // The amount of tokens minted above `_sequentialUpTo()`. // We call these spot mints (i.e. non-sequential mints). uint256 private _spotMinted; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); if (_sequentialUpTo() < _startTokenId()) _revert(SequentialUpToTooSmall.selector); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID for sequential mints. * * Override this function to change the starting token ID for sequential mints. * * Note: The value returned must never change after any tokens have been minted. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the maximum token ID (inclusive) for sequential mints. * * Override this function to return a value less than 2**256 - 1, * but greater than `_startTokenId()`, to enable spot (non-sequential) mints. * * Note: The value returned must never change after any tokens have been minted. */ function _sequentialUpTo() internal view virtual returns (uint256) { return type(uint256).max; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256 result) { // Counter underflow is impossible as `_burnCounter` cannot be incremented // more than `_currentIndex + _spotMinted - _startTokenId()` times. unchecked { // With spot minting, the intermediate `result` can be temporarily negative, // and the computation must be unchecked. result = _currentIndex - _burnCounter - _startTokenId(); if (_sequentialUpTo() != type(uint256).max) result += _spotMinted; } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256 result) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { result = _currentIndex - _startTokenId(); if (_sequentialUpTo() != type(uint256).max) result += _spotMinted; } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } /** * @dev Returns the total number of tokens that are spot-minted. */ function _totalSpotMinted() internal view virtual returns (uint256) { return _spotMinted; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) _revert(BalanceQueryForZeroAddress.selector); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) _revert(URIQueryForNonexistentToken.selector); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Returns whether the ownership slot at `index` is initialized. * An uninitialized slot does not necessarily mean that the slot has no owner. */ function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) { return _packedOwnerships[index] != 0; } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * @dev Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) { if (_startTokenId() <= tokenId) { packed = _packedOwnerships[tokenId]; if (tokenId > _sequentialUpTo()) { if (_packedOwnershipExists(packed)) return packed; _revert(OwnerQueryForNonexistentToken.selector); } // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector); // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `tokenId` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. for (;;) { unchecked { packed = _packedOwnerships[--tokenId]; } if (packed == 0) continue; if (packed & _BITMASK_BURNED == 0) return packed; // Otherwise, the token is burned, and we must revert. // This handles the case of batch burned tokens, where only the burned bit // of the starting slot is set, and remaining slots are left uninitialized. _revert(OwnerQueryForNonexistentToken.selector); } } // Otherwise, the data exists and we can skip the scan. // This is possible because we have already achieved the target condition. // This saves 2143 gas on transfers of initialized tokens. // If the token is not burned, return `packed`. Otherwise, revert. if (packed & _BITMASK_BURNED == 0) return packed; } _revert(OwnerQueryForNonexistentToken.selector); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) _revert(ApprovalQueryForNonexistentToken.selector); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool result) { if (_startTokenId() <= tokenId) { if (tokenId > _sequentialUpTo()) return _packedOwnershipExists(_packedOwnerships[tokenId]); if (tokenId < _currentIndex) { uint256 packed; while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId; result = packed & _BITMASK_BURNED == 0; } } } /** * @dev Returns whether `packed` represents a token that exists. */ function _packedOwnershipExists(uint256 packed) private pure returns (bool result) { assembly { // The following is equivalent to `owner != address(0) && burned == false`. // Symbolically tested. result := gt(and(packed, _BITMASK_ADDRESS), and(packed, _BITMASK_BURNED)) } } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS)); if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. from, // `from`. toMasked, // `to`. tokenId // `tokenId`. ) } if (toMasked == 0) _revert(TransferToZeroAddress.selector); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { _revert(TransferToNonERC721ReceiverImplementer.selector); } assembly { revert(add(32, reason), mload(reason)) } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) _revert(MintZeroQuantity.selector); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; if (toMasked == 0) _revert(MintToZeroAddress.selector); uint256 end = startTokenId + quantity; uint256 tokenId = startTokenId; if (end - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector); do { assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. tokenId // `tokenId`. ) } // The `!=` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. } while (++tokenId != end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) _revert(MintToZeroAddress.selector); if (quantity == 0) _revert(MintZeroQuantity.selector); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); if (startTokenId + quantity - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } } while (index < end); // This prevents reentrancy to `_safeMint`. // It does not prevent reentrancy to `_safeMintSpot`. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } /** * @dev Mints a single token at `tokenId`. * * Note: A spot-minted `tokenId` that has been burned can be re-minted again. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` must be greater than `_sequentialUpTo()`. * - `tokenId` must not exist. * * Emits a {Transfer} event for each mint. */ function _mintSpot(address to, uint256 tokenId) internal virtual { if (tokenId <= _sequentialUpTo()) _revert(SpotMintTokenIdTooSmall.selector); uint256 prevOwnershipPacked = _packedOwnerships[tokenId]; if (_packedOwnershipExists(prevOwnershipPacked)) _revert(TokenAlreadyExists.selector); _beforeTokenTransfers(address(0), to, tokenId, 1); // Overflows are incredibly unrealistic. // The `numberMinted` for `to` is incremented by 1, and has a max limit of 2**64 - 1. // `_spotMinted` is incremented by 1, and has a max limit of 2**256 - 1. unchecked { // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `true` (as `quantity == 1`). _packedOwnerships[tokenId] = _packOwnershipData( to, _nextInitializedFlag(1) | _nextExtraData(address(0), to, prevOwnershipPacked) ); // Updates: // - `balance += 1`. // - `numberMinted += 1`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += (1 << _BITPOS_NUMBER_MINTED) | 1; // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; if (toMasked == 0) _revert(MintToZeroAddress.selector); assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. tokenId // `tokenId`. ) } ++_spotMinted; } _afterTokenTransfers(address(0), to, tokenId, 1); } /** * @dev Safely mints a single token at `tokenId`. * * Note: A spot-minted `tokenId` that has been burned can be re-minted again. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}. * - `tokenId` must be greater than `_sequentialUpTo()`. * - `tokenId` must not exist. * * See {_mintSpot}. * * Emits a {Transfer} event. */ function _safeMintSpot( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mintSpot(to, tokenId); unchecked { if (to.code.length != 0) { uint256 currentSpotMinted = _spotMinted; if (!_checkContractOnERC721Received(address(0), to, tokenId, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } // This prevents reentrancy to `_safeMintSpot`. // It does not prevent reentrancy to `_safeMint`. if (_spotMinted != currentSpotMinted) revert(); } } } /** * @dev Equivalent to `_safeMintSpot(to, tokenId, '')`. */ function _safeMintSpot(address to, uint256 tokenId) internal virtual { _safeMintSpot(to, tokenId, ''); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve( address to, uint256 tokenId, bool approvalCheck ) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck && _msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { _revert(ApprovalCallerNotOwnerNorApproved.selector); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as `_burnCounter` cannot be exceed `_currentIndex + _spotMinted` times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) _revert(OwnershipNotInitializedForExtraData.selector); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } /** * @dev For more efficient reverts. */ function _revert(bytes4 errorSelector) internal pure { assembly { mstore(0x00, errorSelector) revert(0x00, 0x04) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); /** * `_sequentialUpTo()` must be greater than `_startTokenId()`. */ error SequentialUpToTooSmall(); /** * The `tokenId` of a sequential mint exceeds `_sequentialUpTo()`. */ error SequentialMintExceedsLimit(); /** * Spot minting requires a `tokenId` greater than `_sequentialUpTo()`. */ error SpotMintTokenIdTooSmall(); /** * Cannot mint over a token that already exists. */ error TokenAlreadyExists(); /** * The feature is not compatible with spot mints. */ error NotCompatibleWithSpotMints(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": true, "libraries": {} }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotCompatibleWithSpotMints","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SequentialMintExceedsLimit","type":"error"},{"inputs":[],"name":"SequentialUpToTooSmall","type":"error"},{"inputs":[],"name":"SpotMintTokenIdTooSmall","type":"error"},{"inputs":[],"name":"TokenAlreadyExists","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"CowBarn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenid","type":"uint256"}],"name":"buildSVG","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"changelistController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"listController","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTrans","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenTraits","outputs":[{"internalType":"uint256","name":"fur","type":"uint256"},{"internalType":"uint256","name":"eyes","type":"uint256"},{"internalType":"uint256","name":"head","type":"uint256"},{"internalType":"uint256","name":"mouth","type":"uint256"},{"internalType":"uint256","name":"mark","type":"uint256"},{"internalType":"uint256","name":"board","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000c43d2046e48bb624650727214f8522ba5b6fb46c3bed6f970a5846614d200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0004000000000002001c000000000002000000600310027000000a5d043001970003000000410355000200000001035500000a5d0030019d0000008003000039000000400030043f0000000100200190000000620000c13d000000040040008c000018170000413d000000000201043b000000e00220027000000b9e0020009c0000009a0000a13d00000b9f0020009c000000bf0000213d00000bac0020009c000002500000a13d00000bad0020009c000002c90000a13d00000bae0020009c0000058c0000613d00000baf0020009c000004fb0000613d00000bb00020009c000018170000c13d000000840040008c000018170000413d0000000402100370000000000502043b00000a660050009c000018170000213d0000002402100370000000000202043b00000a660020009c000018170000213d0000006403100370000000000603043b00000aaa0060009c000018170000213d0000002303600039000000000043004b000018170000813d0000000407600039000000000371034f000000000303043b00000aaa0030009c000005ea0000213d0000001f0930003900000c0f099001970000003f0990003900000c0f0990019700000b660090009c000005ea0000213d0000008009900039000000400090043f000000800030043f00000000063600190000002406600039000000000046004b000018170000213d0000002004700039000000000641034f00000c0f073001980000001f0830018f000000a0047000390000004c0000613d000000a009000039000000000a06034f00000000ab0a043c0000000009b90436000000000049004b000000480000c13d000000000008004b000000590000613d000000000676034f0000000307800210000000000804043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000640435000000a00330003900000000000304350000004401100370000000000301043b00000080040000390000000001050019296f1d580000040f0000000001000019000029700001042e0000000001000416000000000001004b000018170000c13d0000000b01000039000000800010043f001c00200000003d00000a5e01000041000000a00010043f0000010001000039000000400010043f0000000801000039000000c00010043f00000a5f01000041000000e00010043f0000000201000039000000000101041a000000010210019000000001011002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000032004b000000940000c13d000000200010008c000000860000413d0000000202000039000000000020043f00000a60020000410000001f01100039000000050110027000000a610110009a000000000002041b0000000102200039000000000012004b000000820000413d00000a62010000410000000202000039000000000012041b0000000301000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000000d90000613d00000be301000041000000000010043f0000002201000039000000040010043f00000be401000041000029710001043000000bb80020009c0000023c0000a13d00000bb90020009c000002750000a13d00000bba0020009c000002fe0000a13d00000bbb0020009c000005d70000613d00000bbc0020009c000005360000613d00000bbd0020009c000018170000c13d0000000001000416000000000001004b000018170000c13d0000000901000039000000000201041a00000a66032001970000000005000411000000000053004b000005df0000c13d00000a6702200197000000000021041b000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000a68011001c70000800d02000039000000030300003900000a69040000410000000006000019296f29650000040f0000000100200190000018170000613d0000000001000019000029700001042e00000ba00020009c000002640000a13d00000ba10020009c000002df0000a13d00000ba20020009c000005cf0000613d00000ba30020009c000005000000613d00000ba40020009c000018170000c13d000000240040008c000018170000413d0000000002000416000000000002004b000018170000c13d0000000401100370000000000101043b00000a660010009c000018170000213d000000000010043f0000002801000039000000200010043f00000040020000390000000001000019296f29390000040f0000026e0000013d000000200010008c000000e50000413d0000000302000039000000000020043f00000a63020000410000001f01100039000000050110027000000a640110009a000000000002041b0000000102200039000000000012004b000000e10000413d00000a65010000410000000303000039000000000013041b0000000101000039000000000010041b000000000100041100000a66061001970000000904000039000000000104041a00000a6702100197000000000262019f000000000024041b000000000200041400000a660510019700000a5d0020009c00000a5d02008041000000c00120021000000a68011001c70000800d0200003900000a6904000041296f29650000040f0000000100200190000018170000613d000000400100043d001100000001001d00000a6a0010009c000005ea0000813d00000011010000290000010002100039000000400020043f00000a6b0010009c000005ea0000213d00000011050000290000020001500039000000400010043f000000dc010000390000000000120435000001e00350003900000a6c040000410000000000430435000001c00350003900000a6d040000410000000000430435000001a00350003900000a6e040000410000000000430435000001800350003900000a6f040000410000000000430435000001600350003900000a70040000410000000000430435000001400350003900000a71040000410000000000430435000001200350003900000a720400004100000000004304350000000002250436000000400300043d00000a730030009c000005ea0000213d0000010004300039000000400040043f000000e00430003900000a74050000410000000000540435000000c00430003900000a75050000410000000000540435000000a00430003900000a76050000410000000000540435000000800430003900000a77050000410000000000540435000000600430003900000a78050000410000000000540435000000400430003900000a79050000410000000000540435000000200430003900000a7a05000041000000000054043500000000001304350000000000320435000000400200043d00000a730020009c000005ea0000213d0000010003200039000000400030043f000000e00320003900000a7b040000410000000000430435000000c00320003900000a7c040000410000000000430435000000a00320003900000a7d040000410000000000430435000000800320003900000a7e040000410000000000430435000000600320003900000a7f040000410000000000430435000000400320003900000a80040000410000000000430435000000200320003900000a810400004100000000004304350000000000120435000000110300002900000040033000390000000000230435000000400200043d00000a730020009c000005ea0000213d0000010003200039000000400030043f000000e00320003900000a82040000410000000000430435000000c00320003900000a83040000410000000000430435000000a00320003900000a84040000410000000000430435000000800320003900000a85040000410000000000430435000000600320003900000a86040000410000000000430435000000400320003900000a87040000410000000000430435000000200320003900000a880400004100000000004304350000000000120435001b00600000003d000000110300002900000060033000390000000000230435000000400200043d00000a730020009c000005ea0000213d0000010003200039000000400030043f000000e00320003900000a89040000410000000000430435000000c00320003900000a8a040000410000000000430435000000a00320003900000a8b040000410000000000430435000000800320003900000a8c040000410000000000430435000000600320003900000a8d040000410000000000430435000000400320003900000a8e040000410000000000430435000000200320003900000a8f0400004100000000004304350000000000120435000000110300002900000080033000390000000000230435000000400200043d00000a730020009c000005ea0000213d0000010003200039000000400030043f000000e00320003900000a90040000410000000000430435000000c00320003900000a91040000410000000000430435000000a00320003900000a92040000410000000000430435000000800320003900000a93040000410000000000430435000000600320003900000a94040000410000000000430435000000400320003900000a95040000410000000000430435000000200320003900000a96040000410000000000430435000000d2030000390000000000320435001a00a00000003d0000001103000029000000a0033000390000000000230435000000400200043d00000a730020009c000005ea0000213d0000010003200039000000400030043f000000e00320003900000a97040000410000000000430435000000c00320003900000a98040000410000000000430435000000a00320003900000a99040000410000000000430435000000800320003900000a9a040000410000000000430435000000600320003900000a9b040000410000000000430435000000400320003900000a9c040000410000000000430435000000200320003900000a9d0400004100000000004304350000000000120435001900c00000003d0000001103000029000000c0033000390000000000230435000000400200043d00000a730020009c000005ea0000213d0000010003200039000000400030043f000000e00320003900000a9e040000410000000000430435000000c00320003900000a9f040000410000000000430435000000a00320003900000aa0040000410000000000430435000000800320003900000aa1040000410000000000430435000000600320003900000aa2040000410000000000430435000000400320003900000aa3040000410000000000430435000000200320003900000aa40400004100000000004304350000000000120435001800e00000003d0000001101000029000000e00110003900000000002104350000000c03000039000000000103041a0000000802000039000000000023041b000000090010008c000007de0000413d00000aa50310009a00000aa60030009c000007de0000413d00000aa704000041000e00000003001d000002130000013d000000000030043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000101043b0000001004000029000000000004041b0000000e03000029000000000001041b0000000104400039000000000034004b000007de0000813d000000000104041a000000010010019000000001051002700000007f0550618f0000001f0050008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d000000000005004b000002100000613d0000001f0050008c00000000010400190000020f0000a13d000f00000005001d000000000040043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039001000000004001d296f296a0000040f0000000100200190000018170000613d0000001003000029000000000201043b0000000f010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000002010000813d000000000002041b0000000102200039000000000012004b000002370000413d000002010000013d00000bc50020009c000002920000213d00000bcb0020009c000003120000213d00000bce0020009c000005450000613d00000bcf0020009c000018170000c13d000000240040008c000018170000413d0000000002000416000000000002004b000018170000c13d0000000401100370000000000101043b00000a660010009c000018170000213d000000000010043f00000027010000390000025f0000013d00000bb30020009c000002a30000213d00000bb60020009c000003460000613d00000bb70020009c000018170000c13d000000240040008c000018170000413d0000000002000416000000000002004b000018170000c13d0000000401100370000000000101043b000000000010043f0000000b01000039000000200010043f00000040020000390000000001000019296f29390000040f000005d30000013d00000ba70020009c000002ac0000213d00000baa0020009c0000038a0000613d00000bab0020009c000018170000c13d0000000001000416000000000001004b000018170000c13d0000002401000039000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f00000bd001000041000029700001042e00000bc00020009c000002b50000213d00000bc30020009c0000049b0000613d00000bc40020009c000018170000c13d0000000001000416000000000001004b000018170000c13d0000000901000039000000000101041a00000a66011001970000000002000411000000000021004b000005df0000c13d0000001e01000039000000000201041a000000020020008c0000061e0000c13d00000bd101000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f00000c0401000041000000c40010043f00000bf801000041000029710001043000000bc60020009c000003390000213d00000bc90020009c000005590000613d00000bca0020009c000018170000c13d0000000001000416000000000001004b000018170000c13d0000000101000039000000000101041a00000c1001100167000000000200041a0000000001120019000000800010043f00000bd001000041000029700001042e00000bb40020009c000004830000613d00000bb50020009c000018170000c13d0000000001000416000000000001004b000018170000c13d0000000901000039000003410000013d00000ba80020009c000004960000613d00000ba90020009c000018170000c13d0000000001000416000000000001004b000018170000c13d0000001f01000039000003410000013d00000bc10020009c000004ae0000613d00000bc20020009c000018170000c13d0000000001040019296f19690000040f001100000001001d001000000002001d000f00000003001d000000400100043d000e00000001001d296f197b0000040f0000000e040000290000000000040435000000110100002900000010020000290000000f03000029296f1d580000040f0000000001000019000029700001042e00000bb10020009c000004bc0000613d00000bb20020009c000018170000c13d000000240040008c000018170000413d0000000401100370000000000401043b0000002401000039000000000101041a000000ff00100190000005f00000c13d00000bd101000041000000800010043f0000002001000039000000840010043f0000001201000039000000a40010043f00000bfc01000041000000c40010043f00000bf801000041000029710001043000000ba50020009c000004db0000613d00000ba60020009c000018170000c13d000000440040008c000018170000413d0000000002000416000000000002004b000018170000c13d0000000402100370000000000202043b00000a660020009c000018170000213d0000002401100370000000000101043b001100000001001d00000a660010009c000018170000213d000000000020043f0000000701000039000000200010043f00000040020000390000000001000019296f29390000040f0000001102000029296f19320000040f000000000101041a000000ff001001900000000001000039000000010100c0390000030b0000013d00000bbe0020009c0000051d0000613d00000bbf0020009c000018170000c13d000000240040008c000018170000413d0000000002000416000000000002004b000018170000c13d0000000401100370000000000101043b296f1f2c0000040f00000a6601100197000000400200043d000000000012043500000a5d0020009c00000a5d02008041000000400120021000000bd5011001c7000029700001042e00000bcc0020009c000005680000613d00000bcd0020009c000018170000c13d000000240040008c000018170000413d0000000002000416000000000002004b000018170000c13d0000000401100370000000000201043b000000000002004b000006e70000613d000000000100041a000000000021004b000006e70000a13d001000000002001d001100000002001d000000000020043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000101043b000000000101041a000000000001004b000006dc0000c13d0000001102000029000000000002004b000000010220008a000003230000c13d000006450000013d00000bc70020009c000005870000613d00000bc80020009c000018170000c13d0000000001000416000000000001004b000018170000c13d0000002901000039000000000101041a00000a6601100197000000800010043f00000bd001000041000029700001042e000000240040008c000018170000413d0000000002000416000000000002004b000018170000c13d0000000402100370000000000202043b00000aaa0020009c000018170000213d0000002303200039000000000043004b000018170000813d0000000403200039000000000131034f000000000101043b001000000001001d00000aaa0010009c000018170000213d000f00240020003d000000100100002900000005011002100000000f01100029000000000041004b000018170000213d0000002901000039000000000101041a00000a66011001970000000002000411000000000012004b0000074b0000c13d0000001e01000039000000000201041a000000020020008c000002880000613d0000000202000039000000000021041b000000100000006b000007610000613d0000000002000019001100000002001d00000005012002100000000f011000290000000201100367000000000101043b00000a660010009c000018170000213d000000000010043f0000002801000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000101043b000000000201041a00000c110220019700000001022001bf000000000021041b00000011020000290000000102200039000000100020006c0000036d0000413d000007610000013d000000240040008c000018170000413d0000000002000416000000000002004b000018170000c13d0000000401100370000000000101043b001100000001001d296f1abc0000040f000000400300043d0000000002010433000000000002004b000005e80000c13d00000b040030009c000005ea0000213d00000000040300190000002001300039000000400010043f00000000000304350000001103000029000000000003004b000008630000c13d000f00000004001d000000400100043d001000000001001d00000aad0010009c000005ea0000213d00000010030000290000004001300039000000400010043f000000200130003900000be0020000410000000000210435000000010100003900000000001304350000001101000029000000000010043f0000000a01000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000400200043d00000be20020009c000005ea0000213d000000000701043b000000c001200039000000400010043f000000000107041a00000000061204360000000103700039000000000303041a00000000003604350000000203700039000000000303041a000000400520003900000000003504350000000303700039000000000303041a000000600420003900000000003404350000000403700039000000000803041a00000080032000390000000000830435000000a0022000390000000507700039000000000707041a00000000007204350000000d07000039000000000807041a000000000018004b0000000f0800002900000010090000290000089d0000a13d000000000070043f000000000a0604330000001006000039000000000706041a00110000000a001d0000000000a7004b0000089d0000a13d000000000060043f00000000070504330000001305000039000000000605041a000e00000007001d000000000076004b0000089d0000a13d000000000050043f00000000060404330000001604000039000000000504041a000d00000006001d000000000065004b0000089d0000a13d000000000040043f00000000050304330000001903000039000000000403041a000c00000005001d000000000054004b0000089d0000a13d000000000030043f00000000040204330000001c02000039000000000302041a000b00000004001d000000000043004b0000089d0000a13d000000000020043f000000400400043d000a00000004001d000000200240003900000be503000041000000000032043500000ab50110009a0000003e02400039000f00000008001d001000000009001d296f29050000040f00000be602000041000000000021043500000be70200004100000003031000390000000000230435000000110200002900000ade0320009a00000022021000390000000001030019296f29050000040f00000be602000041000000000021043500000be802000041000000030310003900000000002304350000000e0200002900000b1b0320009a00000022021000390000000001030019296f29050000040f00000be602000041000000000021043500000be902000041000000030310003900000000002304350000000d0200002900000b350320009a00000023021000390000000001030019296f29050000040f00000be602000041000000000021043500000bea02000041000000030310003900000000002304350000000c0200002900000b540320009a00000022021000390000000001030019296f29050000040f00000be602000041000000000021043500000beb02000041000000030310003900000000002304350000000b0200002900000b920320009a00000023021000390000000001030019296f29050000040f00000bec0200004100000000002104350000000a0300002900000000013100490000001e0210008a000000000023043500000002021000390000000001030019296f19860000040f00000bed01000041000000400300043d001100000003001d0000002002300039000000000012043500000037023000390000001001000029296f1aae0000040f00000bee020000410000002203100039000000000023043500000bef02000041000000000021043500000bf0020000410000000203100039000000000023043500000bf1020000410000003f0310003900000000002304350000004e021000390000000a01000029296f1aae0000040f00000bf202000041000000000021043500000bf3020000410000000203100039000000000023043500000bf4020000410000002203100039000000000023043500000026021000390000000f01000029296f1aae0000040f00000bec020000410000000000210435000000110300002900000000013100490000001e0210008a000000000023043500000002021000390000000001030019296f19860000040f0000001101000029296f287f0000040f00000bf502000041000000400400043d001100000004001d000000200340003900000000002304350000003d02400039296f1aae0000040f00000011030000290000000002310049000000200120008a00000000001304350000000001030019296f19860000040f000000400100043d001000000001001d0000001102000029296f19540000040f0000001002000029000006150000013d0000000001000416000000000001004b000018170000c13d0000000901000039000000000101041a00000a66011001970000000002000411000000000021004b00000000010000390000000101006039296f1a9b0000040f0000002401000039000000000201041a00000c1103200197000000ff0020019000000001033061bf000000000031041b0000000001000019000029700001042e0000000001000416000000000001004b000018170000c13d0000002201000039000005d30000013d000000240040008c000018170000413d0000000001000416000000000001004b000018170000c13d0000000901000039000000000101041a00000a66011001970000000002000411000000000021004b00000000010000390000000101006039296f1a9b0000040f00000004010000390000000201100367000000000101043b296f1f600000040f0000000001000019000029700001042e000000240040008c000018170000413d0000000002000416000000000002004b000018170000c13d0000000401100370000000000101043b296f1abc0000040f0000002002000039000000400300043d001100000003001d0000000002230436296f19420000040f000006140000013d0000000001000416000000000001004b000018170000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000940000c13d000000800010043f000000000004004b000006080000613d000000000030043f000000000001004b00000000020000190000060d0000613d00000a63030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000004d30000413d0000060d0000013d000000240040008c000018170000413d0000000002000416000000000002004b000018170000c13d0000000401100370000000000101043b000000000010043f0000000a01000039000000200010043f00000040020000390000000001000019296f29390000040f0000000502100039000000000202041a0000000403100039000000000303041a0000000304100039000000000404041a0000000205100039000000000505041a0000000106100039000000000606041a000000000101041a000000800010043f000000a00060043f000000c00050043f000000e00040043f000001000030043f000001200020043f00000bd601000041000029700001042e0000000001000416000000000001004b000018170000c13d0000002601000039000005d30000013d000000240040008c000018170000413d0000000002000416000000000002004b000018170000c13d0000000401100370000000000601043b00000a660060009c000018170000213d0000000901000039000000000201041a00000a66032001970000000005000411000000000053004b000005df0000c13d000000000006004b000006af0000c13d00000bd101000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f00000bd201000041000000c40010043f00000bd301000041000000e40010043f00000bd4010000410000297100010430000000240040008c000018170000413d0000000002000416000000000002004b000018170000c13d0000000401100370000000000101043b001100000001001d00000a660010009c000018170000213d0000000901000039000000000101041a00000a66011001970000000002000411000000000021004b00000000010000390000000101006039296f1a9b0000040f0000002901000039000000000201041a00000a670220019700000011022001af000000000021041b0000000001000019000029700001042e000000240040008c000018170000413d0000000002000416000000000002004b000018170000c13d0000000401100370000000000101043b00000a660010009c000018170000213d000000000001004b0000069b0000c13d00000bfe01000041000000000010043f00000bff010000410000297100010430000000240040008c000018170000413d0000000002000416000000000002004b000018170000c13d0000000401100370000000000201043b00000c0a00200198000018170000c13d000000010100003900000c0b0220019700000c0c0020009c000005dc0000613d00000c0d0020009c000005dc0000613d00000c0e0020009c000000000100c019000000800010043f00000bd001000041000029700001042e000000440040008c000018170000413d0000000402100370000000000202043b001000000002001d00000a660020009c000018170000213d0000002401100370000000000101043b000000000001004b0000064b0000c13d00000c0801000041000000000010043f00000bff0100004100002971000104300000000001000416000000000001004b000018170000c13d0000000203000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000940000c13d000000800010043f000000000004004b000006080000613d000000000030043f000000000001004b00000000020000190000060d0000613d00000a60030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b0000057f0000413d0000060d0000013d0000000001040019296f19690000040f296f19980000040f0000000001000019000029700001042e000000440040008c000018170000413d0000000002000416000000000002004b000018170000c13d0000000402100370000000000202043b001100000002001d00000a660020009c000018170000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039001000000002001d000000000012004b000018170000c13d0000000001000411000000000010043f0000000701000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000101043b0000001102000029000000000020043f000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000101043b000000000201041a00000c11022001970000001003000029000000000232019f000000000021041b000000400100043d000000000031043500000a5d0010009c00000a5d010080410000004001100210000000000200041400000a5d0020009c00000a5d02008041000000c002200210000000000112019f00000aa8011001c70000800d02000039000000030300003900000bf60400004100000000050004110000001106000029000000ba0000013d0000000001000416000000000001004b000018170000c13d0000002501000039000000000101041a000000800010043f00000bd001000041000029700001042e0000000001000416000000000001004b000018170000c13d0000002301000039000000000101041a000000800010043f00000bd001000041000029700001042e00000bd101000041000000800010043f0000002001000039000000840010043f000000a40010043f00000c0001000041000000c40010043f00000bf801000041000029710001043000000ac60030009c000006350000a13d00000be301000041000000000010043f0000004101000039000000040010043f00000be40100004100002971000104300000002301000039000000000201041a00000000014200a9000000000004004b000005f80000613d00000000034100d9000000000023004b000006450000c13d0000000002000416000000000012004b000006a60000c13d0000002501000039000000000101041a000000000014004b000006bb0000a13d00000bd101000041000000800010043f0000002001000039000000840010043f000000a40010043f00000bfb01000041000000c40010043f00000bf801000041000029710001043000000c1102200197000000a00020043f000000000001004b0000002002000039000000000200603900000020022000390000008001000039296f19860000040f000000400100043d001100000001001d0000008002000039296f19540000040f0000001102000029000000000121004900000a5d0010009c00000a5d01008041000000600110021000000a5d0020009c00000a5d020080410000004002200210000000000121019f000029700001042e0000000202000039000000000021041b00000c0101000041000000000010044300000000010004100000000400100443000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000c02011001c70000800a02000039296f296a0000040f00000001002001900000190b0000613d000000000301043b00000000010004140000000004000411000000040040008c000006eb0000c13d000000010200003900000001010000310000075d0000013d00000000090300190000006002900039000000400020043f000000400290003900000bd7030000410000000000320435000000200290003900000bd803000041000000000032043500000040020000390000000000290435000000000201043300000bd90020009c000006450000213d00000bda0020009c000006f20000a13d00000be301000041000000000010043f0000001101000039000000040010043f00000be4010000410000297100010430000f00000001001d000000000010043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000101043b000000000101041a000000000001004b000006730000c13d000000000100041a0000000f02000029000000000021004b000005640000a13d000000010220008a001100000002001d000000000020043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000101043b000000000101041a000000000001004b0000001102000029000006600000613d00000c05001001980000000f02000029000005640000c13d00110a660010019b0000000003000411000000110030006c000007ba0000c13d000000000020043f0000000601000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000100200002900000a6606200197000000000101043b000000000201041a00000a6702200197000000000262019f000000000021041b000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000a68011001c70000800d02000039000000040300003900000c070400004100000011050000290000000f07000029296f29650000040f0000000100200190000000bd0000c13d000018170000013d000000000010043f0000000501000039000000200010043f00000040020000390000000001000019296f29390000040f000000000101041a00000aaa01100197000000800010043f00000bd001000041000029700001042e00000bd101000041000000800010043f0000002001000039000000840010043f000000a40010043f00000bf701000041000000c40010043f00000bf801000041000029710001043000000a6702200197000000000262019f000000000021041b000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000a68011001c70000800d02000039000000030300003900000a6904000041000000ba0000013d001100000004001d000000000100041100000a6601100197001000000001001d000000000010043f0000002701000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000101043b000000000101041a0000001102000029000000000021001a000006450000413d000f00000021001d0000002601000039000000000101041a0000000f0010006b000007a00000a13d000000400100043d000000440210003900000bf903000041000000000032043500000024021000390000001b03000039000007950000013d00000c05001001980000001001000029000006e70000c13d000000000010043f0000000601000039000000200010043f00000040020000390000000001000019296f29390000040f000000000101041a0000030a0000013d00000c0901000041000000000010043f00000bff01000041000029710001043000000a5d0010009c00000a5d01008041000000c001100210000000000003004b000007550000c13d0000000002040019000007580000013d00000bdb0020009c000005ea0000213d0000000202200039000000030220011a00000002042002100000003f0240003900000c0f052001970000003f0250003900000c0f03200197000000400200043d0000000003320019000000000023004b0000000006000039000000010600403900000aaa0030009c000005ea0000213d0000000100600190000005ea0000c13d000000400030043f0000002003200039000000000005004b000007100000613d0000000005530019000000000600003100000002066003670000000007030019000000006806043c0000000007870436000000000057004b0000070c0000c13d000000000042043500000000050104330000000004150019000000000014004b000007430000a13d000000010590003900000000060100190000000306600039000000000706043300000012087002700000003f0880018f00000000085800190000000008080433000000f808800210000000000903043300000bdc09900197000000000889019f00000000008304350000000c087002700000003f0880018f00000000085800190000000008080433000000f8088002100000000109300039000000000a09043300000bdc0aa0019700000000088a019f000000000089043500000006087002700000003f0880018f00000000085800190000000008080433000000f8088002100000000209300039000000000a09043300000bdc0aa0019700000000088a019f00000000008904350000003f0770018f00000000075700190000000007070433000000f8077002100000000308300039000000000908043300000bdc09900197000000000779019f00000000007804350000000403300039000000000046004b000007170000413d0000000005010433000000031050011a000000020010008c0000085c0000613d000000010010008c0000085f0000c13d00000bde01000041000000020330008a0000085e0000013d00000bd101000041000000800010043f0000002001000039000000840010043f0000000f01000039000000a40010043f00000bfd01000041000000c40010043f00000bf801000041000029710001043000000a68011001c700008009020000390000000005000019296f29650000040f0003000000010355000000600110027000010a5d0010019d00000a5d01100197000000000001004b000007660000c13d00000001002001900000078f0000613d00000001010000390000001e02000039000000000012041b0000000001000019000029700001042e00000aaa0010009c000005ea0000213d0000001f0410003900000c0f044001970000003f0440003900000c0f05400197000000400400043d0000000005540019000000000045004b0000000006000039000000010600403900000aaa0050009c000005ea0000213d0000000100600190000005ea0000c13d000000400050043f000000000614043600000c0f031001980000001f0410018f00000000013600190000000305000367000007810000613d000000000705034f000000007807043c0000000006860436000000000016004b0000077d0000c13d000000000004004b0000075f0000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003104350000075f0000013d000000400100043d000000440210003900000c0303000041000000000032043500000024021000390000001003000039000000000032043500000bd102000041000000000021043500000004021000390000002003000039000000000032043500000a5d0010009c00000a5d01008041000000400110021000000bfa011001c700002971000104300000001001000029000000000010043f0000002701000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000101043b000000000101041a0000000f0010002a000006450000413d0010000f0010002d0000000001000411296f19210000040f0000001002000029000000000021041b0000001101000029296f1f600000040f0000000001000019000029700001042e0000001101000029000000000010043f0000000701000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000101043b000000000200041100000a6602200197000000000020043f000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000101043b000000000101041a000000ff001001900000000f020000290000067a0000c13d00000c0601000041000000000010043f00000bff0100004100002971000104300000000c01000039000000000010043f00000aa9060000410000000004000019000007eb0000013d000000010170021000000001011001bf0000000f04000029000000000016041b000000070040008c00000001044000390000000106600039000008a30000813d00000011010000290000000013010434001100000001001d000000007503043400000aaa0050009c000005ea0000213d000000000106041a000000010010019000000001081002700000007f0880618f0000001f0080008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d000000200080008c001000000006001d000f00000004001d000e00000005001d000d00000003001d000008210000413d000b00000008001d000c00000007001d000000000060043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d0000000e050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b0000000b010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000010060000290000000f040000290000000c07000029000008210000813d000000000002041b0000000102200039000000000012004b0000081d0000413d0000001f0050008c000008420000a13d000000000060043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d0000000e0700002900000c0f02700198000000000101043b0000084e0000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000010060000290000000d0800002900000000058300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000008380000c13d000000000072004b000007e30000813d000008530000013d000000000005004b000008460000613d0000000001070433000008470000013d0000000001000019000000030250021000000c100220027f00000c1002200167000000000121016f0000000102500210000000000121019f000007e60000013d000000200300003900000010060000290000000d08000029000000000072004b000007e30000813d0000000302700210000000f80220018f00000c100220027f00000c100220016700000000038300190000000003030433000000000223016f000000000021041b000007e30000013d00000bdd01000041000000010330008a000000000013043500000000040200190000001103000029000000000003004b000003a00000613d00000000010000190000000002010019000000010110003a000006450000613d000000090030008c0000000a0330011a000008640000213d000f00000004001d00000bdf0020009c000005ea0000213d00000c0f042001970000005f0240003900000c0f02200197000000400500043d0000000002250019001000000005001d000000000052004b0000000005000039000000010500403900000aaa0020009c000005ea0000213d0000000100500190000005ea0000c13d000000400020043f00000010020000290000000002120436000000200540003900000c0f045001980000001f0350018f000008890000613d0000000004420019000000000500003100000002055003670000000006020019000000005705043c0000000006760436000000000046004b000008850000c13d000000000003004b00000011030000290000001007000029000000000001004b000006450000613d000000010110008a0000000004070433000000000014004b0000089d0000a13d0000000004210019000000090030008c0000000a5330011a000000f805500210000000000604043300000bdc06600197000000000565019f00000be0055001c700000000005404350000088c0000213d000003ad0000013d00000be301000041000000000010043f0000003201000039000000040010043f00000be4010000410000297100010430000000400100043d000f00000001001d00000a730010009c000005ea0000213d0000000f020000290000010001200039000000400010043f00000aab0020009c000005ea0000213d0000000f030000290000014002300039000000400020043f000000060200003900000000002104350000000001130436000001200230003900000aac030000410000000000320435000000400200043d00000aad0020009c000005ea0000213d0000004003200039000000400030043f000000200320003900000aae040000410000000000430435000000040300003900000000003204350000000000210435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000aaf030000410000000000320435000000090200003900000000002104350000000f0200002900000040022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000ab00300004100000000003204350000000b0200003900000000002104350000000f0200002900000060022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000ab1030000410000000000320435000000050200003900000000002104350000000f0200002900000080022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000ab2030000410000000000320435000000040200003900000000002104350000000f02000029000000a0022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000ab3030000410000000000320435000000050200003900000000002104350000000f02000029000000c0022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000ab4030000410000000000320435000000060200003900000000002104350000000f02000029000000e00220003900000000001204350000000d02000039000000000102041a0000000803000039000000000032041b000000090010008c000009550000413d00000ab50310009a00000ab60030009c000009550000413d00000ab704000041000e00000003001d0000092d0000013d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000101043b0000001104000029000000000004041b0000000e03000029000000000001041b0000000104400039000000000034004b000009550000813d000000000104041a000000010010019000000001051002700000007f0550618f0000001f0050008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d000000000005004b0000092a0000613d0000001f0050008c0000000001040019000009290000a13d001000000005001d001100000004001d000000000040043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000201043b00000010010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b0000091a0000813d000000000002041b0000000102200039000000000012004b000009500000413d0000091a0000013d0000000d01000039000000000010043f00110ab800000045000e00000000001d000009630000013d000000010160021000000001011001bf00000011040000290000000e05000029000000000014041b000000070050008c000e00010050003d001100010040003d000009cf0000813d0000000f010000290000000012010434000f00000001001d000d00000002001d0000000021020434000c00000002001d001000000001001d00000aaa0010009c000005ea0000213d0000001104000029000000000104041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d000000200030008c0000001006000029000009970000413d000b00000003001d000000000040043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d00000010060000290000001f026000390000000502200270000000200060008c0000000002004019000000000301043b0000000b010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000001104000029000009970000813d000000000002041b0000000102200039000000000012004b000009930000413d0000001f0060008c000009b50000a13d000000000040043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000100600002900000c0f02600198000000000101043b0000000d07000029000009c30000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000000057300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000009ad0000c13d000009c40000013d000000000006004b0000000e05000029000009bb0000613d0000000c010000290000000001010433000009bc0000013d0000000001000019000000030260021000000c100220027f00000c1002200167000000000121016f0000000102600210000000000121019f0000095e0000013d0000002003000039000000000062004b0000095a0000813d0000000302600210000000f80220018f00000c100220027f00000c100220016700000000037300190000000003030433000000000223016f000000000021041b0000095a0000013d000000400400043d00000a730040009c000005ea0000213d0000010001400039000000400010043f000000e00140003900000064020000390000000000210435000000c0024000390000005a030000390000000000320435000000a0034000390000005005000039000000000053043500000080054000390000004006000039000000000065043500000060064000390000003a0700003900000000007604350000004007400039000000300800003900000000008704350000000f0800003900000000088404360000001e0900003900000000009804350000000e0a00003900000000090a041a000000080b0000390000000000ba041b000000090090008c000009f80000413d00000ab90990009a00000aba0090009c000009f80000413d00000abb0a00004100000000000a041b000000010aa0003900000000009a004b000009f40000413d0000000e09000039000000000090043f0000000004040433000000ff0440018f00000abc09000041000000000049041b0000000004080433000000ff0440018f00000abd08000041000000000048041b0000000004070433000000ff0440018f00000abe07000041000000000047041b0000000004060433000000ff0440018f00000abf06000041000000000046041b0000000004050433000000ff0440018f00000ac005000041000000000045041b0000000003030433000000ff0330018f00000ac104000041000000000034041b0000000002020433000000ff0220018f00000ac203000041000000000023041b0000000001010433000000ff0110018f00000ac302000041000000000012041b000000400100043d000d00000001001d00000a730010009c000005ea0000213d0000000d020000290000010001200039000000400010043f00000aab0020009c000005ea0000213d0000000d030000290000014002300039000000400020043f0000000a0200003900000000002104350000000001130436000001200230003900000ac4030000410000000000320435000000400200043d00000aad0020009c000005ea0000213d0000004003200039000000400030043f000000200320003900000ac50400004100000000004304350000001e0300003900000000003204350000000000210435000000400100043d00000ac60010009c000005ea0000213d0000006002100039000000400020043f000000400210003900000ac7030000410000000000320435000000200210003900000ac80300004100000000003204350000002d0200003900000000002104350000000d0200002900000040022000390000000000120435000000400100043d00000ac60010009c000005ea0000213d0000006002100039000000400020043f000000400210003900000ac9030000410000000000320435000000200210003900000aca0300004100000000003204350000002d0200003900000000002104350000000d0200002900000060022000390000000000120435000000400100043d00000ac60010009c000005ea0000213d0000006002100039000000400020043f000000400210003900000acb030000410000000000320435000000200210003900000acc0300004100000000003204350000002d0200003900000000002104350000000d0200002900000080022000390000000000120435000000400100043d00000ac60010009c000005ea0000213d0000006002100039000000400020043f000000400210003900000acd030000410000000000320435000000200210003900000ace030000410000000000320435000000280200003900000000002104350000000d02000029000000a0022000390000000000120435000000400100043d00000ac60010009c000005ea0000213d0000006002100039000000400020043f000000400210003900000acf030000410000000000320435000000200210003900000ad00300004100000000003204350000002d0200003900000000002104350000000d02000029000000c0022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000ad10300004100000000003204350000000a0200003900000000002104350000000d02000029000000e00220003900000000001204350000000f02000039000000000102041a0000000803000039000000000032041b000000090010008c00000ade0000413d00000ad20110009a000f00000001001d00000ad30010009c00000ade0000413d00110ad40000004500000ab40000013d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000101043b0000001102000029000000000002041b000000000001041b00000011020000290000000102200039001100000002001d0000000f0020006c00000ade0000813d0000001101000029000000000101041a000000010010019000000001021002700000007f0220618f001000000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d000000100000006b00000aaf0000613d00000010010000290000001f0010008c000000110100002900000aae0000a13d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000201043b00000010010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b00000aa00000813d000000000002041b0000000102200039000000000012004b00000ad90000413d00000aa00000013d0000000f01000039000000000010043f000f0ad500000045000c00000000001d00000aed0000013d0000001001000029000000010110021000000001011001bf0000000f02000029000000000012041b0000000c01000029000000070010008c000c00010010003d000f00010020003d00000b5b0000813d0000000d010000290000000012010434000d00000001001d001100000002001d0000000021020434000b00000002001d001000000001001d00000aaa0010009c000005ea0000213d0000000f01000029000000000101041a000000010010019000000001021002700000007f0220618f000e00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000e01000029000000200010008c00000b210000413d0000000f01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d00000010030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000e010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000b210000813d000000000002041b0000000102200039000000000012004b00000b1d0000413d00000010010000290000001f0010008c00000b400000a13d0000000f01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000200200008a0000001002200180000000000101043b00000b4e0000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000011053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000b380000c13d00000b4f0000013d000000100000006b00000b450000613d0000000b01000029000000000101043300000b460000013d00000000010000190000001004000029000000030240021000000c100220027f00000c1002200167000000000121016f0000000102400210000000000121019f00000ae60000013d0000002003000039000000100020006c00000ae30000813d00000010020000290000000302200210000000f80220018f00000c100220027f00000c100220016700000011033000290000000003030433000000000223016f000000000021041b00000ae30000013d000000400100043d000d00000001001d00000a730010009c000005ea0000213d0000000d020000290000010001200039000000400010043f00000aab0020009c000005ea0000213d0000000d030000290000014002300039000000400020043f000000050200003900000000002104350000000001130436000001200230003900000ad6030000410000000000320435000000400200043d00000aad0020009c000005ea0000213d0000004003200039000000400030043f000000200320003900000ad70400004100000000004304350000000a0300003900000000003204350000000000210435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000ad80300004100000000003204350000000a0200003900000000002104350000000d0200002900000040022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000ad90300004100000000003204350000000a0200003900000000002104350000000d0200002900000060022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000ada0300004100000000003204350000000a0200003900000000002104350000000d0200002900000080022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000adb030000410000000000320435000000090200003900000000002104350000000d02000029000000a0022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000adc030000410000000000320435000000020200003900000000002104350000000d02000029000000c0022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000add030000410000000000320435000000050200003900000000002104350000000d02000029000000e00220003900000000001204350000001002000039000000000102041a0000000803000039000000000032041b000000090010008c00000c100000413d00000ade0110009a000f00000001001d00000adf0010009c00000c100000413d00110ae00000004500000be60000013d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000101043b0000001102000029000000000002041b000000000001041b00000011020000290000000102200039001100000002001d0000000f0020006c00000c100000813d0000001101000029000000000101041a000000010010019000000001021002700000007f0220618f001000000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d000000100000006b00000be10000613d00000010010000290000001f0010008c000000110100002900000be00000a13d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000201043b00000010010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b00000bd20000813d000000000002041b0000000102200039000000000012004b00000c0b0000413d00000bd20000013d0000001001000039000000000010043f000f0ae100000045000c00000000001d00000c1f0000013d0000001001000029000000010110021000000001011001bf0000000f02000029000000000012041b0000000c01000029000000070010008c000c00010010003d000f00010020003d00000c8d0000813d0000000d010000290000000012010434000d00000001001d001100000002001d0000000021020434000b00000002001d001000000001001d00000aaa0010009c000005ea0000213d0000000f01000029000000000101041a000000010010019000000001021002700000007f0220618f000e00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000e01000029000000200010008c00000c530000413d0000000f01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d00000010030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000e010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000c530000813d000000000002041b0000000102200039000000000012004b00000c4f0000413d00000010010000290000001f0010008c00000c720000a13d0000000f01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000200200008a0000001002200180000000000101043b00000c770000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000011053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000c6a0000c13d00000c780000013d000000100000006b00000c840000613d0000000b01000029000000000101043300000c850000013d0000002003000039000000100020006c00000c150000813d00000010020000290000000302200210000000f80220018f00000c100220027f00000c100220016700000011033000290000000003030433000000000223016f000000000021041b00000c150000013d00000000010000190000001004000029000000030240021000000c100220027f00000c1002200167000000000121016f0000000102400210000000000121019f00000c180000013d000000400500043d00000a730050009c000005ea0000213d0000010001500039000000400010043f000000e00150003900000064020000390000000000210435000000c0025000390000005a030000390000000000320435000000a0035000390000005004000039000000000043043500000080045000390000004606000039000000000064043500000060065000390000003c07000039000000000076043500000040075000390000002d080000390000000000870435000000140800003900000000088504360000001e090000390000000000980435000000110b00003900000000090b041a000000080a0000390000000000ab041b000000090090008c00000cb60000413d00000ae20990009a00000ae30090009c00000cb60000413d00000ae40a00004100000000000a041b000000010aa0003900000000009a004b00000cb20000413d0000001109000039000000000090043f0000000005050433000000ff0550018f00000ae509000041000000000059041b0000000005080433000000ff0550018f00000ae608000041000000000058041b0000000005070433000000ff0550018f00000ae707000041000000000057041b0000000005060433000000ff0550018f00000ae806000041000000000056041b0000000004040433000000ff0440018f00000ae905000041000000000045041b0000000003030433000000ff0330018f00000aea04000041000000000034041b0000000002020433000000ff0220018f00000aeb03000041000000000023041b0000000001010433000000ff0110018f00000aec02000041000000000012041b000000400100043d001000000001001d00000aed0010009c000005ea0000213d0000001002000029000001c001200039000000400010043f00000aee0020009c000005ea0000213d00000010040000290000022002400039000000400020043f00000023020000390000000000210435000002000240003900000aef030000410000000000320435000001e00240003900000af00300004100000000003204350000000001140436000000400200043d00000ac60020009c000005ea0000213d0000006003200039000000400030043f000000400320003900000af1040000410000000000430435000000200320003900000af20400004100000000004304350000002d0300003900000000003204350000000000210435000000400100043d00000ac60010009c000005ea0000213d0000006002100039000000400020043f000000400210003900000af3030000410000000000320435000000200210003900000af40300004100000000003204350000002d020000390000000000210435000000100200002900000040022000390000000000120435000000400100043d00000ac60010009c000005ea0000213d0000006002100039000000400020043f000000400210003900000af5030000410000000000320435000000200210003900000af603000041000000000032043500000028020000390000000000210435000000100200002900000060022000390000000000120435000000400100043d00000ac60010009c000005ea0000213d0000006002100039000000400020043f000000400210003900000af7030000410000000000320435000000200210003900000af803000041000000000032043500000028020000390000000000210435000000100200002900000080022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000af9030000410000000000320435000000140200003900000000002104350000001002000029000000a0022000390000000000120435000000400100043d00000ac60010009c000005ea0000213d0000006002100039000000400020043f000000400210003900000afa030000410000000000320435000000200210003900000afb030000410000000000320435000000320200003900000000002104350000001002000029000000c0022000390000000000120435000000400100043d00000ac60010009c000005ea0000213d0000006002100039000000400020043f000000400210003900000afc030000410000000000320435000000200210003900000afd030000410000000000320435000000280200003900000000002104350000001002000029000000e0022000390000000000120435000000400100043d00000ac60010009c000005ea0000213d0000006002100039000000400020043f000000400210003900000afe030000410000000000320435000000200210003900000aff03000041000000000032043500000028020000390000000000210435001701000000003d000000100200002900000100022000390000000000120435000000400100043d00000ac60010009c000005ea0000213d0000006002100039000000400020043f000000400210003900000b00030000410000000000320435000000200210003900000b010300004100000000003204350000002d020000390000000000210435001601200000003d000000100200002900000120022000390000000000120435000000400100043d00000ac60010009c000005ea0000213d0000006002100039000000400020043f000000400210003900000b02030000410000000000320435000000200210003900000b030300004100000000003204350000002d020000390000000000210435001501400000003d000000100200002900000140022000390000000000120435000000400100043d00000b040010009c000005ea0000213d0000002002100039000000400020043f0000000000010435001401600000003d000000100200002900000160022000390000000000120435000000400200043d00000ac60020009c000005ea0000213d0000006001200039000000400010043f000000400120003900000b05030000410000000000310435000000200120003900000b0603000041000000000031043500000037010000390000000000120435001301800000003d000000100300002900000180033000390000000000230435000000400200043d00000ac60020009c000005ea0000213d0000006003200039000000400030043f000000400320003900000b07040000410000000000430435000000200320003900000b0804000041000000000043043500000000001204350000001001000029000001a00110003900000000002104350000001203000039000000000103041a0000000e02000039000000000023041b0000000f0010008c00000dff0000413d00000b090110009a000e00000001001d00000b0a0010009c00000dff0000413d00110b0b0000004500000dca0000013d000000000101043b0000001102000029000000000002041b000000000001041b00000011020000290000000102200039001100000002001d0000000e0020006c00000dff0000813d0000001101000029000000000101041a000000010010019000000001021002700000007f0220618f000f00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000f0000006b00000dc50000613d0000000f010000290000001f0010008c000000110100002900000dc40000a13d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000201043b0000000f010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b00000df30000813d000000000002041b0000000102200039000000000012004b00000def0000413d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f000000010020019000000dc10000c13d000018170000013d0000001201000039000000000010043f000e0b0c00000045000c00000000001d00000010010000290000000012010434001000000001001d001100000002001d0000000021020434000b00000002001d000f00000001001d00000aaa0010009c000005ea0000213d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000d00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000d01000029000000200010008c00000e370000413d0000000e01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d0000000f030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000d010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000e370000813d000000000002041b0000000102200039000000000012004b00000e330000413d0000000f010000290000001f0010008c00000e560000a13d0000000e01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000200200008a0000000f02200180000000000101043b00000e5b0000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000011053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000e4e0000c13d00000e5c0000013d0000000f0000006b00000e6b0000613d0000000b01000029000000000101043300000e6c0000013d00000020030000390000000f0020006c00000e670000813d0000000f020000290000000302200210000000f80220018f00000c100220027f00000c100220016700000011033000290000000003030433000000000223016f000000000021041b0000000f01000029000000010110021000000001011001bf00000e730000013d00000000010000190000000f04000029000000030240021000000c100220027f00000c1002200167000000000121016f0000000102400210000000000121019f0000000e02000029000000000012041b0000000c010000290000000d0010008c000c00010010003d000e00010020003d00000e030000413d000000400100043d001000000001001d00000aed0010009c000005ea0000213d0000001002000029000001c001200039000000400010043f00000a6b0020009c000005ea0000213d00000010030000290000020002300039000000400020043f0000000a0200003900000000002104350000000000130435000001e00130003900000b0d020000410000000000210435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b0e03000041000000000032043500000008020000390000000000210435000d001c0000002d00000010030000290000001c023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b0f03000041000000000032043500000008020000390000000000210435000000100200002900000040022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b100300004100000000003204350000000a020000390000000000210435000c001b0000002d00000010030000290000001b023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b1103000041000000000032043500000005020000390000000000210435000000100200002900000080022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b120300004100000000003204350000000b020000390000000000210435000b001a0000002d00000010030000290000001a023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b130300004100000000003204350000000a0200003900000000002104350000001002000029000000c0022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b14030000410000000000320435000000060200003900000000002104350000001002000029000000e0022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b1503000041000000000032043500000004020000390000000000210435000000100200002900000100022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b160300004100000000003204350000000d020000390000000000210435000000100200002900000120022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b170300004100000000003204350000000a020000390000000000210435000000100200002900000140022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b1803000041000000000032043500000004020000390000000000210435000000100200002900000160022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b190300004100000000003204350000000d020000390000000000210435000000100200002900000180022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b1a0300004100000000003204350000000d0200003900000000002104350000001002000029000001a00220003900000000001204350000001303000039000000000103041a0000000e02000039000000000023041b0000000f0010008c00000f820000413d00000b1b0110009a000e00000001001d00000b1c0010009c00000f820000413d00110b1d0000004500000f4d0000013d000000000101043b0000001102000029000000000002041b000000000001041b00000011020000290000000102200039001100000002001d0000000e0020006c00000f820000813d0000001101000029000000000101041a000000010010019000000001021002700000007f0220618f000f00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000f0000006b00000f480000613d0000000f010000290000001f0010008c000000110100002900000f470000a13d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000201043b0000000f010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b00000f760000813d000000000002041b0000000102200039000000000012004b00000f720000413d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f000000010020019000000f440000c13d000018170000013d0000001301000039000000000010043f000e0b1e00000045000900000000001d00000010010000290000000012010434001000000001001d001100000002001d0000000021020434000800000002001d000f00000001001d00000aaa0010009c000005ea0000213d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000a00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000a01000029000000200010008c00000fba0000413d0000000e01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d0000000f030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000a010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000fba0000813d000000000002041b0000000102200039000000000012004b00000fb60000413d0000000f010000290000001f0010008c00000fd90000a13d0000000e01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000200200008a0000000f02200180000000000101043b00000fde0000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000011053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b00000fd10000c13d00000fdf0000013d0000000f0000006b00000fee0000613d0000000801000029000000000101043300000fef0000013d00000020030000390000000f0020006c00000fea0000813d0000000f020000290000000302200210000000f80220018f00000c100220027f00000c100220016700000011033000290000000003030433000000000223016f000000000021041b0000000f01000029000000010110021000000001011001bf00000ff60000013d00000000010000190000000f04000029000000030240021000000c100220027f00000c1002200167000000000121016f0000000102400210000000000121019f0000000e02000029000000000012041b00000009010000290000000d0010008c000900010010003d000e00010020003d00000f860000413d000000400100043d00000aed0010009c000005ea0000213d000001c002100039000000400020043f0000000a0200003900000000002104350000000d021000290000001404000039000000000042043500000040021000390000001e0300003900000000003204350000000c021000290000002803000039000000000032043500000080021000390000002d0300003900000000003204350000000b0210002900000032030000390000000000320435000a00190000002d00000019021000290000003c030000390000000000320435000000420300003900000018021000290000000000320435000001a0021000390000006403000039000000000032043500000180021000390000005f03000039000000000032043500000160021000390000005a03000039000000000032043500000140021000390000004e03000039000000000032043500000120021000390000004b030000390000000000320435000001000210003900000046030000390000000000320435000000000204041a0000000e03000039000000000034041b0000000f0020008c000010390000413d00000b1f0220009a00000b200020009c000010390000413d00000b2103000041000000000003041b0000000103300039000000000023004b000010350000413d0000001402000039000000000020043f00000000020000190000000013010434000000ff0330018f00000b1f0420009a000000000034041b0000000d0020008c00000001022000390000103c0000413d000000400100043d001000000001001d00000b220010009c000005ea0000213d0000001002000029000000e001200039000000400010043f00000b230020009c000005ea0000213d00000010030000290000012002300039000000400020043f000000140200003900000000002104350000000000130435000001000130003900000b24020000410000000000210435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b250300004100000000003204350000001e02000039000000000021043500000010030000290000000d023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b260300004100000000003204350000001e020000390000000000210435000000100200002900000040022000390000000000120435000000400100043d00000ac60010009c000005ea0000213d0000006002100039000000400020043f000000400210003900000b27030000410000000000320435000000200210003900000b280300004100000000003204350000002802000039000000000021043500000010030000290000000c023000290000000000120435000000400100043d00000b040010009c000005ea0000213d0000002002100039000000400020043f0000000000010435000000100200002900000080022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b290300004100000000003204350000001e02000039000000000021043500000010030000290000000b023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b2a0300004100000000003204350000001e02000039000000000021043500000010030000290000000a0230002900000000001204350000001503000039000000000103041a0000000702000039000000000023041b000000080010008c000010ec0000413d00000b2b0110009a000e00000001001d00000b2c0010009c000010ec0000413d00110b2d00000045000010b70000013d000000000101043b0000001102000029000000000002041b000000000001041b00000011020000290000000102200039001100000002001d0000000e0020006c000010ec0000813d0000001101000029000000000101041a000000010010019000000001021002700000007f0220618f000f00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000f0000006b000010b20000613d0000000f010000290000001f0010008c0000001101000029000010b10000a13d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000201043b0000000f010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000010e00000813d000000000002041b0000000102200039000000000012004b000010dc0000413d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000010ae0000c13d000018170000013d0000001501000039000000000010043f000e0b2e00000045000800000000001d00000010010000290000000012010434001000000001001d001100000002001d0000000021020434000700000002001d000f00000001001d00000aaa0010009c000005ea0000213d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000900000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000901000029000000200010008c000011240000413d0000000e01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d0000000f030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000009010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000011240000813d000000000002041b0000000102200039000000000012004b000011200000413d0000000f010000290000001f0010008c000011430000a13d0000000e01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000200200008a0000000f02200180000000000101043b000011480000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000011053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000113b0000c13d000011490000013d0000000f0000006b000011580000613d00000007010000290000000001010433000011590000013d00000020030000390000000f0020006c000011540000813d0000000f020000290000000302200210000000f80220018f00000c100220027f00000c100220016700000011033000290000000003030433000000000223016f000000000021041b0000000f01000029000000010110021000000001011001bf000011600000013d00000000010000190000000f04000029000000030240021000000c100220027f00000c1002200167000000000121016f0000000102400210000000000121019f0000000e02000029000000000012041b0000000801000029000000060010008c000800010010003d000e00010020003d000010f00000413d000000400100043d001000000001001d00000b220010009c000005ea0000213d0000001002000029000000e001200039000000400010043f00000b230020009c000005ea0000213d00000010030000290000012002300039000000400020043f000000040200003900000000002104350000000000130435000001000130003900000b2f020000410000000000210435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b300300004100000000003204350000000302000039000000000021043500000010030000290000000d023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b3103000041000000000032043500000008020000390000000000210435000000100200002900000040022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b320300004100000000003204350000000702000039000000000021043500000010030000290000000c023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b1803000041000000000032043500000004020000390000000000210435000000100200002900000080022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b330300004100000000003204350000000a02000039000000000021043500000010030000290000000b023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b340300004100000000003204350000000402000039000000000021043500000010030000290000000a0230002900000000001204350000001603000039000000000103041a0000000702000039000000000023041b000000080010008c000012110000413d00000b350110009a000e00000001001d00000b360010009c000012110000413d00110b3700000045000011dc0000013d000000000101043b0000001102000029000000000002041b000000000001041b00000011020000290000000102200039001100000002001d0000000e0020006c000012110000813d0000001101000029000000000101041a000000010010019000000001021002700000007f0220618f000f00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000f0000006b000011d70000613d0000000f010000290000001f0010008c0000001101000029000011d60000a13d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000201043b0000000f010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000012050000813d000000000002041b0000000102200039000000000012004b000012010000413d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000011d30000c13d000018170000013d0000001601000039000000000010043f000e0b3800000045000800000000001d00000010010000290000000012010434001000000001001d001100000002001d0000000021020434000700000002001d000f00000001001d00000aaa0010009c000005ea0000213d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000900000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000901000029000000200010008c000012490000413d0000000e01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d0000000f030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000009010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000012490000813d000000000002041b0000000102200039000000000012004b000012450000413d0000000f010000290000001f0010008c000012680000a13d0000000e01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000200200008a0000000f02200180000000000101043b0000126d0000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000011053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000012600000c13d0000126e0000013d0000000f0000006b0000127d0000613d000000070100002900000000010104330000127e0000013d00000020030000390000000f0020006c000012790000813d0000000f020000290000000302200210000000f80220018f00000c100220027f00000c100220016700000011033000290000000003030433000000000223016f000000000021041b0000000f01000029000000010110021000000001011001bf000012850000013d00000000010000190000000f04000029000000030240021000000c100220027f00000c1002200167000000000121016f0000000102400210000000000121019f0000000e02000029000000000012041b0000000801000029000000060010008c000800010010003d000e00010020003d000012150000413d000000400100043d00000b220010009c000005ea0000213d000000e002100039000000400020043f0000000a0200003900000000042104360000000d021000290000001403000039000000000032043500000040031000390000001e0200003900000000002304350000000c02100029000000280500003900000000005204350000008002100039000000500500003900000000005204350000000b051000290000005a0600003900000000006504350000000a05100029000000640600003900000000006504350000001705000039000000000605041a0000000707000039000000000075041b000000080060008c000012b30000413d00000b390660009a00000b3a0060009c000012b30000413d00000b3b07000041000000000007041b0000000107700039000000000067004b000012af0000413d000000000050043f0000000005010433000000ff0550018f00000b3c06000041000000000056041b0000000004040433000000ff0440018f00000b3d05000041000000000045041b0000000003030433000000ff0330018f00000b3e04000041000000000034041b00000060031000390000000003030433000000ff0330018f00000b3f04000041000000000034041b0000000002020433000000ff0220018f00000b4003000041000000000023041b000000a0021000390000000002020433000000ff0220018f00000b4103000041000000000023041b000000c0011000390000000001010433000000ff0110018f00000b4202000041000000000012041b000000400100043d001000000001001d00000b220010009c000005ea0000213d0000001002000029000000e001200039000000400010043f00000b230020009c000005ea0000213d00000010030000290000012002300039000000400020043f000000050200003900000000002104350000000000130435000001000130003900000b43020000410000000000210435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b440300004100000000003204350000000a02000039000000000021043500000010030000290000000d023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b4503000041000000000032043500000014020000390000000000210435000000100200002900000040022000390000000000120435000000400100043d00000ac60010009c000005ea0000213d0000006002100039000000400020043f000000400210003900000b46030000410000000000320435000000200210003900000b470300004100000000003204350000002802000039000000000021043500000010030000290000000c023000290000000000120435000000400100043d00000b040010009c000005ea0000213d0000002002100039000000400020043f0000000000010435000000100200002900000080022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b480300004100000000003204350000001e02000039000000000021043500000010030000290000000b023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b490300004100000000003204350000000f02000039000000000021043500000010030000290000000a0230002900000000001204350000001803000039000000000103041a0000000702000039000000000023041b000000080010008c0000137c0000413d00000b4a0110009a000e00000001001d00000b4b0010009c0000137c0000413d00110b4c00000045000013470000013d000000000101043b0000001102000029000000000002041b000000000001041b00000011020000290000000102200039001100000002001d0000000e0020006c0000137c0000813d0000001101000029000000000101041a000000010010019000000001021002700000007f0220618f000f00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000f0000006b000013420000613d0000000f010000290000001f0010008c0000001101000029000013410000a13d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000201043b0000000f010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000013700000813d000000000002041b0000000102200039000000000012004b0000136c0000413d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f00000001002001900000133e0000c13d000018170000013d0000001801000039000000000010043f000e0b4d00000045000800000000001d00000010010000290000000012010434001000000001001d001100000002001d0000000021020434000700000002001d000f00000001001d00000aaa0010009c000005ea0000213d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000900000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000901000029000000200010008c000013b40000413d0000000e01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d0000000f030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000009010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000013b40000813d000000000002041b0000000102200039000000000012004b000013b00000413d0000000f010000290000001f0010008c000013d30000a13d0000000e01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000200200008a0000000f02200180000000000101043b000013d80000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000011053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000013cb0000c13d000013d90000013d0000000f0000006b000013e80000613d00000007010000290000000001010433000013e90000013d00000020030000390000000f0020006c000013e40000813d0000000f020000290000000302200210000000f80220018f00000c100220027f00000c100220016700000011033000290000000003030433000000000223016f000000000021041b0000000f01000029000000010110021000000001011001bf000013f00000013d00000000010000190000000f04000029000000030240021000000c100220027f00000c1002200167000000000121016f0000000102400210000000000121019f0000000e02000029000000000012041b0000000801000029000000060010008c000800010010003d000e00010020003d000013800000413d000000400100043d001000000001001d00000b220010009c000005ea0000213d0000001002000029000000e001200039000000400010043f00000b230020009c000005ea0000213d00000010030000290000012002300039000000400020043f000000050200003900000000002104350000000000130435000001000130003900000b4e020000410000000000210435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b4f0300004100000000003204350000000502000039000000000021043500000010030000290000000d023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b5003000041000000000032043500000009020000390000000000210435000000100200002900000040022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b510300004100000000003204350000000402000039000000000021043500000010030000290000000c023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b1803000041000000000032043500000004020000390000000000210435000000100200002900000080022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b520300004100000000003204350000000702000039000000000021043500000010030000290000000b023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b530300004100000000003204350000000402000039000000000021043500000010030000290000000a0230002900000000001204350000001903000039000000000103041a0000000702000039000000000023041b000000080010008c000014a10000413d00000b540110009a000e00000001001d00000b550010009c000014a10000413d00110b56000000450000146c0000013d000000000101043b0000001102000029000000000002041b000000000001041b00000011020000290000000102200039001100000002001d0000000e0020006c000014a10000813d0000001101000029000000000101041a000000010010019000000001021002700000007f0220618f000f00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000f0000006b000014670000613d0000000f010000290000001f0010008c0000001101000029000014660000a13d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000201043b0000000f010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000014950000813d000000000002041b0000000102200039000000000012004b000014910000413d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000014630000c13d000018170000013d0000001901000039000000000010043f000e0b5700000045000800000000001d00000010010000290000000012010434001000000001001d001100000002001d0000000021020434000700000002001d000f00000001001d00000aaa0010009c000005ea0000213d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000900000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000901000029000000200010008c000014d90000413d0000000e01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d0000000f030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000009010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000014d90000813d000000000002041b0000000102200039000000000012004b000014d50000413d0000000f010000290000001f0010008c000014f80000a13d0000000e01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000200200008a0000000f02200180000000000101043b000014fd0000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000011053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000014f00000c13d000014fe0000013d0000000f0000006b0000150d0000613d000000070100002900000000010104330000150e0000013d00000020030000390000000f0020006c000015090000813d0000000f020000290000000302200210000000f80220018f00000c100220027f00000c100220016700000011033000290000000003030433000000000223016f000000000021041b0000000f01000029000000010110021000000001011001bf000015150000013d00000000010000190000000f04000029000000030240021000000c100220027f00000c1002200167000000000121016f0000000102400210000000000121019f0000000e02000029000000000012041b0000000801000029000000060010008c000800010010003d000e00010020003d000014a50000413d000000400100043d00000b220010009c000005ea0000213d000000e002100039000000400020043f0000000a0200003900000000042104360000000d021000290000001403000039000000000032043500000040031000390000001e0200003900000000002304350000000c02100029000000280500003900000000005204350000008002100039000000500500003900000000005204350000000b051000290000005a0600003900000000006504350000000a05100029000000640600003900000000006504350000001a05000039000000000605041a0000000707000039000000000075041b000000080060008c000015430000413d00000b580660009a00000b590060009c000015430000413d00000b5a07000041000000000007041b0000000107700039000000000067004b0000153f0000413d000000000050043f0000000005010433000000ff0550018f00000b5b06000041000000000056041b0000000004040433000000ff0440018f00000b5c05000041000000000045041b0000000003030433000000ff0330018f00000b5d04000041000000000034041b00000060031000390000000003030433000000ff0330018f00000b5e04000041000000000034041b0000000002020433000000ff0220018f00000b5f03000041000000000023041b000000a0021000390000000002020433000000ff0220018f00000b6003000041000000000023041b000000c0011000390000000001010433000000ff0110018f00000b6102000041000000000012041b000000400100043d001000000001001d00000b620010009c000005ea0000213d0000001002000029000001a001200039000000400010043f00000aee0020009c000005ea0000213d00000010050000290000022002500039000000400020043f00000050020000390000000000210435000002000350003900000b63020000410000000000230435000001e00350003900000b64040000410000000000430435000001c00350003900000b650400004100000000004304350000000000150435000000400100043d00000b660010009c000005ea0000213d0000008003100039000000400030043f00000060031000390000000000230435000000400210003900000b67030000410000000000320435000000200210003900000b68030000410000000000320435000000500200003900000000002104350009001c0000002d00000010030000290000001c023000290000000000120435000000400200043d00000b660020009c000005ea0000213d0000008001200039000000400010043f000000600320003900000b63010000410000000000130435000000400320003900000b69040000410000000000430435000000200320003900000b6a04000041000000000043043500000050030000390000000000320435000000100300002900000040033000390000000000230435000000400200043d00000b660020009c000005ea0000213d0000008003200039000000400030043f00000060032000390000000000130435000000400120003900000b6b030000410000000000310435000000200120003900000b6c030000410000000000310435000000500100003900000000001204350008001b0000002d00000010030000290000001b013000290000000000210435000000400100043d00000b040010009c000005ea0000213d0000002002100039000000400020043f0000000000010435000000100200002900000080022000390000000000120435000000400200043d00000b660020009c000005ea0000213d0000008001200039000000400010043f000000600320003900000b6d010000410000000000130435000000400320003900000b6e040000410000000000430435000000200320003900000b6f040000410000000000430435000000500300003900000000003204350007001a0000002d00000010040000290000001a034000290000000000230435000000400200043d00000b660020009c000005ea0000213d0000008003200039000000400030043f00000060032000390000000000130435000000400120003900000b70030000410000000000310435000000200120003900000b710300004100000000003104350000005001000039000000000012043500000010030000290000000a013000290000000000210435000000400200043d00000b660020009c000005ea0000213d0000008001200039000000400010043f000000600320003900000b6d010000410000000000130435000000400320003900000b72040000410000000000430435000000200320003900000b7304000041000000000043043500000050030000390000000000320435000a00180000002d000000100400002900000018034000290000000000230435000000400200043d00000b660020009c000005ea0000213d0000008003200039000000400030043f00000060032000390000000000130435000000400120003900000b74030000410000000000310435000000200120003900000b7503000041000000000031043500000050010000390000000000120435000600170000002d000000100300002900000017013000290000000000210435000000400100043d00000b660010009c000005ea0000213d0000008002100039000000400020043f000000600210003900000b6d030000410000000000320435000000400210003900000b76030000410000000000320435000000200210003900000b7703000041000000000032043500000050020000390000000000210435000500160000002d000000100300002900000016023000290000000000120435000000400100043d00000b660010009c000005ea0000213d0000008002100039000000400020043f000000600210003900000b78030000410000000000320435000000400210003900000b79030000410000000000320435000000200210003900000b7a03000041000000000032043500000046020000390000000000210435000400150000002d000000100300002900000015023000290000000000120435000000400100043d00000b660010009c000005ea0000213d0000008002100039000000400020043f000000600210003900000b7b030000410000000000320435000000400210003900000b7c030000410000000000320435000000200210003900000b7d03000041000000000032043500000046020000390000000000210435000300140000002d000000100300002900000014023000290000000000120435000000400100043d00000b660010009c000005ea0000213d0000008002100039000000400020043f000000600210003900000b7e030000410000000000320435000000400210003900000b7f030000410000000000320435000000200210003900000b8003000041000000000032043500000046020000390000000000210435000200130000002d0000001003000029000000130230002900000000001204350000001b03000039000000000103041a0000000d02000039000000000023041b0000000e0010008c000016a40000413d00000b810110009a000e00000001001d00000b820010009c000016a40000413d00110b83000000450000166f0000013d000000000101043b0000001102000029000000000002041b000000000001041b00000011020000290000000102200039001100000002001d0000000e0020006c000016a40000813d0000001101000029000000000101041a000000010010019000000001021002700000007f0220618f000f00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000f0000006b0000166a0000613d0000000f010000290000001f0010008c0000001101000029000016690000a13d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000201043b0000000f010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b000016980000813d000000000002041b0000000102200039000000000012004b000016940000413d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000016660000c13d000018170000013d0000001b01000039000000000010043f000e0b8400000045000c00000000001d00000010010000290000000012010434001000000001001d001100000002001d0000000021020434000b00000002001d000f00000001001d00000aaa0010009c000005ea0000213d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000d00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000d01000029000000200010008c000016dc0000413d0000000e01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d0000000f030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000d010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000016dc0000813d000000000002041b0000000102200039000000000012004b000016d80000413d0000000f010000290000001f0010008c000016fb0000a13d0000000e01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000200200008a0000000f02200180000000000101043b000017000000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000011053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000016f30000c13d000017010000013d0000000f0000006b000017100000613d0000000b010000290000000001010433000017110000013d00000020030000390000000f0020006c0000170c0000813d0000000f020000290000000302200210000000f80220018f00000c100220027f00000c100220016700000011033000290000000003030433000000000223016f000000000021041b0000000f01000029000000010110021000000001011001bf000017180000013d00000000010000190000000f04000029000000030240021000000c100220027f00000c1002200167000000000121016f0000000102400210000000000121019f0000000e02000029000000000012041b0000000c010000290000000c0010008c000c00010010003d000e00010020003d000016a80000413d000000400100043d001000000001001d00000b620010009c000005ea0000213d0000001002000029000001a001200039000000400010043f00000b850020009c000005ea0000213d0000001003000029000001e002300039000000400020043f0000000f0200003900000000002104350000000000130435000001c00130003900000b86020000410000000000210435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b8703000041000000000032043500000010020000390000000000210435000000100300002900000009023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b880300004100000000003204350000000e020000390000000000210435000000100200002900000040022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b890300004100000000003204350000000e020000390000000000210435000000100300002900000008023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b1803000041000000000032043500000004020000390000000000210435000000100200002900000080022000390000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b8a03000041000000000032043500000010020000390000000000210435000000100300002900000007023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b8b030000410000000000320435000000140200003900000000002104350000001002000029000100190000002d00000019022000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b8c0300004100000000003204350000001002000039000000000021043500000010030000290000000a023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b8d03000041000000000032043500000011020000390000000000210435000000100300002900000006023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b8e03000041000000000032043500000010020000390000000000210435000000100300002900000005023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b8f0300004100000000003204350000000e020000390000000000210435000000100300002900000004023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b900300004100000000003204350000000f020000390000000000210435000000100300002900000003023000290000000000120435000000400100043d00000aad0010009c000005ea0000213d0000004002100039000000400020043f000000200210003900000b910300004100000000003204350000000f0200003900000000002104350000001003000029000000020230002900000000001204350000001c03000039000000000103041a0000000d02000039000000000023041b0000000e0010008c000018190000413d00000b920110009a000e00000001001d00000b930010009c000018190000413d00110b9400000045000017e30000013d000000000101043b0000001102000029000000000002041b000000000001041b00000011020000290000000102200039001100000002001d0000000e0020006c000018190000813d0000001101000029000000000101041a000000010010019000000001021002700000007f0220618f000f00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000f0000006b000017de0000613d0000000f010000290000001f0010008c0000001101000029000017dd0000a13d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000000201043b0000000f010000290000001f01100039000000050110027000000000011200190000000102200039000000000012004b0000180c0000813d000000000002041b0000000102200039000000000012004b000018080000413d0000001101000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000017da0000c13d000000000100001900002971000104300000001c01000039000000000010043f000e0b9500000045000c00000000001d00000010010000290000000012010434001000000001001d001100000002001d0000000021020434000b00000002001d000f00000001001d00000aaa0010009c000005ea0000213d0000000e01000029000000000101041a000000010010019000000001021002700000007f0220618f000d00000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000000940000c13d0000000d01000029000000200010008c000018510000413d0000000e01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d0000000f030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b0000000d010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000018510000813d000000000002041b0000000102200039000000000012004b0000184d0000413d0000000f010000290000001f0010008c000018700000a13d0000000e01000029000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000018170000613d000000200200008a0000000f02200180000000000101043b000018750000613d000000010320008a000000050330027000000000033100190000000104300039000000200300003900000011053000290000000005050433000000000051041b00000020033000390000000101100039000000000041004b000018680000c13d000018760000013d0000000f0000006b000018850000613d0000000b010000290000000001010433000018860000013d00000020030000390000000f0020006c000018810000813d0000000f020000290000000302200210000000f80220018f00000c100220027f00000c100220016700000011033000290000000003030433000000000223016f000000000021041b0000000f01000029000000010110021000000001011001bf0000188d0000013d00000000010000190000000f04000029000000030240021000000c100220027f00000c1002200167000000000121016f0000000102400210000000000121019f0000000e02000029000000000012041b0000000c010000290000000c0010008c000c00010010003d000e00010020003d0000181d0000413d000000400100043d00000b620010009c000005ea0000213d000001a002100039000000400020043f0000000502000039000000000021043500000009021000290000000a03000039000000000032043500000040021000390000000f03000039000000000032043500000008021000290000001403000039000000000032043500000080021000390000003203000039000000000032043500000007021000290000003a0300003900000000003204350000000102100029000000420300003900000000003204350000000a021000290000004a03000039000000000032043500000006021000290000005203000039000000000032043500000005021000290000005b03000039000000000032043500000004021000290000005e0300003900000000003204350000000302100029000000610300003900000000003204350000000202100029000000640300003900000000003204350000001d02000039000000000302041a0000000d04000039000000000042041b0000000e0030008c000018cd0000413d00000b960330009a00000b970030009c000018cd0000413d00000b9804000041000000000004041b0000000104400039000000000034004b000018c90000413d000000000020043f00000000020000190000000013010434000000ff0330018f00000b960420009a000000000034041b0000000c0020008c0000000102200039000018cf0000413d00000001010000390000001e02000039000000000012041b000009c4010000390000002202000039000000000012041b00000b99010000410000002302000039000000000012041b0000002401000039000000000201041a00000c1102200197000000000021041b00000025010000390000006402000039000000000021041b0000002601000039000000000021041b00000b9a010000410000000000100443000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000b9b011001c70000800b02000039296f296a0000040f00000001002001900000190b0000613d000000000201043b000000000002004b000006450000613d001100000002001d00120001002000920000800b0100003900000024030000390000000004000415000000120440008a000000050440021000000b9c02000041296f294e0000040f0000002002000039000000000012041b00000021010000390000001102000029000000000021041b0000000001000411296f190c0000040f00000020010000390000010000100443000001200000044300000b9d01000041000029700001042e000000000001042f00000a66061001970000000901000039000000000201041a00000a6703200197000000000363019f000000000031041b000000000100041400000a660520019700000a5d0010009c00000a5d01008041000000c00110021000000a68011001c70000800d02000039000000030300003900000a6904000041296f29650000040f00000001002001900000191f0000613d000000000001042d0000000001000019000029710001043000000a6601100197000000000010043f0000002701000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f0000000100200190000019300000613d000000000101043b000000000001042d0000000001000019000029710001043000000a6602200197000000000020043f000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f0000000100200190000019400000613d000000000101043b000000000001042d0000000001000019000029710001043000000000430104340000000001320436000000000003004b0000194e0000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b000019470000413d000000000213001900000000000204350000001f0230003900000c0f022001970000000001210019000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000019630000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000195c0000413d000000000312001900000000000304350000001f0220003900000c0f022001970000000001120019000000000001042d00000c120010009c000019790000213d000000630010008c000019790000a13d00000002030003670000000401300370000000000101043b00000a660010009c000019790000213d0000002402300370000000000202043b00000a660020009c000019790000213d0000004403300370000000000303043b000000000001042d0000000001000019000029710001043000000c130010009c000019800000813d0000002001100039000000400010043f000000000001042d00000be301000041000000000010043f0000004101000039000000040010043f00000be40100004100002971000104300000001f0220003900000c0f022001970000000001120019000000000021004b0000000002000039000000010200403900000aaa0010009c000019920000213d0000000100200190000019920000c13d000000400010043f000000000001042d00000be301000041000000000010043f0000004101000039000000040010043f00000be40100004100002971000104300007000000000002000300000002001d000500000001001d000600000003001d000000000003004b00001a8a0000613d0000000601000029000000000010043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001a880000613d000000000101043b000000000101041a000000000001004b000019c60000c13d000000000100041a000000060010006c00001a8a0000a13d0000000602000029000000010220008a000700000002001d000000000020043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001a880000613d000000000101043b000000000101041a000000000001004b0000000702000029000019b30000613d00000c050010019800001a8a0000c13d000000050200002900000a6602200197000400000001001d00000a6601100197000700000002001d000000000021004b00001a8e0000c13d0000000601000029000000000010043f0000000601000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001a880000613d000000000201043b000000000302041a000000000100041100000a6604100197000000070040006c00001a070000613d000000000034004b00001a070000613d000500000004001d000100000003001d000200000002001d0000000701000029000000000010043f0000000701000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001a880000613d000000000101043b0000000502000029000000000020043f000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001a880000613d000000000101043b000000000101041a000000ff001001900000000202000029000000010300002900001a970000613d000000000003004b00001a0a0000613d000000000002041b0000000701000029000000000010043f0000000501000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001a880000613d000000000101043b000000000201041a000000010220008a000000000021041b000000030100002900000a6601100197000500000001001d000000000010043f0000000501000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001a880000613d000000000101043b000000000201041a0000000102200039000000000021041b00000c16010000410000000000100443000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000b9b011001c70000800b02000039296f296a0000040f000000010020019000001a920000613d000000000101043b000300000001001d0000000601000029000000000010043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001a880000613d0000000302000029000000a00220021000000005022001af00000c17022001c7000000000101043b000000000021041b000000040100002900000c170010019800001a770000c13d00000006010000290000000101100039000300000001001d000000000010043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001a880000613d000000000101043b000000000101041a000000000001004b00001a770000c13d000000000100041a000000030010006b00001a770000613d0000000301000029000000000010043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001a880000613d000000000101043b0000000402000029000000000021041b000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000a68011001c70000800d02000039000000040300003900000c1804000041000000070500002900000005060000290000000607000029296f29650000040f000000010020019000001a880000613d000000050000006b00001a930000613d000000000001042d0000000001000019000029710001043000000c0801000041000000000010043f00000bff01000041000029710001043000000c1401000041000000000010043f00000bff010000410000297100010430000000000001042f00000c1901000041000000000010043f00000bff01000041000029710001043000000c1501000041000000000010043f00000bff010000410000297100010430000000000001004b00001a9e0000613d000000000001042d000000400100043d000000440210003900000c0003000041000000000032043500000bd10200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000a5d0010009c00000a5d01008041000000400110021000000bfa011001c700002971000104300000000031010434000000000001004b00001ab90000613d000000000400001900000000052400190000000006430019000000000606043300000000006504350000002004400039000000000014004b00001ab20000413d00000000012100190000000000010435000000000001042d0008000000000002000000000001004b00001d470000613d000000000200041a000000000012004b00001d470000a13d000700000001001d000800000001001d000000000010043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001d330000613d000000000101043b000000000101041a000000000001004b00001ade0000c13d0000000801000029000000000001004b000000010110008a00001ac30000c13d00000be301000041000000000010043f0000001101000039000000040010043f00000be401000041000029710001043000000c0500100198000000070100002900001d470000c13d000000000010043f0000000a01000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001d330000613d000000400200043d00000c1a0020009c00001d350000813d000000000301043b000000c001200039000000400010043f000000000103041a00000000051204360000000104300039000000000404041a000800000005001d00000000004504350000000204300039000000000404041a0000004005200039000700000005001d00000000004504350000000304300039000000000404041a0000006005200039000600000005001d00000000004504350000000404300039000000000404041a0000008005200039000500000005001d0000000000450435000000a0042000390000000502300039000000000202041a000400000004001d00000000002404350000000c02000039000000000302041a000000000013004b00001d3b0000a13d000000000020043f00000aa50510009a000000000205041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000043004b00001d410000c13d000000400100043d0000000004610436000000000003004b00001b3c0000613d000100000004001d000300000006001d000200000001001d000000000050043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f000000010020019000001d330000613d0000000306000029000000000006004b00001b420000613d000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000065004b00001b340000413d00001b440000013d00000c11022001970000000000240435000000000006004b0000002005000039000000000500603900001b440000013d000000000500001900000002010000290000003f0350003900000c0f023001970000000003120019000000000023004b0000000002000039000000010200403900000aaa0030009c00001d350000213d000000010020019000001d350000c13d000000400030043f296f25890000040f000000080200002900000000040204330000000f02000039000000000302041a000000000043004b00001d3b0000a13d000000000020043f00000ad20540009a000000000205041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000442013f000000010040019000001d410000c13d000800000001001d000000400100043d0000000004610436000000000003004b00001b830000613d000100000004001d000300000006001d000200000001001d000000000050043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f000000010020019000001d330000613d0000000306000029000000000006004b00001b890000613d000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000065004b00001b7b0000413d00001b8b0000013d00000c11022001970000000000240435000000000006004b0000002005000039000000000500603900001b8b0000013d000000000500001900000002010000290000003f0350003900000c0f023001970000000003120019000000000023004b0000000002000039000000010200403900000aaa0030009c00001d350000213d000000010020019000001d350000c13d000000400030043f296f25890000040f000000070200002900000000040204330000001202000039000000000302041a000000000043004b00001d3b0000a13d000000000020043f00000b090540009a000000000205041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000442013f000000010040019000001d410000c13d000700000001001d000000400100043d0000000004610436000000000003004b00001bca0000613d000100000004001d000200000006001d000300000001001d000000000050043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f000000010020019000001d330000613d0000000206000029000000000006004b00001bd00000613d000000000201043b0000000005000019000000030100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000065004b00001bc20000413d00001bd20000013d00000c11022001970000000000240435000000000006004b0000002005000039000000000500603900001bd20000013d000000000500001900000003010000290000003f0350003900000c0f023001970000000003120019000000000023004b0000000002000039000000010200403900000aaa0030009c00001d350000213d000000010020019000001d350000c13d000000400030043f296f25890000040f000000060200002900000000040204330000001502000039000000000302041a000000000043004b00001d3b0000a13d000000000020043f00000b2b0540009a000000000205041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000442013f000000010040019000001d410000c13d000600000001001d000000400100043d0000000004610436000000000003004b00001c110000613d000100000004001d000300000006001d000200000001001d000000000050043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f000000010020019000001d330000613d0000000306000029000000000006004b00001c170000613d000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000065004b00001c090000413d00001c190000013d00000c11022001970000000000240435000000000006004b0000002005000039000000000500603900001c190000013d000000000500001900000002010000290000003f0350003900000c0f023001970000000003120019000000000023004b0000000002000039000000010200403900000aaa0030009c00001d350000213d000000010020019000001d350000c13d000000400030043f296f25890000040f0000000005010019000000050100002900000000010104330000001802000039000000000302041a000000000013004b00001d3b0000a13d000000000020043f00000b4a0610009a000000000206041a000000010320019000000001072002700000007f0770618f0000001f0070008c00000000040000390000000104002039000000000442013f000000010040019000001d410000c13d000500000005001d000000400100043d0000000004710436000000000003004b00001c590000613d000100000004001d000300000007001d000200000001001d000000000060043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f000000010020019000001d330000613d0000000306000029000000000006004b00001c5f0000613d000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000065004b00001c510000413d00001c610000013d00000c11022001970000000000240435000000000007004b0000002005000039000000000500603900001c610000013d000000000500001900000002010000290000003f0350003900000c0f023001970000000003120019000000000023004b0000000002000039000000010200403900000aaa0030009c00001d350000213d000000010020019000001d350000c13d000000400030043f296f25890000040f0000000005010019000000040100002900000000010104330000001b02000039000000000302041a000000000013004b00001d3b0000a13d000000000020043f00000b810610009a000000000206041a000000010320019000000001072002700000007f0770618f0000001f0070008c00000000040000390000000104002039000000000442013f000000010040019000001d410000c13d000000400100043d0000000004710436000000000003004b000300000005001d00001ca10000613d000100000004001d000400000007001d000200000001001d000000000060043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f000000010020019000001d330000613d0000000407000029000000000007004b00001ca70000613d000000000201043b0000000006000019000000020100002900000001080000290000000003860019000000000402041a000000000043043500000001022000390000002006600039000000000076004b00001c990000413d00001ca90000013d00000c11022001970000000000240435000000000007004b0000002006000039000000000600603900001ca90000013d000000000600001900000002010000290000003f0360003900000c0f023001970000000003120019000000000023004b0000000002000039000000010200403900000aaa0030009c00001d350000213d000000010020019000001d350000c13d000000400030043f296f25890000040f000000400200043d000000800320003900000c1b040000410000000000430435000000200320003900000c1c040000410000000000430435000000b20320003900000c1d040000410000000000430435000000400320003900000c1e040000410000000000430435000000600320003900000c1f040000410000000000430435000000920320003900000c20040000410000000000430435000000bf0320003900000008050000290000000004050433000000000004004b00001cd60000613d0000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b00001ccf0000413d0000000003340019000000000003043500000007050000290000000004050433000000000004004b00001ce50000613d0000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b00001cde0000413d0000000003340019000000000003043500000006050000290000000004050433000000000004004b00001cf40000613d0000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b00001ced0000413d0000000003340019000000000003043500000005050000290000000004050433000000000004004b00001d030000613d0000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b00001cfc0000413d0000000003340019000000000003043500000003050000290000000004050433000000000004004b00001d120000613d0000002005500039000000000600001900000000073600190000000008650019000000000808043300000000008704350000002006600039000000000046004b00001d0b0000413d000000000334001900000000000304350000000004010433000000000004004b00001d200000613d0000002001100039000000000500001900000000063500190000000007510019000000000707043300000000007604350000002005500039000000000045004b00001d190000413d000000000134001900000c2103000041000000000031043500000000012100490000001a0310008a0000000000320435000000250110003900000c0f031001970000000001230019000000000031004b0000000003000039000000010300403900000aaa0010009c00001d350000213d000000010030019000001d350000c13d000000400010043f0000000001020019000000000001042d0000000001000019000029710001043000000be301000041000000000010043f0000004101000039000000040010043f00000be401000041000029710001043000000be301000041000000000010043f0000003201000039000000040010043f00000be401000041000029710001043000000be301000041000000000010043f0000002201000039000000040010043f00000be4010000410000297100010430000000400100043d000000440210003900000c2203000041000000000032043500000024021000390000001403000039000000000032043500000bd102000041000000000021043500000004021000390000002003000039000000000032043500000a5d0010009c00000a5d01008041000000400110021000000bfa011001c70000297100010430000a000000000002000100000004001d000500000002001d000600000001001d000700000003001d000000000003004b00001eda0000613d0000000701000029000000000010043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001ed80000613d000000000101043b000000000101041a000000000001004b00001d870000c13d000000000100041a000000070010006c00001eda0000a13d0000000702000029000000010220008a000800000002001d000000000020043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001ed80000613d000000000101043b000000000101041a000000000001004b000000080200002900001d740000613d00000c050010019800001eda0000c13d000000060200002900000a6602200197000300000001001d00000a6601100197000800000002001d000000000021004b00001edf0000c13d0000000701000029000000000010043f0000000601000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001ed80000613d000000000301043b000000000403041a000000000100041100000a6602100197000400000002001d000000080020006c00001dc80000613d000000040040006b00001dc80000613d000200000004001d000600000003001d0000000801000029000000000010043f0000000701000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001ed80000613d000000000101043b0000000402000029000000000020043f000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001ed80000613d000000000101043b000000000101041a000000ff001001900000000603000029000000020400002900001ee70000613d000000000004004b00001dcb0000613d000000000003041b0000000801000029000000000010043f0000000501000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001ed80000613d000000000101043b000000000201041a000000010220008a000000000021041b000000050100002900000a6601100197000600000001001d000000000010043f0000000501000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001ed80000613d000000000101043b000000000201041a0000000102200039000000000021041b00000c16010000410000000000100443000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000b9b011001c70000800b02000039296f296a0000040f000000010020019000001ede0000613d000000000101043b000200000001001d0000000701000029000000000010043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001ed80000613d0000000202000029000000a0022002100000000606000029000000000262019f00000c17022001c7000000000101043b000000000021041b000000030100002900000c170010019800001e3b0000c13d00000007010000290000000101100039000200000001001d000000000010043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001ed80000613d000000000101043b000000000101041a000000000001004b000000060600002900001e3b0000c13d000000000100041a000000020010006b00001e3b0000613d0000000201000029000000000010043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001ed80000613d000000000101043b0000000302000029000000000021041b0000000606000029000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000a68011001c70000800d02000039000000040300003900000c180400004100000008050000290000000707000029296f29650000040f000000010020019000001ed80000613d000000060000006b00001ee30000613d00000c2301000041000000000010044300000005010000290000000400100443000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000c02011001c70000800202000039296f296a0000040f000000010020019000001ede0000613d000000000101043b000000000001004b00001ed70000613d0000000008000415000000400b00043d0000006401b00039000000800700003900000000007104350000004401b00039000000070200002900000000002104350000002401b000390000000802000029000000000021043500000c240100004100000000001b04350000000401b00039000000040200002900000000002104350000008403b00039000000010100002900000000210104340000000000130435000000a403b00039000000000001004b00001e790000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b00001e720000413d0000000002310019000000000002043500000000040004140000000602000029000000040020008c00001e870000c13d00000000050004150000000a0550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900001ebf0000013d000700000008001d000500000007001d0000001f0110003900000c0f01100197000000a40110003900000a5d0010009c00000a5d01008041000000600110021000000a5d00b0009c00000a5d0300004100000000030b40190000004003300210000000000131019f00000a5d0040009c00000a5d04008041000000c003400210000000000113019f00080000000b001d296f29650000040f000000080b000029000000600310027000000a5d03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900001eaa0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001ea60000c13d000000000006004b00001eb70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000090550008a0000000505500210000000010020019000001eeb0000613d00000007080000290000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000aaa0010009c00001f1d0000213d000000010020019000001f1d0000c13d000000400010043f000000200030008c00001ed80000413d00000000010b043300000c0a0010019800001ed80000c13d0000000502500270000000000201001f00000000020004150000000002280049000000000200000200000c0b0110019700000c240010009c00001f190000c13d000000000001042d0000000001000019000029710001043000000c0801000041000000000010043f00000bff010000410000297100010430000000000001042f00000c1401000041000000000010043f00000bff01000041000029710001043000000c1901000041000000000010043f00000bff01000041000029710001043000000c1501000041000000000010043f00000bff010000410000297100010430000000000003004b00001eef0000c13d000000600200003900001f160000013d0000001f0230003900000c25022001970000003f0220003900000c2604200197000000400200043d0000000004420019000000000024004b0000000005000039000000010500403900000aaa0040009c00001f1d0000213d000000010050019000001f1d0000c13d000000400040043f0000001f0430018f000000000632043600000c2705300198000500000006001d000000000356001900001f090000613d000000000601034f0000000507000029000000006806043c0000000007870436000000000037004b00001f050000c13d000000000004004b00001f160000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00001f230000c13d00000c2801000041000000000010043f00000bff01000041000029710001043000000be301000041000000000010043f0000004101000039000000040010043f00000be4010000410000297100010430000000050200002900000a5d0020009c00000a5d02008041000000400220021000000a5d0010009c00000a5d010080410000006001100210000000000121019f00002971000104300001000000000002000000000001004b00001f5c0000613d000100000001001d000000000010043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001f5a0000613d000000000101043b000000000101041a000000000001004b00001f570000c13d000000000100041a0000000102000029000000000021004b00001f5c0000a13d000000010220008a000100000002001d000000000020043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f000000010020019000001f5a0000613d000000000101043b000000000101041a000000000001004b000000010200002900001f440000613d00000c050010019800001f5c0000c13d000000000001042d0000000001000019000029710001043000000c0801000041000000000010043f00000bff0100004100002971000104300014000000000002000000000200041a0000000003120019000200000003001d000000010330008a000f00000002001d000000010220008a000000000032004b0000256a0000213d0000002202000039000000000202041a000000000023004b000025700000213d0000000f0000006b0000256a0000613d000000020010006b0000256a0000413d000100000001001d00000002020000290000000f0020006b000023af0000813d000000400100043d001000000001001d00000c1a0010009c000025630000813d0000002001000039000000000101041a0000001004000029000000c002400039000000400020043f00000000030000310000000203300367000000003503043c0000000004540436000000000024004b00001f800000c13d000000400200043d00000040032000390000000f04000029000000000043043500000040030000390000000003320436000000000013043500000ac60020009c000025630000213d0000006001200039000000400010043f00000a5d0030009c00000a5d030080410000004001300210000000000202043300000a5d0020009c00000a5d020080410000006002200210000000000112019f000000000200041400000a5d0020009c00000a5d02008041000000c002200210000000000112019f00000a68011001c70000801002000039296f296a0000040f0000000100200190000024de0000613d000000000101043b000000651010011a00000010020000290000000001120436000600000001001d000e002000200092000000010500003900000005065002100000000e016000290000000003010433000000400100043d00000040021000390000000f040000290000000000420435000000200210003900000000003204350000004003000039000000000031043500000ac60010009c000025630000213d001100000006001d001200000005001d0000006003100039000000400030043f00000a5d0020009c00000a5d020080410000004002200210000000000101043300000a5d0010009c00000a5d010080410000006001100210000000000121019f000000000200041400000a5d0020009c00000a5d02008041000000c002200210000000000112019f00000a68011001c70000801002000039296f296a0000040f0000000100200190000024de0000613d00000011030000290000001002300029000000000101043b000000651010011a00000000001204350000001205000029000000050050008c000000010550003900001fa80000413d0000000c01000039000000000501041a00000aaa0050009c000025630000213d00000005015002100000003f0110003900000c2901100197000000400200043d0000000001120019000700000002001d000000000021004b0000000002000039000000010200403900000aaa0010009c000025630000213d0000000100200190000025630000c13d00000010020000290000000002020433000b00000002001d000000400010043f000000070100002900000000005104350000000c01000039000000000010043f000000000005004b0000203d0000613d00000aa90600004100000000070000190000000708000029000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000032004b000024d80000c13d000000400900043d0000000003490436000000000002004b000020230000613d000a00000003001d000e00000004001d000c00000009001d001100000008001d001200000007001d000d00000006001d000000000060043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000024de0000613d0000000e0a00002900000000000a004b000000090500002900000012070000290000001108000029000020290000613d000000000201043b00000000010000190000000d060000290000000c090000290000000a0b0000290000000003b10019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b0000201b0000413d0000202c0000013d00000c11011001970000000000130435000000000004004b000000200100003900000000010060390000202c0000013d00000000010000190000000d060000290000000c090000290000003f0110003900000c0f021001970000000001920019000000000021004b0000000002000039000000010200403900000aaa0010009c000025630000213d0000000100200190000025630000c13d0000002008800039000000400010043f000000000098043500000001066000390000000107700039000000000057004b00001ff30000413d0000000e04000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b00000000040100190000204e0000613d00000abc0500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b000020480000413d00000000032400490000001f0330003900000c0f033001970000000004230019000000000034004b00000000030000390000000103004039000800000004001d00000aaa0040009c000025630000213d0000000100300190000025630000c13d0000000803000029000000400030043f00000007030000290000000003030433000000000003004b000024e00000613d0000000002020433000000000023004b000024e20000c13d00000000040000190000000502400210000000000212001900000000020204330000000b0020006c0000206e0000213d0000000104400039000000000034004b000020640000413d000500000000001d0000206f0000013d000500000004001d0000000f01000039000000000501041a00000aaa0050009c000025630000213d00000005015002100000003f0110003900000c29021001970000000801200029000000000021004b0000000002000039000000010200403900000aaa0010009c000025630000213d0000000100200190000025630000c13d00000006020000290000000002020433000b00000002001d000000400010043f000000080100002900000000005104350000000f01000039000000000010043f000000000005004b000020d70000613d00000ad50600004100000000070000190000000808000029000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f0000000100300190000024d80000c13d000000400900043d0000000003490436000000000002004b000020bd0000613d000a00000003001d000c00000004001d000d00000009001d000e00000008001d001100000007001d001200000006001d000000000060043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000024de0000613d0000000c0a00002900000000000a004b000000090500002900000011070000290000000e08000029000020c30000613d000000000201043b000000000100001900000012060000290000000d090000290000000a0b0000290000000003b10019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b000020b50000413d000020c60000013d00000c11011001970000000000130435000000000004004b00000020010000390000000001006039000020c60000013d000000000100001900000012060000290000000d090000290000003f0110003900000c0f021001970000000001920019000000000021004b0000000002000039000000010200403900000aaa0010009c000025630000213d0000000100200190000025630000c13d0000002008800039000000400010043f000000000098043500000001066000390000000107700039000000000057004b0000208c0000413d0000001104000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b0000000004010019000020e80000613d00000ae50500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b000020e20000413d00000000032400490000001f0330003900000c0f033001970000000004230019000000000034004b00000000030000390000000103004039000700000004001d00000aaa0040009c000025630000213d0000000100300190000025630000c13d0000000703000029000000400030043f00000008030000290000000003030433000000000003004b000024e40000613d0000000002020433000000000023004b000024f50000c13d00000000040000190000000502400210000000000212001900000000020204330000000b0020006c000021080000213d0000000104400039000000000034004b000020fe0000413d000600000000001d000021090000013d000600000004001d0000001201000039000000000501041a00000aaa0050009c000025630000213d00000005015002100000003f0110003900000c29021001970000000701200029000000000021004b0000000002000039000000010200403900000aaa0010009c000025630000213d0000000100200190000025630000c13d000000100200002900000040022000390000000002020433000b00000002001d000000400010043f000000070100002900000000005104350000001201000039000000000010043f000000000005004b000021720000613d00000b0c0600004100000000070000190000000708000029000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f0000000100300190000024d80000c13d000000400900043d0000000003490436000000000002004b000021580000613d000a00000003001d000c00000004001d000d00000009001d000e00000008001d001100000007001d001200000006001d000000000060043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000024de0000613d0000000c0a00002900000000000a004b000000090500002900000011070000290000000e080000290000215e0000613d000000000201043b000000000100001900000012060000290000000d090000290000000a0b0000290000000003b10019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b000021500000413d000021610000013d00000c11011001970000000000130435000000000004004b00000020010000390000000001006039000021610000013d000000000100001900000012060000290000000d090000290000003f0110003900000c0f021001970000000001920019000000000021004b0000000002000039000000010200403900000aaa0010009c000025630000213d0000000100200190000025630000c13d0000002008800039000000400010043f000000000098043500000001066000390000000107700039000000000057004b000021270000413d0000001404000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b0000000004010019000021830000613d00000c2d0500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b0000217d0000413d00000000032400490000001f0330003900000c0f033001970000000004230019000000000034004b00000000030000390000000103004039000800000004001d00000aaa0040009c000025630000213d0000000100300190000025630000c13d0000000803000029000000400030043f00000007030000290000000003030433000000000003004b000024e00000613d0000000002020433000000000023004b000024e20000c13d00000000040000190000000502400210000000000212001900000000020204330000000b0020006c000021a30000213d0000000104400039000000000034004b000021990000413d000400000000001d000021a40000013d000400000004001d0000001501000039000000000501041a00000aaa0050009c000025630000213d00000005015002100000003f0110003900000c29021001970000000801200029000000000021004b0000000002000039000000010200403900000aaa0010009c000025630000213d0000000100200190000025630000c13d000000100200002900000060022000390000000002020433000b00000002001d000000400010043f000000080100002900000000005104350000001501000039000000000010043f000000000005004b0000220d0000613d00000b2e0600004100000000070000190000000808000029000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f0000000100300190000024d80000c13d000000400900043d0000000003490436000000000002004b000021f30000613d000a00000003001d000c00000004001d000d00000009001d000e00000008001d001100000007001d001200000006001d000000000060043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000024de0000613d0000000c0a00002900000000000a004b000000090500002900000011070000290000000e08000029000021f90000613d000000000201043b000000000100001900000012060000290000000d090000290000000a0b0000290000000003b10019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b000021eb0000413d000021fc0000013d00000c11011001970000000000130435000000000004004b00000020010000390000000001006039000021fc0000013d000000000100001900000012060000290000000d090000290000003f0110003900000c0f021001970000000001920019000000000021004b0000000002000039000000010200403900000aaa0010009c000025630000213d0000000100200190000025630000c13d0000002008800039000000400010043f000000000098043500000001066000390000000107700039000000000057004b000021c20000413d0000001704000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b00000000040100190000221e0000613d00000b3c0500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b000022180000413d00000000032400490000001f0330003900000c0f033001970000000004230019000000000034004b00000000030000390000000103004039000700000004001d00000aaa0040009c000025630000213d0000000100300190000025630000c13d0000000703000029000000400030043f00000008030000290000000003030433000000000003004b000024e40000613d0000000002020433000000000023004b000024f50000c13d00000000040000190000000502400210000000000212001900000000020204330000000b0020006c0000223e0000213d0000000104400039000000000034004b000022340000413d000300000000001d0000223f0000013d000300000004001d0000001801000039000000000501041a00000aaa0050009c000025630000213d00000005015002100000003f0110003900000c29021001970000000701200029000000000021004b0000000002000039000000010200403900000aaa0010009c000025630000213d0000000100200190000025630000c13d000000100200002900000080022000390000000002020433000b00000002001d000000400010043f00000007010000290000000000510435000000000005004b000022a60000613d00000b4d0600004100000000070000190000000708000029000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f0000000100300190000024d80000c13d000000400900043d0000000003490436000000000002004b0000228c0000613d000a00000003001d000c00000004001d000d00000009001d000e00000008001d001100000007001d001200000006001d000000000060043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000024de0000613d0000000c0a00002900000000000a004b000000090500002900000011070000290000000e08000029000022920000613d000000000201043b000000000100001900000012060000290000000d090000290000000a0b0000290000000003b10019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b000022840000413d000022950000013d00000c11011001970000000000130435000000000004004b00000020010000390000000001006039000022950000013d000000000100001900000012060000290000000d090000290000003f0110003900000c0f021001970000000001920019000000000021004b0000000002000039000000010200403900000aaa0010009c000025630000213d0000000100200190000025630000c13d0000002008800039000000400010043f000000000098043500000001066000390000000107700039000000000057004b0000225b0000413d0000001a04000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b0000000004010019000022b70000613d00000b5b0500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b000022b10000413d00000000032400490000001f0330003900000c0f033001970000000004230019000000000034004b00000000030000390000000103004039000800000004001d00000aaa0040009c000025630000213d0000000100300190000025630000c13d0000000803000029000000400030043f00000007030000290000000003030433000000000003004b000024e00000613d0000000002020433000000000023004b000024e20000c13d00000000080000190000000502800210000000000212001900000000020204330000000b0020006c000022d60000213d0000000108800039000000000038004b000022cd0000413d00000000080000190000001b01000039000000000501041a00000aaa0050009c000025630000213d00000005015002100000003f0110003900000c29021001970000000801200029000000000021004b0000000002000039000000010200403900000aaa0010009c000025630000213d0000000100200190000025630000c13d0000001002000029000000a0022000390000000002020433000c00000002001d000000400010043f00000008010000290000000000510435000000000005004b0000233f0000613d00000b840600004100000000070000190000000809000029000a00000008001d000900000005001d000000000106041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000030000390000000103002039000000000331013f0000000100300190000024d80000c13d000000400a00043d00000000034a0436000000000002004b000023250000613d000b00000003001d000d00000004001d000e0000000a001d001000000009001d001100000007001d001200000006001d000000000060043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000024de0000613d0000000d0b00002900000000000b004b0000000a080000290000000905000029000000110700002900000010090000290000232b0000613d000000000201043b000000000100001900000012060000290000000e0a0000290000000b0c0000290000000003c10019000000000402041a0000000000430435000000010220003900000020011000390000000000b1004b0000231d0000413d0000232e0000013d00000c11011001970000000000130435000000000004004b000000200100003900000000010060390000232e0000013d000000000100001900000012060000290000000e0a0000290000003f0110003900000c0f021001970000000001a20019000000000021004b0000000002000039000000010200403900000aaa0010009c000025630000213d0000000100200190000025630000c13d0000002009900039000000400010043f0000000000a9043500000001066000390000000107700039000000000057004b000022f30000413d0000001d04000039000000000304041a000000400200043d0000000001320436000000000040043f000000000003004b0000000004010019000023500000613d00000c2e0500004100000000040100190000000006000019000000000705041a000000000474043600000001055000390000000106600039000000000036004b0000234a0000413d00000000032400490000001f0330003900000c0f033001970000000006230019000000000036004b0000000003000039000000010300403900000aaa0060009c000025630000213d0000000100300190000025630000c13d000000400060043f00000008030000290000000003030433000000000003004b000025090000613d0000000002020433000000000023004b000025190000c13d00000000020000190000000504200210000000000414001900000000040404330000000c0040006c0000236d0000213d0000000102200039000000000032004b000023640000413d000000000200001900000be20060009c000025630000213d000000c001600039000000400010043f000000a001600039001200000001001d00000000002104350000008001600039001100000001001d000000000081043500000060026000390000000301000029001000000002001d000000000012043500000040026000390000000401000029000e00000002001d0000000000120435000000050100002900000000021604360000000601000029000d00000002001d00000000001204350000000f01000029000000000010043f0000000a01000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039000c00000006001d296f296a0000040f0000000100200190000024de0000613d0000000c020000290000000002020433000000000101043b000000000021041b0000000d0200002900000000020204330000000103100039000000000023041b0000000e0200002900000000020204330000000203100039000000000023041b000000100200002900000000020204330000000303100039000000000023041b000000110200002900000000020204330000000403100039000000000023041b000000050110003900000012020000290000000002020433000000000021041b0000000f010000290000000101100039000f00000001001d000000020010006c00001f750000413d00000b9a010000410000000000100443000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000b9b011001c70000800b02000039296f296a0000040f0000000100200190000025690000613d000000000201043b000000000002004b0000256a0000613d00000b9c010000410000000000100443001200000002001d000000010120008a0000000400100443000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000c02011001c70000800b02000039296f296a0000040f0000000100200190000025690000613d000000000101043b0000002002000039000000000012041b00000021010000390000001202000029000000000021041b000000400100043d000e00000001001d00000b040010009c000025630000213d0000000e010000290000002002100039000b00000002001d000000400020043f0000000000010435000000010000006b000025810000613d000000000100041a000f00000001001d00000c16010000410000000000100443000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000b9b011001c70000800b02000039296f296a0000040f0000000100200190000025690000613d000000000101043b001200000001001d0000000f01000029000000000010043f0000000401000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f0000000100200190000024de0000613d000000000200041100000a66042001970000001202000029000000a0022002100000000103000029000000010030008c000000000300001900000c1703006041000000000223019f000000000242019f000000000101043b000000000021041b001100000004001d000000000040043f0000000501000039000000200010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000be1011001c70000801002000039296f296a0000040f0000000100200190000024de0000613d000000010400002900000c2f024000d1000000000101043b000000000301041a0000000002230019000000000021041b000000110000006b000025850000613d0010000f0040002d0012000f0000002d00000000010000190000242d0000013d00000011060000290000001207000029000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000a68011001c70000800d02000039000000040300003900000c18040000410000000005000019001200000007001d296f29650000040f00000001002001900000000101000039000024de0000613d00000001001001900000241d0000613d00000012070000290000000107700039000000100070006c00000011060000290000241f0000c13d0000001001000029000000000010041b00000c2301000041000000000010044300000000010004110000000400100443000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000c02011001c70000800202000039296f296a0000040f0000000100200190000025690000613d000000000101043b000000000001004b0000000b06000029000024d70000613d0000000101000039000000800800003900000c24090000410000000f03000029000a00000008001d000000100030006c000000000a000039000000010a00403900000001001001900000001102000029000024d40000613d000000000b000415000000400c00043d0000006401c00039000000000081043500000000009c04350000000401c0003900000000002104350000004401c00039000f00000003001d00000000003104350000002401c0003900000000000104350000000e0100002900000000010104330000008403c000390000000000130435000000a407c00039000000000001004b0000246d0000613d000000000300001900000000047300190000000005630019000000000505043300000000005404350000002003300039000000000013004b000024660000413d000000000371001900000000000304350000000004000414000000040020008c0000247a0000c13d0000000005000415000000140550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000024b50000013d000d0000000b001d00120000000a001d0000001f0110003900000c0f01100197000000a40110003900000a5d0010009c00000a5d01008041000000600110021000000a5d00c0009c00000a5d0300004100000000030c40190000004003300210000000000131019f00000a5d0040009c00000a5d04008041000000c003400210000000000113019f000c0000000c001d296f29650000040f0000000c0c000029000000600310027000000a5d03300197000000200030008c00000020040000390000000004034019000000200640019000000000056c00190000249c0000613d000000000701034f00000000080c0019000000007907043c0000000008980436000000000058004b000024980000c13d0000001f07400190000024a90000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000130550008a0000000505500210000000010020019000000c2409000041000000120a0000290000000d0b0000290000252c0000613d0000000b0600002900000080080000390000001f01400039000000600210018f0000000001c20019000000000021004b0000000002000039000000010200403900000aaa0010009c000025630000213d0000000100200190000025630000c13d000000400010043f000000200030008c000024de0000413d00000000010c043300000c0a00100198000024de0000c13d0000000f0300002900000001033000390000000502500270000000000201001f000000000200041500000000022b0049000000000200000200000c0b0110019700000c240010009c00000000010a00190000244c0000613d00000c2801000041000000000010043f00000bff010000410000297100010430000000000100041a000000100010006c000024de0000c13d000000000001042d00000be301000041000000000010043f0000002201000039000000040010043f00000be4010000410000297100010430000000000100001900002971000104300000000803000029000024e50000013d0000000803000029000024f60000013d0000000703000029000000440130003900000c3202000041000000000021043500000024013000390000001702000039000000000021043500000bd101000041000000000013043500000004013000390000002002000039000000000021043500000a5d0030009c00000a5d03008041000000400130021000000bfa011001c700002971000104300000000703000029000000640130003900000c2a020000410000000000210435000000440130003900000c2b02000041000000000021043500000024013000390000002402000039000000000021043500000bd101000041000000000013043500000004013000390000002002000039000000000021043500000a5d0030009c00000a5d03008041000000400130021000000c2c011001c70000297100010430000000440160003900000c3202000041000000000021043500000024016000390000001702000039000000000021043500000bd101000041000000000016043500000004016000390000002002000039000000000021043500000a5d0060009c00000a5d06008041000000400160021000000bfa011001c70000297100010430000000640160003900000c2a020000410000000000210435000000440160003900000c2b02000041000000000021043500000024016000390000002402000039000000000021043500000bd101000041000000000016043500000004016000390000002002000039000000000021043500000a5d0060009c00000a5d06008041000000400160021000000c2c011001c70000297100010430000000000003004b000025300000c13d0000006002000039000025570000013d0000001f0230003900000c25022001970000003f0220003900000c2604200197000000400200043d0000000004420019000000000024004b0000000005000039000000010500403900000aaa0040009c000025630000213d0000000100500190000025630000c13d000000400040043f0000001f0430018f000000000632043600000c2705300198000a00000006001d00000000035600190000254a0000613d000000000601034f0000000a07000029000000006806043c0000000007870436000000000037004b000025460000c13d000000000004004b000025570000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b0000000a02000029000024d00000613d00000a5d0020009c00000a5d02008041000000400220021000000a5d0010009c00000a5d010080410000006001100210000000000121019f000029710001043000000be301000041000000000010043f0000004101000039000000040010043f00000be4010000410000297100010430000000000001042f00000be301000041000000000010043f0000001101000039000000040010043f00000be4010000410000297100010430000000400100043d000000440210003900000c3303000041000000000032043500000024021000390000000903000039000000000032043500000bd102000041000000000021043500000004021000390000002003000039000000000032043500000a5d0010009c00000a5d01008041000000400110021000000bfa011001c7000029710001043000000c3101000041000000000010043f00000bff01000041000029710001043000000c3001000041000000000010043f00000bff010000410000297100010430000f000000000002000f00000001001d0000000012010434000e00000001001d0006000510200122000000000001004b0000286e0000c13d000000000002004b0000261c0000613d00000c350020009c000028680000213d000000060100002900000005041002100000003f0140003900000c2906100197000000400300043d0000000001630019000c00000003001d000000000031004b0000000003000039000000010300403900000aaa0010009c000028680000213d0000000100300190000028680000c13d000000400010043f00000006010000290000000c030000290000000001130436000500000001001d0000001f0540018f0000000001000031000d00020010036b000000000004004b000025b30000613d000000050100002900000000074100190000000d0300035f000000003803043c0000000001810436000000000071004b000025af0000c13d000000000005004b000000400300043d0000000001630019000b00000003001d000000000031004b0000000003000039000000010300403900000aaa0010009c000028680000213d0000000100300190000028680000c13d000000400010043f00000006010000290000000b030000290000000001130436000400000001001d000000000004004b000025cc0000613d000000040100002900000000074100190000000d0300035f000000003803043c0000000001810436000000000071004b000025c80000c13d000000000005004b000000400300043d0000000001630019000a00000003001d000000000031004b0000000003000039000000010300403900000aaa0010009c000028680000213d0000000100300190000028680000c13d000000400010043f00000006010000290000000a030000290000000001130436000300000001001d000000000004004b000025e50000613d000000030100002900000000074100190000000d0300035f000000003803043c0000000001810436000000000071004b000025e10000c13d000000000005004b000000400300043d0000000001630019000900000003001d000000000031004b0000000003000039000000010300403900000aaa0010009c000028680000213d0000000100300190000028680000c13d000000400010043f000000060100002900000009030000290000000001130436000200000001001d000000000004004b000025fe0000613d000000020100002900000000074100190000000d0300035f000000003803043c0000000001810436000000000071004b000025fa0000c13d000000000005004b000000400300043d0000000001630019000800000003001d000000000031004b0000000003000039000000010300403900000aaa0010009c000028680000213d0000000100300190000028680000c13d000000400010043f000000060100002900000008030000290000000001130436000100000001001d000000000004004b000026170000613d000000010100002900000000044100190000000d0300035f000000003603043c0000000001610436000000000041004b000026130000c13d000000000005004b000000050020008c0000262b0000813d0000006001000039000000000001042d000000400200043d00000c3c0020009c000028680000813d0000006001200039000000400010043f000000400120003900000c3d030000410000000000310435000000200120003900000c3e0300004100000000003104350000003a0100003900000000001204350000000001020019000000000001042d0000006001000039000000800a0000390000000006000019000700000001001d00000005026000c9000000000006004b000026350000613d00000000016200d9000000050010008c0000285c0000c13d0000000f010000290000000001010433000000000021004b000028620000a13d0000000c010000290000000001010433000000000061004b000028620000a13d0000000e01200029000000050b6002100000000508b000290000000001010433000000f8011002700000000000180435000000000006004b000026480000613d00000000016200d9000000050010008c0000285c0000c13d00000001032000390000000f010000290000000001010433000000000031004b000028620000a13d0000000b010000290000000001010433000000000061004b000028620000a13d0000000404b000290000000e013000290000000001010433000000f8011002700000000000140435000000000006004b0000265b0000613d00000000016200d9000000050010008c0000285c0000c13d00000002032000390000000f010000290000000001010433000000000031004b000028620000a13d0000000a010000290000000001010433000000000061004b000028620000a13d0000000307b000290000000e013000290000000001010433000000f8011002700000000000170435000000000006004b0000266e0000613d00000000016200d9000000050010008c0000285c0000c13d00000003032000390000000f010000290000000001010433000000000031004b000028620000a13d00000009010000290000000001010433000000000061004b000028620000a13d0000000205b000290000000e013000290000000001010433000000f8011002700000000000150435000000000006004b000026810000613d00000000016200d9000000050010008c0000285c0000c13d00000004032000390000000f010000290000000001010433000000000031004b000028620000a13d00000008010000290000000001010433000000000061004b000028620000a13d0000000102b000290000000e013000290000000001010433000000f80110027000000000001204350000000c010000290000000001010433000000000061004b000028620000a13d0000000008080433000000000008004b000026ca0000613d000000000e080019000000000b000019000000000c0b0019000000010bb0003a0000285c0000613d0000000900e0008c0000000a0ee0011a000026980000213d00000bdf00c0009c000028680000213d00000c0f0ec001970000005f01e0003900000c0f01100197000000400f00043d00000000031f00190000000000f3004b0000000001000039000000010100403900000aaa0030009c000028680000213d0000000100100190000028680000c13d000000400030043f0000000001bf0436000000200ee0003900000c0f03e00198000026b80000613d00000000033100190000000d0d00035f000000000c01001900000000d90d043c000000000c9c043600000000003c004b000026b40000c13d0000001f00e0019000000000000b004b0000285c0000613d000000010bb0008a00000000030f04330000000000b3004b000028620000a13d00000000031b0019000000090080008c0000000a9880011a000000f809900210000000000c03043300000bdc0cc001970000000009c9019f00000be0099001c70000000000930435000026b90000213d000026d40000013d000000400f00043d00000aad00f0009c000028680000213d0000004001f00039000000400010043f0000002001f0003900000be0030000410000000000310435000000010100003900000000001f04350000000b010000290000000001010433000000000061004b000028620000a13d0000000008040433000000000008004b0000270f0000613d000000000c080019000000000b00001900000000040b0019000000010bb0003a0000285c0000613d0000000900c0008c0000000a0cc0011a000026dd0000213d00000bdf0040009c000028680000213d00000c0f0e4001970000005f01e0003900000c0f01100197000000400400043d0000000003140019000000000043004b0000000001000039000000010100403900000aaa0030009c000028680000213d0000000100100190000028680000c13d000000400030043f000000000cb40436000000200ee0003900000c0f01e00198000026fd0000613d00000000031c00190000000d0d00035f00000000010c001900000000d90d043c0000000001910436000000000031004b000026f90000c13d0000001f00e0019000000000000b004b0000285c0000613d000000010bb0008a00000000010404330000000000b1004b000028620000a13d0000000001cb0019000000090080008c0000000a3880011a000000f803300210000000000901043300000bdc09900197000000000393019f00000be0033001c70000000000310435000026fe0000213d000027190000013d000000400400043d00000aad0040009c000028680000213d0000004001400039000000400010043f000000200140003900000be0030000410000000000310435000000010100003900000000001404350000000a010000290000000001010433000000000061004b000028620000a13d0000000008070433000000000008004b000027540000613d000000000c080019000000000b00001900000000070b0019000000010bb0003a0000285c0000613d0000000900c0008c0000000a0cc0011a000027220000213d00000bdf0070009c000028680000213d00000c0f0e7001970000005f01e0003900000c0f01100197000000400700043d0000000003170019000000000073004b0000000001000039000000010100403900000aaa0030009c000028680000213d0000000100100190000028680000c13d000000400030043f000000000cb70436000000200ee0003900000c0f01e00198000027420000613d00000000031c00190000000d0d00035f00000000010c001900000000d90d043c0000000001910436000000000031004b0000273e0000c13d0000001f00e0019000000000000b004b0000285c0000613d000000010bb0008a00000000010704330000000000b1004b000028620000a13d0000000001cb0019000000090080008c0000000a3880011a000000f803300210000000000901043300000bdc09900197000000000393019f00000be0033001c70000000000310435000027430000213d0000275e0000013d000000400700043d00000aad0070009c000028680000213d0000004001700039000000400010043f000000200170003900000be00300004100000000003104350000000101000039000000000017043500000009010000290000000001010433000000000061004b000028620000a13d0000000008050433000000000008004b000027990000613d000000000c080019000000000b00001900000000050b0019000000010bb0003a0000285c0000613d0000000900c0008c0000000a0cc0011a000027670000213d00000bdf0050009c000028680000213d00000c0f0e5001970000005f01e0003900000c0f01100197000000400500043d0000000003150019000000000053004b0000000001000039000000010100403900000aaa0030009c000028680000213d0000000100100190000028680000c13d000000400030043f000000000cb50436000000200ee0003900000c0f01e00198000027870000613d00000000031c00190000000d0d00035f00000000010c001900000000d90d043c0000000001910436000000000031004b000027830000c13d0000001f00e0019000000000000b004b0000285c0000613d000000010bb0008a00000000010504330000000000b1004b000028620000a13d0000000001cb0019000000090080008c0000000a3880011a000000f803300210000000000901043300000bdc09900197000000000393019f00000be0033001c70000000000310435000027880000213d000027a30000013d000000400500043d00000aad0050009c000028680000213d0000004001500039000000400010043f000000200150003900000be00300004100000000003104350000000101000039000000000015043500000008010000290000000001010433000000000061004b000028620000a13d0000000002020433000000000002004b000027de0000613d000000000c020019000000000b00001900000000080b0019000000010bb0003a0000285c0000613d0000000900c0008c0000000a0cc0011a000027ac0000213d00000bdf0080009c000028680000213d00000c0f0e8001970000005f01e0003900000c0f01100197000000400800043d0000000003180019000000000083004b0000000001000039000000010100403900000aaa0030009c000028680000213d0000000100100190000028680000c13d000000400030043f000000000cb80436000000200ee0003900000c0f01e00198000027cc0000613d00000000031c00190000000d0d00035f00000000010c001900000000d90d043c0000000001910436000000000031004b000027c80000c13d0000001f00e0019000000000000b004b0000285c0000613d000000010bb0008a00000000010804330000000000b1004b000028620000a13d0000000001cb0019000000090020008c0000000a3220011a000000f803300210000000000901043300000bdc09900197000000000393019f00000be0033001c70000000000310435000027cd0000213d000027e80000013d000000400800043d00000aad0080009c000028680000213d0000004001800039000000400010043f000000200180003900000be002000041000000000021043500000001010000390000000000180435000000400200043d000000200b2000390000000701000029000000000c01043300000000000c004b000027f60000613d00000000010000190000000003b1001900000000091a00190000000009090433000000000093043500000020011000390000000000c1004b000027ef0000413d0000000001bc001900000c36030000410000000000310435000000090a10003900000000dc0f043400000000000c004b000028050000613d00000000010000190000000003a1001900000000091d00190000000009090433000000000093043500000020011000390000000000c1004b000027fe0000413d0000000001ac001900000c37030000410000000000310435000000050a10003900000000c4040434000000000004004b000028140000613d00000000010000190000000003a1001900000000091c0019000000000909043300000000009304350000002001100039000000000041004b0000280d0000413d0000000001a40019000000200310003900000c3804000041000000000043043500000c39030000410000000000310435000000210410003900000000a7070434000000000007004b000028260000613d0000000001000019000000000341001900000000091a0019000000000909043300000000009304350000002001100039000000000071004b0000281f0000413d000000000147001900000c3a03000041000000000031043500000001041000390000000075050434000000000005004b000028350000613d000000000100001900000000034100190000000009170019000000000909043300000000009304350000002001100039000000000051004b0000282e0000413d000000000145001900000c3a03000041000000000031043500000001041000390000000075080434000000000005004b000028440000613d000000000100001900000000034100190000000008170019000000000808043300000000008304350000002001100039000000000051004b0000283d0000413d000000000145001900000c3b03000041000000000031043500000000012100490000001b0310008a0000000000320435000000240110003900000c0f031001970000000001230019000000000031004b0000000003000039000000010300403900000aaa0010009c000028680000213d0000000100300190000028680000c13d000000400010043f0000000106600039000000060060006c000000000a0b001900000000010200190000262e0000413d0000000001020019000000000001042d00000be301000041000000000010043f0000001101000039000000040010043f00000be401000041000029710001043000000be301000041000000000010043f0000003201000039000000040010043f00000be401000041000029710001043000000be301000041000000000010043f0000004101000039000000040010043f00000be4010000410000297100010430000000400100043d000000440210003900000c3403000041000000000032043500000024021000390000001803000039000000000032043500000bd102000041000000000021043500000004021000390000002003000039000000000032043500000a5d0010009c00000a5d01008041000000400110021000000bfa011001c700002971000104300000000002010019000000400300043d0000000001010433000000000001004b000028ee0000613d00000ac60030009c000028f90000213d0000006001300039000000400010043f000000400130003900000bd7040000410000000000410435000000200130003900000bd804000041000000000041043500000040010000390000000000130435000000000102043300000c3f0010009c000028ff0000813d00000bda0010009c000028ff0000213d00000bdb0010009c000028f90000213d0000000201100039000000030110011a00000002051002100000003f0150003900000c0f061001970000003f0160003900000c0f04100197000000400100043d0000000004410019000000000014004b0000000007000039000000010700403900000aaa0040009c000028f90000213d0000000100700190000028f90000c13d000000400040043f0000002004100039000000000006004b000028b30000613d0000000006640019000000000700003100000002077003670000000008040019000000007907043c0000000008980436000000000068004b000028af0000c13d000000000051043500000000060204330000000005260019000000000025004b000028e60000a13d000000010330003900000000060200190000000306600039000000000706043300000012087002700000003f0880018f00000000088300190000000008080433000000f808800210000000000904043300000bdc09900197000000000889019f00000000008404350000000c087002700000003f0880018f00000000088300190000000008080433000000f8088002100000000109400039000000000a09043300000bdc0aa0019700000000088a019f000000000089043500000006087002700000003f0880018f00000000088300190000000008080433000000f8088002100000000209400039000000000a09043300000bdc0aa0019700000000088a019f00000000008904350000003f0770018f00000000077300190000000007070433000000f8077002100000000308400039000000000908043300000bdc09900197000000000779019f00000000007804350000000404400039000000000056004b000028ba0000413d0000000006020433000000032060011a000000020020008c000028f50000613d000000010020008c000028f80000c13d00000bde02000041000000020340008a000028f70000013d00000c130030009c000028f90000813d0000002001300039000000400010043f00000000020000190000000001030019000028f70000013d00000bdd02000041000000010340008a0000000000230435000000000001042d00000be301000041000000000010043f0000004101000039000000040010043f00000be401000041000029710001043000000be301000041000000000010043f0000001101000039000000040010043f00000be40100004100002971000104300002000000000002000000000501041a000000010350019000000001065002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000043004b000029300000c13d000000000003004b0000292c0000613d000100000006001d000200000002001d000000000010043f000000000100041400000a5d0010009c00000a5d01008041000000c00110021000000aa8011001c70000801002000039296f296a0000040f0000000100200190000029360000613d0000000106000029000000000006004b00000002020000290000292a0000613d000000000101043b00000000050000190000000003250019000000000401041a000000000043043500000001011000390000002005500039000000000065004b000029230000413d0000000001260019000000000001042d00000c110150019700000000001204350000000001260019000000000001042d00000be301000041000000000010043f0000002201000039000000040010043f00000be401000041000029710001043000000000010000190000297100010430000000000001042f00000a5d0010009c00000a5d01008041000000400110021000000a5d0020009c00000a5d020080410000006002200210000000000112019f000000000200041400000a5d0020009c00000a5d02008041000000c002200210000000000112019f00000a68011001c70000801002000039296f296a0000040f00000001002001900000294c0000613d000000000101043b000000000001042d0000000001000019000029710001043000000000050100190000000000200443000000040030008c000029550000a13d00000005014002700000000001010031000000040010044300000a5d0030009c00000a5d030080410000006001300210000000000200041400000a5d0020009c00000a5d02008041000000c002200210000000000112019f00000c40011001c70000000002050019296f296a0000040f0000000100200190000029640000613d000000000101043b000000000001042d000000000001042f00002968002104210000000102000039000000000001042d0000000002000019000000000001042d0000296d002104230000000102000039000000000001042d0000000002000019000000000001042d0000296f00000432000029700001042e00002971000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff506f636b657420446f6773000000000000000000000000000000000000000000504f4b45444f4753000000000000000000000000000000000000000000000000405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acebfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a532506f636b657420446f6773000000000000000000000000000000000000000016c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5504f4b45444f4753000000000000000000000000000000000000000000000010000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000000ffffffffffffff00000000000000000000000000000000000000000000000000fffffffffffffdffdf71260b0bdf7126040cdf7126060cdf7126090cdf71260b0cdf712600000000040bdf7126050bdf7126060bdf7126070bdf7126080bdf7126090bdf71260a0b7126060adf7126070adf7126080adf7126090adf71260a0adf71260b0adf712609df71260809df71260909df71260a09df71260b09df7126040adf7126050adf260a08df71260b088843140c088843140409df71260509df71260609df712607df71260907ffffff0a07df71260b07ffffff0308df71260808df71260908df710805df71260706df71260906df71260a06df71260b06df71260207df71260807000000000000000000000000000000000000000000000000fffffffffffffeffa0bdfa0b0ba0bdfa040ca0bdfa060ca0bdfa090ca0bdfa0b0ca0bdfa00000000040ba0bdfa050ba0bdfa060ba0bdfa070ba0bdfa080ba0bdfa090ba0bdfa0a0bbdfa060aa0bdfa070aa0bdfa080aa0bdfa090aa0bdfa0a0aa0bdfa0b0aa0bdfa09a0bdfa0809a0bdfa0909a0bdfa0a09a0bdfa0b09a0bdfa040aa0bdfa050aa0fa0a08a0bdfa0b08759ff70c08759ff70409a0bdfa0509a0bdfa0609a0bdfa07a0bdfa0907ffffff0a07a0bdfa0b07ffffff0308a0bdfa0808a0bdfa0908a0bd0805a0bdfa0706a0bdfa0906a0bdfa0a06a0bdfa0b06a0bdfa0207a0bdfa0807d77bba0b0bd77bba040cd77bba060cd77bba090cd77bba0b0cd77bba00000000040bd77bba050bd77bba060bd77bba070bd77bba080bd77bba090bd77bba0a0b7bba060ad77bba070ad77bba080ad77bba090ad77bba0a0ad77bba0b0ad77bba09d77bba0809d77bba0909d77bba0a09d77bba0b09d77bba040ad77bba050ad7ba0a08d77bba0b08c7479f0c08c7479f0409d77bba0509d77bba0609d77bba07d77bba0907ffffff0a07d77bba0b07ffffff0308d77bba0808d77bba0908d77b0805d77bba0706d77bba0906d77bba0a06d77bba0b06d77bba0207d77bba08075fcde40b0b5fcde4040c5fcde4060c5fcde4090c5fcde40b0c5fcde400000000040b5fcde4050b5fcde4060b5fcde4070b5fcde4080b5fcde4090b5fcde40a0bcde4060a5fcde4070a5fcde4080a5fcde4090a5fcde40a0a5fcde40b0a5fcde4095fcde408095fcde409095fcde40a095fcde40b095fcde4040a5fcde4050a5fe40a085fcde40b081c8ea60c081c8ea604095fcde405095fcde406095fcde4075fcde40907ffffff0a075fcde40b07ffffff03085fcde408085fcde409085fcd08055fcde407065fcde409065fcde40a065fcde40b065fcde402075fcde40807eec39a0b0beec39a040ceec39a060ceec39a090ceec39a0b0ceec39a00000000040beec39a050beec39a060beec39a070beec39a080beec39a090beec39a0a0bc39a060aeec39a070aeec39a080aeec39a090aeec39a0a0aeec39a0b0aeec39a09eec39a0809eec39a0909eec39a0a09eec39a0b09eec39a040aeec39a050aee9a0a08eec39a0b08d9a0660c08d9a0660409eec39a0509eec39a0609eec39a07eec39a0907ffffff0a07eec39a0b07ffffff0308eec39a0808eec39a0908eec30805eec39a0706eec39a0906eec39a0a06eec39a0b06eec39a0207eec39a0807222034060c222034090c2220340b0c2220340000000000000000000000000000060b222034070b222034080b222034090b2220340a0b2220340b0b222034040c2034080a222034090a2220340a0a2220340b0a222034040b222034050b222034092220340a092220340b09222034040a222034050a222034060a222034070a22210c0818162104092220340509222034060922203407092220340809222034092220340a072220340308222034080822203409082220340a082220340b0818160805222034070622203409062220340a062220340b06222034020722203408073f3f740b0b3f3f74040c3f3f74060c3f3f74090c3f3f740b0c3f3f7400000000040b3f3f74050b3f3f74060b3f3f74070b3f3f74080b3f3f74090b3f3f740a0b3f74060a3f3f74070a3f3f74080a3f3f74090a3f3f740a0a3f3f740b0a3f3f74093f3f7408093f3f7409093f3f740a093f3f740b093f3f74040a3f3f74050a3f740a083f3f740b08282f670c08282f6704093f3f7405093f3f7406093f3f74073f3f740907ffffff0a073f3f740b07ffffff03083f3f7408083f3f7409083f3f08053f3f7407063f3f7409063f3f740a063f3f740b063f3f7402073f3f740807fbf2360b0bfbf236040cfbf236060cfbf236090cfbf2360b0cfbf23600000000040bfbf236050bfbf236060bfbf236070bfbf236080bfbf236090bfbf2360a0bf236060afbf236070afbf236080afbf236090afbf2360a0afbf2360b0afbf23609fbf2360809fbf2360909fbf2360a09fbf2360b09fbf236040afbf236050afb360a08fbf2360b08b3ab040c08b3ab040409fbf2360509fbf2360609fbf23607fbf2360907ffffff0a07fbf2360b07ffffff0308fbf2360808fbf2360908fbf20805fbf2360706fbf2360906fbf2360a06fbf2360b06fbf2360207fbf2360807209699368efae3c2ab13a6e9d9f9aceb6c5aebfb5ffd7bd0a9ff6281a30b5739df6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8d0df6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8cf0200000000000000000000000000000000000020000000000000000000000000df6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000000000fffffffffffffebf417574756d6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf426c756500000000000000000000000000000000000000000000000000000000427562626c6567756d0000000000000000000000000000000000000000000000436f74746f6e63616e6479000000000000000000000000000000000000000000437265616d0000000000000000000000000000000000000000000000000000004461726b000000000000000000000000000000000000000000000000000000004e6967687400000000000000000000000000000000000000000000000000000059656c6c6f770000000000000000000000000000000000000000000000000000284966fefa8e6efe2541488ebb0d5cc7a37fcc532c506816bdc596a17e52e14bd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1ebed7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1ebdd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb54484b5bab23cb6c6dcb7d0f87ddcd612e617dbb100a7d33dfb07aab3c9df3c03bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c406bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c405bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fdbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3febb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3ffbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c400bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c401bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c402bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c403bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c40409070000000b07000000000000000000000000000000000000000000000000000907ff00000a07ff00000b07ff00000c07ff00000d07ff00000e07ff00000000000000000000000000000000000000000000000000000000ffffffffffffff9f0000000908ffffff0a08ffffff000000000000000000000000000000000000000906ffffff0a06ffffff0b06ffffff0807ffffff09070000000a07ffffff0b07ffffff09080000000a080000000000000000000000000000000000000000000009060000000a060000000b0600000008070000000907ffffff0a070000000b0768ff0009080000000a080000000000000000000000000000000000000000000009060000000a060000000b060000000807000000090768ff000a0768ff000b07fbf2360908fbf2360000000000000000000000000000000000000000000000000906fbf2360b06fbf2360807fbf2360907ffffff0a07fbf2360b07ffffff0c0700000009089badb70a089badb70000000000000000000000000000000000000009069badb70a069badb70b069badb708079badb709070000000a070000000b070907ffffff0b07ffffff0000000000000000000000000000000000000000000072eef71ef43483d822203fd126296c5f8bfc62fd930b15bdbf4bf082a7e537fe8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80b8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80a8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802426c61636b0000000000000000000000000000000000000000000000000000004c415a45454552525252000000000000000000000000000000000000000000004d61736b205768697465000000000000000000000000000000000000000000004d61736b20426c61636b000000000000000000000000000000000000000000004e5620476f6f676c657300000000000000000000000000000000000000000000537061726b6c696e67000000000000000000000000000000000000000000000056520000000000000000000000000000000000000000000000000000000000005768697465000000000000000000000000000000000000000000000000000000e497b8238be5e4f32f72d877ba0627e627848cb8a6504aa01d21a347d565198e1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67b1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67a1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672ce133de58ba1c6975fb16a8f1bbda43e7057fe6397fd7e694ab92e9963dff39831ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c7131ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c7031ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6831ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6931ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6a31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6b31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6c31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6d31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6e31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6f000000000000000000000000000000000000000000000000fffffffffffffe3f000000000000000000000000000000000000000000000000fffffffffffffddf0037ff00000000000000000000000000000000000000000000000000000000000a03fff3000904fff3000a04ff00000b04fff30009050037ff0a050037ff0b05196cff0b06196cff0c06196cff000000000000000000000000000000000000000805196cff0905196cff0a05196cff0b05196cff0806196cff0906196cff0a06ffffff0a05ffffff0b05ffffff000000000000000000000000000000000000000903c9c9c90a03c9c9c90b03c9c9c90904ffffff0a04ffffff0b04ffffff0905ffccef0c05ff5a5a0000000000000000000000000000000000000000000000000904ffe1f60a04ffe1f60b04ffe1f60805ff5a5a0905ffccef0a05ffccef0b05f5ec230c05f5ec230000000000000000000000000000000000000000000000000804f5ec230a04f5ec230c04f5ec230805f5ec230905f5ec230a05f5ec230b050804ac32320c04ac32320905ac32320b05ac3232000000000000000000000000d9a0660a05d9a0660b05d9a0660c05d9a06600000000000000000000000000000704d9a0660904df71260a04df71260b04df71260d04d9a0660805d9a06609058f563b0c058f563b0000000000000000000000000000000000000000000000000904aa70540a04aa70540b04aa705408058f563b09058f563b0a058f563b0b05fbf2360b04fbf2360000000000000000000000000000000000000000000000000902fbf2360a02fbf2360b02fbf2360803fbf2360c03fbf2360904fbf2360a04fff74e0a05fff74e0b05fff74e000000000000000000000000000000000000000a03fff74e0b03fff74e0904fff74e0a04fff74e0b04fff74e0805fff74e0905ff00000a05ff00000b05ff0000000000000000000000000000000000000000000a03ff00000b03ff00000904ff00000a04ff00000b04ff00000805ff00000905000000000000000000000000000000000000000000000000ffffffffffffffdfffffff0905ffffff0a05ffffff0b05ffffff0c05ffffff0000000000000000000903ffffff0a03ffffff0b03ffffff0904c9c9c90a04c9c9c90b04c9c9c9080500000009060000000a060000000b060000000c0600000000000000000000000009040000000a040000000b040000000905f219190a05f219190b05f219190806447595b99645daf2d93285ba613562dea07cf81cc5141afc8643a5c9e813cbbcbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3453bb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3452bb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34444265616e69652043617000000000000000000000000000000000000000000000426c7565204361700000000000000000000000000000000000000000000000004368656620686174000000000000000000000000000000000000000000000000436f74746f6e206861740000000000000000000000000000000000000000000043726f776e000000000000000000000000000000000000000000000000000000446576696c20686f726e730000000000000000000000000000000000000000004661726d657220686174000000000000000000000000000000000000000000004665646f7261000000000000000000000000000000000000000000000000000048616c6f000000000000000000000000000000000000000000000000000000004d6f6861776b20476f6c64656e000000000000000000000000000000000000004d6f6861776b20526564000000000000000000000000000000000000000000004e6f6e6500000000000000000000000000000000000000000000000000000000546f702068617420776869746500000000000000000000000000000000000000546f702068617420626c61636b000000000000000000000000000000000000009921700258681c2163fa1703a84c40f13d756cf2bf4f2d7a26c3f9afe3095f7066de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a09f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a09e66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a090319284ad7d4265c99e51f9e0112e2425b1ad54f8c4e06d7a4191eaa263c72b14ce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4fbce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4fa000000000000000000000000000000000000000000000000ffffffffffffff1f000000000000000000000000000000000000000000000000fffffffffffffedf0a09f4f4f40b09f4f4f40c09f4f4f40d09f4f4f40000000000000000000000000e06ffffff0e07ffffff0b09f4f4f40c09f4f4f40d09f4f4f40e09ff000000000e08fffcb30a09fbf2360b09fbf2360c09fbf2360e0afffcb30d0cfffcb300004b692f0c0a524b240000000000000000000000000000000000000000000000000a094b692f0b09524b240c094b692f0d094b692f0e09ffffff0a0a524b240b0a0a09ffffff0b09ffffff0c09ffffff0d09ffffff0a0affffff0d0affffff00000e05ffffff0e07ffffff0b09c3dfff0c09c3dfff0d09c3dfff0e09003dff0000aa0bb70215673b2d614cbf8a810f59932fc2446ac76f75957e269fd948e13b8b55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec47d55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec47c55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec475426f6e65000000000000000000000000000000000000000000000000000000004369670000000000000000000000000000000000000000000000000000000000476f6c64206261720000000000000000000000000000000000000000000000004772656e616465000000000000000000000000000000000000000000000000005361626572746f6f746800000000000000000000000000000000000000000000566170650000000000000000000000000000000000000000000000000000000027cceb82823caa45ba60387709961a73050623da2232f8fd178296384aedbd77d833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124291d833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124290d833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b512428939db49933fec7470543df6db808d28a71e30ccbc8a92abc45240dbded41273ebc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1dc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1cc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c15c624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c16c624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c17c624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c18c624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c19c624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1ac624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1b090affffff000000000000000000000000000000000000000000000000000000090affffff070bf4f4f400000000000000000000000000000000000000000000050973eff7060973eff7070b73eff7080b73eff7000000000000000000000000c7b6b60b0ac7b6b6000000000000000000000000000000000000000000000000040ac7b6b6050ac7b6b6060ac7b6b6070ac7b6b6080ac7b6b6090ac7b6b60a0a05094447460809444746060a444746090a444746070b4447460a0b4447460000080afb3838090afb3838070bfb383800000000000000000000000000000000004ec2d2892e0b48417cb77d1bef4c1c5750509607c9ff51db24cabc6e2dc872d2b13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d36b13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d35b13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e444f542031000000000000000000000000000000000000000000000000000000444f542032000000000000000000000000000000000000000000000000000000486967686c6967687400000000000000000000000000000000000000000000004c696e6500000000000000000000000000000000000000000000000000000000537472697065730000000000000000000000000000000000000000000000000053636172000000000000000000000000000000000000000000000000000000006bb667d8c1b884b6aebb04786b36ebe680c334b941d6ff0b96702f108bc3696b944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969d944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969c944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c9695fa83c7b582e3ab0c5e4d1a1984d9e847ddb0202e158dcb115a8c590099a009c2057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff646057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff645057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff640057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff641057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff642057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff643057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff644000000000000000000000000000000000000000000000000fffffffffffffe5fc3070efff8c3080efff8c3090efff8c300000000000000000000000000000000272820080d272820090d2728200a0d2728200b0d2728200c0d272820060efff8020b272820020c272820030d272820040d272820050d272820060d272820070d000000000000000000000000000000000000000000000000ffffffffffffff7fae81ff080dae81ff090dae81ff0a0dae81ff0b0dae81ff0c0dae81ff060efff8020bae81ff020cae81ff030dae81ff040dae81ff050dae81ff060dae81ff070d66d9ef080d66d9ef090d66d9ef0a0d66d9ef0b0d66d9ef0c0d66d9ef060efff8020b66d9ef020c66d9ef030d66d9ef040d66d9ef050d66d9ef060d66d9ef070de6db74080de6db74090de6db740a0de6db740b0de6db740c0de6db74060efff8020be6db74020ce6db74030de6db74040de6db74050de6db74060de6db74070d1a060e16171a090e16171a0a0e16171a00000000000000000000000000000000823e2c080d823e2c090d823e2c0a0d823e2c0b0d823e2c0c0d823e2c050e1617020c823e2c0d0c823e2c030d823e2c040d823e2c050d823e2c060d823e2c070d100820080d100820090d1008200a0d1008200b0d1008200c0d100820050e1617020c1008200d0c100820030d100820040d100820050d100820060d100820070d10d275080d10d275090d10d2750a0d10d2750b0d10d2750c0d10d275050e1617020c10d2750d0c10d275030d10d275040d10d275050d10d275060d10d275070d7f0622080d7f0622090d7f06220a0d7f06220b0d7f06220c0d7f0622050e1617020c7f06220d0c7f0622030d7f0622040d7f0622050d7f0622060d7f0622070dfafdff080dfafdff090dfafdff0a0dfafdff0b0dfafdff0c0dfafdff050e1617020cfafdff0d0cfafdff030dfafdff040dfafdff050dfafdff060dfafdff070d1d040e14121d000000000000000000000000000000000000000000000000000014121d080d14121d090d14121d0a0d14121d0b0d14121d0c0d14121d030e1412020c14121d020d14121d030d14121d040d14121d050d14121d060d14121d070dc9040efdc9c90000000000000000000000000000000000000000000000000000fdc9c9080dfdc9c9090dfdc9c90a0dfdc9c90b0dfdc9c90c0dfdc9c9030efdc9020cfdc9c9020dfdc9c9030dfdc9c9040dfdc9c9050dfdc9c9060dfdc9c9070dea040eeee6ea0000000000000000000000000000000000000000000000000000eee6ea080deee6ea090deee6ea0a0deee6ea0b0deee6ea0c0deee6ea030eeee6020ceee6ea020deee6ea030deee6ea040deee6ea050deee6ea060deee6ea070dc52755b078abbcdc562e1a226fd0bf3ca9ad8586aa978eec24a0657a52a8623f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dcf3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dce3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc1000000000000000000000000000000000000000000000000fffffffffffffe1f486f766572626f61726420314269740000000000000000000000000000000000486f766572626f61726420496e6b656400000000000000000000000000000000486f766572626f61726420536b79000000000000000000000000000000000000486f766572626f6172642074616e000000000000000000000000000000000000536b617465626f6172642042726f776e00000000000000000000000000000000536b617465626f617264204461726b20426c7565000000000000000000000000536b617465626f61726420477265656e00000000000000000000000000000000536b617465626f617264204d61726f6f6e000000000000000000000000000000536b617465626f6172642057686974650000000000000000000000000000000053757266626f617264204461726b00000000000000000000000000000000000053757266626f617264204661646564000000000000000000000000000000000053757266626f61726420536d6f6b650000000000000000000000000000000000f1ba9d5efc7e213de4dfa128d9c8194e4adc422f1b2b2af50a32dc22baff5def0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21e0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21192bbf81841de07f719af6556056ebcc96a86228289f01df5d3f697f03eb9ecb16d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146135d6d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146135c000000000000000000000000000000000000000000000000000aa87bee53800042cbb15ccdc3cad6266b0e7a08c0454b23bf29dc2df74b6f3c209e9336465bd1020000020000000000000000000000000000000400000000000000000000000080b41246c05cbb406f874e82aa2faf7db11bba9792fe09929e56ef1eee2c2da3000000020000000000000000000000000000004000000100000000000000000000000000000000000000000000000000000000000000000000000000740d73f200000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000e05c57be00000000000000000000000000000000000000000000000000000000ed288f9800000000000000000000000000000000000000000000000000000000ed288f9900000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000fa0fca8400000000000000000000000000000000000000000000000000000000e05c57bf00000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000d5abeb0000000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000d5f3948800000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000d12397300000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000b228d92500000000000000000000000000000000000000000000000000000000b88d4fde0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a0712d68000000000000000000000000000000000000000000000000000000007d55094c000000000000000000000000000000000000000000000000000000007d55094d000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000740d73f3000000000000000000000000000000000000000000000000000000007440a34500000000000000000000000000000000000000000000000000000000375a069900000000000000000000000000000000000000000000000000000000481231a4000000000000000000000000000000000000000000000000000000006817c76b000000000000000000000000000000000000000000000000000000006817c76c0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a600000000000000000000000000000000000000000000000000000000481231a5000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000003e53eb27000000000000000000000000000000000000000000000000000000003e53eb280000000000000000000000000000000000000000000000000000000042842e0e00000000000000000000000000000000000000000000000000000000375a069a000000000000000000000000000000000000000000000000000000003ccfd60b00000000000000000000000000000000000000000000000000000000095ea7b20000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000367b2a2000000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc0000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000055d822c000000000000000000000000000000000000002000000080000000000000000008c379a0000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c00000008000000000000000006768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f4142434445464748494a4b4c4d4e4f505152535455565758595a616263646566bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdbfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe5000000000000000000000000000000000000000000000000bfffffffffffffe500ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3d000000000000000000000000000000000000000000000000000000000000003d3d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fffffffffffffffe30000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff3f4e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000007b2274726169745f74797065223a22467572222c202276616c7565223a220000227d2c00000000000000000000000000000000000000000000000000000000007b2274726169745f74797065223a2245796573222c202276616c7565223a22007b2274726169745f74797065223a2248656164222c202276616c7565223a22007b2274726169745f74797065223a224d6f757468222c202276616c7565223a227b2274726169745f74797065223a224d61726b222c202276616c7565223a22007b2274726169745f74797065223a22426f617264222c202276616c7565223a22227d0000000000000000000000000000000000000000000000000000000000007b226e616d65223a2022506f636b657420446f67732023000000000000000000636b657420446f6773206f6e20416273747261637420436861696e222c000000222c000000000000000000000000000000000000000000000000000000000000226465736372697074696f6e223a202246756c6c79204f6e636861696e20506f2261747472696275746573223a205b00000000000000000000000000000000005d2c00000000000000000000000000000000000000000000000000000000000022696d616765223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000000000000000000000000000000000000000000000000646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31506c656173652073656e64207468652065786163742045544820616d6f756e74000000000000000000000000000000000000006400000080000000000000000045786365656473206d6178206d696e74207065722077616c6c65740000000000000000000000000000000000000000000000006400000000000000000000000045786365656473206d6178206d696e7420706572207472616e73616374696f6e4d696e74206e6f74207265616479207965740000000000000000000000000000436f6e74726f6c6c6572204f6e6c7900000000000000000000000000000000008f4eb6040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65729cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000005472616e73666572206661696c65642e000000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c000000000100000000000000000000000000000000000000000000000000000000cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925df2d9b4200000000000000000000000000000000000000000000000000000000cf4700e40000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe0a11481000000000000000000000000000000000000000000000000000000000059c896be00000000000000000000000000000000000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320000000200000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efea553b3400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff4035313222206865696768743d22353132223e00000000000000000000000000003c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f32306c3d2223303143413641222f3e0000000000000000000000000000000000000030302f737667222076696577426f783d22302030203136203136222073686170652d72656e646572696e673d2263726973704564676573222077696474683d223c726563742077696474683d22313622206865696768743d223136222066696c3c2f7376673e0000000000000000000000000000000000000000000000000000546f6b656e20646f6573206e6f742065786973740000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0d1a57ed6000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06174636800000000000000000000000000000000000000000000000000000000456c656d656e747320616e642077656967687473206c656e677468206d69736d0000000000000000000000000000000000000084000000000000000000000000ce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec6d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146134f00000000000000000000000000000000000000000000000100000000000000012e07630000000000000000000000000000000000000000000000000000000000b562e8dd00000000000000000000000000000000000000000000000000000000456c656d656e747320617272617920697320656d707479000000000000000000536f6c64204f7574210000000000000000000000000000000000000000000000496e76616c6964206e756d626572206f66207265616374730000000000000000000000000000000000000000000000000000000000000004ffffffffffffffff3c7265637420783d2200000000000000000000000000000000000000000000002220793d220000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000222077696474683d223122206865696768743d2231222066696c6c3d227267622c000000000000000000000000000000000000000000000000000000000000002922202f3e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffa068743d2230222066696c6c3d2272676228302c302c3029222f3e0000000000003c7265637420783d22302220793d2230222077696474683d2230222068656967bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0200000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000072c08ec1047d9aff97ffbc7999f18f9fe00c13745f39d256e047a32526d75f07
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.