Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 180 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 15453934 | 892 days ago | IN | 0 ETH | 0.00069479 | ||||
Transfer From | 14029252 | 1118 days ago | IN | 0 ETH | 0.01411521 | ||||
Transfer From | 13458195 | 1208 days ago | IN | 0 ETH | 0.1169112 | ||||
Transfer From | 13442410 | 1210 days ago | IN | 0 ETH | 0.01194066 | ||||
Transfer From | 13442155 | 1210 days ago | IN | 0 ETH | 0.01395112 | ||||
Transfer From | 13434604 | 1211 days ago | IN | 0 ETH | 0.01093199 | ||||
Transfer From | 13434489 | 1211 days ago | IN | 0 ETH | 0.01221995 | ||||
Transfer From | 13434464 | 1211 days ago | IN | 0 ETH | 0.01453875 | ||||
Transfer From | 13434458 | 1211 days ago | IN | 0 ETH | 0.01262433 | ||||
Transfer From | 13434418 | 1211 days ago | IN | 0 ETH | 0.01275997 | ||||
Transfer From | 13434396 | 1211 days ago | IN | 0 ETH | 0.01179952 | ||||
Transfer From | 13428706 | 1212 days ago | IN | 0 ETH | 0.0131514 | ||||
Transfer From | 13393001 | 1218 days ago | IN | 0 ETH | 0.10427573 | ||||
Transfer From | 13390138 | 1218 days ago | IN | 0 ETH | 0.0112383 | ||||
Transfer From | 13390113 | 1218 days ago | IN | 0 ETH | 0.01268362 | ||||
Transfer From | 13390064 | 1218 days ago | IN | 0 ETH | 0.01145385 | ||||
Transfer From | 13390052 | 1218 days ago | IN | 0 ETH | 0.0108679 | ||||
Transfer From | 13389988 | 1218 days ago | IN | 0 ETH | 0.01070424 | ||||
Presale | 13385423 | 1219 days ago | IN | 0.045 ETH | 0.01434176 | ||||
Presale | 13385296 | 1219 days ago | IN | 0.045 ETH | 0.0143042 | ||||
Presale | 13385213 | 1219 days ago | IN | 0.225 ETH | 0.04585729 | ||||
Add Addresses To... | 13385126 | 1219 days ago | IN | 0 ETH | 0.00326959 | ||||
Add Addresses To... | 13384221 | 1219 days ago | IN | 0 ETH | 0.00282755 | ||||
Presale | 13384212 | 1219 days ago | IN | 0.09 ETH | 0.01875029 | ||||
Presale | 13384131 | 1219 days ago | IN | 0.045 ETH | 0.01649646 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
15453934 | 892 days ago | 4.095 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
SecretAgentAcademy
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./IFactoryERC721.sol"; import "./AgentDsSecretRoom.sol"; import "./DuckOwnerProxy.sol"; contract SecretAgentAcademy is FactoryERC721, Ownable { using SafeMath for uint256; using Strings for string; event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); mapping(uint16 => bool) public mintsFromDuckIDs; mapping(address => bool) public presaleWhitelist; address public proxyRegistryAddress; address public nftAddress; address public duckOwnerProxyAdress; string public baseURI; uint256 public presaleTime = 0; uint256 public presaleEndTime = 0; uint256 MAX_SUPPLY = 10000; uint256 NUM_OPTIONS = 3; uint256 SINGLE_OPTION = 0; uint256 MULTIPLE_OPTION_5 = 1; uint256 MULTIPLE_OPTION_10 = 2; modifier onlyPresaleWhitelisted() { require( presaleWhitelist[msg.sender], "You're not whitelisted for pre-sale." ); _; } // left goto1 constructor(address _proxyRegistryAddress, address _nftAddress, address _duckOwnerProxyAdress) { proxyRegistryAddress = _proxyRegistryAddress; nftAddress = _nftAddress; duckOwnerProxyAdress = _duckOwnerProxyAdress; fireTransferEvents(address(0), owner()); } function name() override external pure returns (string memory) { return "Secret Agent Academy"; } function symbol() override external pure returns (string memory) { return "SAA"; } function supportsFactoryInterface() override public pure returns (bool) { return true; } function numOptions() override public view returns (uint256) { return NUM_OPTIONS; } function transferOwnership(address newOwner) override public onlyOwner { address _prevOwner = owner(); super.transferOwnership(newOwner); fireTransferEvents(_prevOwner, newOwner); } function fireTransferEvents(address _from, address _to) private { for (uint256 i = 0; i < NUM_OPTIONS; i++) { emit Transfer(_from, _to, i); } } function setPresaleTimes( uint256 _presaleTime, uint256 _presaleEndTime ) external onlyOwner { presaleTime = _presaleTime; presaleEndTime = _presaleEndTime; } function presale(uint256 _amount) external payable onlyPresaleWhitelisted { require( block.timestamp >= presaleTime && block.timestamp < presaleEndTime, "No presale going on at the moment." ); AgentDsSecretRoom nft = AgentDsSecretRoom(nftAddress); address toAddress = _msgSender(); require( (_amount + nft.balanceOf(toAddress)) <= 5, "Up to 5 NFTs can be purchased in the presale." ); require( msg.value == uint256(_amount) * 0.045 ether, "You need to pay the exact price." ); uint256 totalSupply = nft.totalSupply(); require(totalSupply <= (MAX_SUPPLY - _amount), "Not enough NFTs in stock"); for ( uint256 i = 0; i < _amount; i++ ) { nft.mintTo(toAddress); } } function mintFromDuck(uint16 _duckID) external { require(!mintsFromDuckIDs[_duckID], "Already minted from this duck"); DuckOwnerProxy duckOwnerProxy = DuckOwnerProxy(duckOwnerProxyAdress); require(duckOwnerProxy.checkIfDuckOwner(_duckID), "You should own this duck in order to use it."); AgentDsSecretRoom nft = AgentDsSecretRoom(nftAddress); address toAddress = _msgSender(); uint256 totalSupply = nft.totalSupply(); require(totalSupply <= (MAX_SUPPLY - 1), "Not enough NFTs in stock"); nft.mintTo(toAddress); mintsFromDuckIDs[_duckID] = true; } function mint(uint256 _optionId, address _toAddress) override public { // Must be sent from the owner proxy or owner. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); assert( address(proxyRegistry.proxies(owner())) == _msgSender() || owner() == _msgSender() ); require(canMint(_optionId)); AgentDsSecretRoom nft = AgentDsSecretRoom(nftAddress); uint256 numberToMint = 0; if (_optionId == SINGLE_OPTION) { numberToMint = 1; } else if (_optionId == MULTIPLE_OPTION_5) { numberToMint = 5; } else if (_optionId == MULTIPLE_OPTION_10) { numberToMint = 10; } require(_toAddress == owner() || (nft.balanceOf(_toAddress) + numberToMint) <= 15, "Only up to 15 NFT per owner" ); for ( uint256 i = 0; i < numberToMint; i++ ) { nft.mintTo(_toAddress); } } function canMint(uint256 _optionId) override public view returns (bool) { if (_optionId >= NUM_OPTIONS) { return false; } AgentDsSecretRoom nft = AgentDsSecretRoom(nftAddress); uint256 totalSupply = nft.totalSupply(); uint256 numItemsAllocated = 0; if (_optionId == SINGLE_OPTION) { numItemsAllocated = 1; } else if (_optionId == MULTIPLE_OPTION_5) { numItemsAllocated = 5; } else if (_optionId == MULTIPLE_OPTION_10) { numItemsAllocated = 10; } return totalSupply <= (MAX_SUPPLY - numItemsAllocated); } function tokenURI(uint256 _optionId) override external view returns (string memory) { return string(abi.encodePacked(baseURI, Strings.toString(_optionId))); } /** * Hack to get things to work automatically on OpenSea. * Use transferFrom so the frontend doesn't have to worry about different method names. */ function transferFrom( address /* _from */, address _to, uint256 _tokenId ) public { mint(_tokenId, _to); } /** * Hack to get things to work automatically on OpenSea. * Use isApprovedForAll so the frontend doesn't have to worry about different method names. */ function isApprovedForAll(address _owner, address _operator) public view returns (bool) { if (owner() == _owner && _owner == _operator) { return true; } ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if ( owner() == _owner && address(proxyRegistry.proxies(_owner)) == _operator ) { return true; } return false; } function withdraw() external onlyOwner { require(address(this).balance > 0, "You just wasted gas on trying to withdraw nada..."); payable(owner()).transfer(address(this).balance); } /** * Hack to get things to work automatically on OpenSea. * Use isApprovedForAll so the frontend doesn't have to worry about different method names. */ function ownerOf(uint256 /*_tokenId*/) public view returns (address _owner) { return owner(); } function setBaseUri(string memory uri) public onlyOwner { baseURI = uri; } function addAddressesToPresaleWhitelist(address[] memory addrs) public onlyOwner { for (uint256 i = 0; i < addrs.length; i++) { presaleWhitelist[addrs[i]] = true; } } // We got taken! }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721TradableRandomMint.sol"; contract AgentDsSecretRoom is ERC721TradableRandomMint { string public contractURI; bool public isMetadataLocked = false; address public originalOwner; /** * @dev Throws if called by any account other than the original owner. */ modifier onlyOriginalOwner() { require(originalOwner == _msgSender(), "Caller is not the original owner"); _; } // They are watching you! constructor(address _proxyRegistryAddress) ERC721TradableRandomMint("Agent D's Secret Room", "ASR", _proxyRegistryAddress) { originalOwner = owner(); } function lockContractMetadata() public onlyOriginalOwner { require(!isMetadataLocked, "The Contract has already been locked!"); isMetadataLocked = true; } // One does not simply enter the basement! function setBaseUri(string memory uri) public onlyOriginalOwner { require(!isMetadataLocked, "The Contract has been locked, toughluck!"); baseURI = uri; } // Don't eat those donuts! function setContractUri(string memory uri) public onlyOriginalOwner { require(!isMetadataLocked, "The Contract has been locked, toughluck!"); contractURI = uri; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface OpenStoreContract { function balanceOf(address _owner, uint256 _id) external view returns (uint256); } // quack-quack! contract DuckOwnerProxy { address public openStoreNFTAddress; uint256 public baseNumber = 81051682759312351887842295081699468782319279963069916326007376000000000000000; uint56[333] public ducks = [ uint56(214849514110977), uint56(215949025738753), uint56(218148048994305), uint56(483130351288321), uint56(220347072249857), uint56(482030839660545), uint56(222546095505409), uint56(223645607133185), uint56(224745118760961), uint56(225844630388737), uint56(226944142016513), uint56(228043653644289), uint56(229143165272065), uint56(230242676899841), uint56(231342188527617), uint56(232441700155393), uint56(233541211783169), uint56(234640723410945), uint56(235740235038721), uint56(237939258294273), uint56(236839746666497), uint56(239038769922049), uint56(240138281549825), uint56(241237793177601), uint56(242337304805377), uint56(243436816433153), uint56(244536328060929), uint56(245635839688705), uint56(246735351316481), uint56(247834862944257), uint56(248934374572033), uint56(250033886199809), uint56(251133397827585), uint56(252232909455361), uint56(253332421083137), uint56(254431932710913), uint56(255531444338689), uint56(256630955966465), uint56(257730467594241), uint56(258829979222017), uint56(259929490849793), uint56(261029002477569), uint56(262128514105345), uint56(263228025733121), uint56(264327537360897), // D uint56(265427048988673), uint56(266526560616449), uint56(267626072244225), uint56(268725583872001), uint56(269825095499777), // U uint56(270924607127553), uint56(272024118755329), uint56(273123630383105), uint56(274223142010881), uint56(275322653638657), // C uint56(276422165266433), uint56(277521676894209), uint56(278621188521985), uint56(279720700149761), uint56(280820211777537), // K uint56(281919723405313), uint56(283019235033089), uint56(284118746660865), uint56(285218258288641), uint56(286317769916417), // S uint56(287417281544193), uint56(288516793171969), uint56(289616304799745), uint56(290715816427521), uint56(291815328055297), uint56(292914839683073), uint56(294014351310849), uint56(295113862938625), uint56(296213374566401), uint56(297312886194177), uint56(298412397821953), uint56(299511909449729), uint56(554598607093761), uint56(301710932705281), uint56(302810444333057), uint56(303909955960833), uint56(305009467588609), uint56(306108979216385), uint56(307208490844161), uint56(308308002471937), uint56(309407514099713), uint56(310507025727489), uint56(311606537355265), uint56(312706048983041), uint56(313805560610817), uint56(314905072238593), uint56(316004583866369), uint56(317104095494145), uint56(318203607121921), uint56(319303118749697), uint56(320402630377473), uint56(321502142005249), uint56(322601653633025), uint56(323701165260801), uint56(324800676888577), uint56(325900188516353), uint56(326999700144129), uint56(328099211771905), uint56(329198723399681), uint56(330298235027457), uint56(331397746655233), uint56(332497258283009), uint56(333596769910785), uint56(334696281538561), uint56(335795793166337), uint56(336895304794113), uint56(337994816421889), uint56(339094328049665), uint56(340193839677441), uint56(341293351305217), uint56(342392862932993), uint56(343492374560769), uint56(344591886188545), uint56(345691397816321), uint56(346790909444097), uint56(347890421071873), uint56(348989932699649), uint56(354487490838529), uint56(350089444327425), uint56(351188955955201), uint56(352288467582977), uint56(353387979210753), uint56(367681630371841), uint56(366582118744065), uint56(365482607116289), uint56(364383095488513), uint56(363283583860737), uint56(362184072232961), uint56(361084560605185), uint56(359985048977409), uint56(358885537349633), uint56(357786025721857), uint56(356686514094081), uint56(355587002466305), uint56(434751839666177), uint56(486428886171649), uint56(436950862921729), uint56(487528397799425), uint56(439149886177281), uint56(488627909427201), uint56(490826932682753), uint56(442448421060609), uint56(491926444310529), uint56(444647444316161), uint56(601877607088129), uint56(446846467571713), uint56(500722537332737), uint56(449045490827265), uint56(480931328032769), uint56(451244514082817), uint56(506220095471617), uint56(453443537338369), uint56(454543048966145), uint56(455642560593921), uint56(456742072221697), uint56(511717653610497), uint56(458941095477249), uint56(515016188493825), uint56(461140118732801), uint56(550200560582657), uint56(496324490821633), uint56(464438653616129), uint56(551300072210433), uint56(466637676871681), uint56(467737188499457), uint56(523812281516033), uint56(524911793143809), uint56(479831816404993), uint56(526011304771585), uint56(544703002443777), uint56(473234746638337), uint56(533707886166017), uint56(501822048960513), uint56(508419118727169), uint56(534807397793793), uint56(477632793149441), uint56(478732304777217), uint56(535906909421569), uint56(541404467560449), uint56(522712769888257), uint56(540304955932673), uint56(539205444304897), uint56(507319607099393), uint56(538105932677121), uint56(497424002449409), uint56(519414235004929), uint56(521613258260481), uint56(498523514077185), uint56(499623025704961), uint56(502921560588289), uint56(537006421049345), uint56(532608374538241), uint56(510618141982721), uint56(509518630354945), uint56(300611421077505), uint56(520513746632705), uint56(531508862910465), uint56(504021072216065), uint56(530409351282689), uint56(528210328027137), uint56(527110816399361), uint56(529309839654913), uint56(505120583843841), uint56(493025955938305), uint56(517215211749377), uint56(494125467566081), uint56(516115700121601), uint56(513916676866049), uint56(489727421054977), uint56(575489328021505), uint56(602977118715905), uint56(580986886160385), uint56(604076630343681), uint56(545802514071553), uint56(605176141971457), uint56(552399583838209), uint56(546902025699329), uint56(606275653599233), uint56(607375165227009), uint56(597479560577025), uint56(608474676854785), uint56(548001537327105), uint56(599678583832577), uint56(609574188482561), uint56(553499095465985), uint56(610673700110337), uint56(611773211738113), uint56(579887374532609), uint56(612872723365889), uint56(564494211743745), uint56(549101048954881), uint56(585384932671489), uint56(556797630349313), uint56(613972234993665), uint56(615071746621441), uint56(616171258249217), uint56(617270769876993), uint56(589782979182593), uint56(583185909415937), uint56(618370281504769), uint56(619469793132545), uint56(620569304760321), uint56(621668816388097), uint56(584285421043713), uint56(557897141977089), uint56(622768328015873), uint56(590882490810369), uint56(623867839643649), uint56(582086397788161), uint56(561195676860417), uint56(563394700115969), uint56(624967351271425), uint56(567792746627073), uint56(555698118721537), uint56(573290304765953), uint56(565593723371521), uint56(626066862899201), uint56(588683467554817), uint56(577688351277057), uint56(627166374526977), uint56(628265886154753), uint56(600778095460353), uint56(578787862904833), uint56(574389816393729), uint56(598579072204801), uint56(629365397782529), uint56(566693234999297), uint56(630464909410305), uint56(571091281510401), uint56(586484444299265), uint56(558996653604865), uint56(572190793138177), uint56(631564421038081), uint56(562295188488193), uint56(632663932665857), uint56(633763444293633), uint56(587583955927041), uint56(568892258254849), uint56(569991769882625), uint56(634862955921409), uint56(635962467549185), uint56(593081514065921), uint56(576588839649281), uint56(591982002438145), uint56(637061979176961), uint56(638161490804737), uint56(560096165232641), uint56(594181025693697), uint56(639261002432513), uint56(595280537321473), uint56(640360514060289), uint56(642559537315841), uint56(596380048949249), uint56(484229862916097), uint56(485329374543873), uint56(683241467543553), uint56(683241467543553), uint56(684340979171329), uint56(685440490799105), uint56(686540002426881), uint56(646957583826945), uint56(648057095454721), uint56(687639514054657), uint56(688739025682433), uint56(689838537310209), uint56(643659048943617), uint56(649156607082497), uint56(644758560571393), uint56(690938048937985), uint56(645858072199169), uint56(692037560565761), uint56(693137072193537), uint56(694236583821313), uint56(695336095449089), uint56(542503979188225), uint56(696435607076865), uint56(697535118704641), uint56(698634630332417), uint56(699734141960193), uint56(700833653587969), uint56(701933165215745), uint56(703032676843521), uint56(704132188471297), uint56(705231700099073), uint56(706331211726849), uint56(707430723354625), uint56(708530234982401), uint56(543603490816001) ]; constructor(address _openStoreNFTAddress) { openStoreNFTAddress = _openStoreNFTAddress; } // VRAgent was here! function checkIfDuckOwner(uint16 _duckID) external view returns (bool) { require(_duckID >= 1 && _duckID <= 333, "Duck ID should be in range"); uint56 offset = ducks[_duckID - 1]; uint256 tokenID = uint256(offset) + baseNumber; OpenStoreContract nft = OpenStoreContract(openStoreNFTAddress); return nft.balanceOf(tx.origin, tokenID) == 1; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./common/meta-transactions/ContentMixin.sol"; import "./common/meta-transactions/NativeMetaTransaction.sol"; import "./ProxyRegistry.sol"; /** * @title ERC721TradableRandomMint * ERC721TradableRandomMint - ERC721 contract that whitelists a trading address, and has minting functionality. * and also has random minting functionality (VRAgent/VRPunk addition) */ abstract contract ERC721TradableRandomMint is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable { using SafeMath for uint256; address proxyRegistryAddress; string public baseURI; /** * @dev This is the mapping we randomly pick from. In case it is 0 it means use the index number instead. * when a token is picked we take the last index and move it to the front. */ mapping (uint16 => uint16) tokenPickMapping; uint16 tokensAvailable = 10000; constructor( string memory _name, string memory _symbol, address _proxyRegistryAddress ) ERC721(_name, _symbol) { proxyRegistryAddress = _proxyRegistryAddress; _initializeEIP712(_name); } /** * @dev generates a random uint16 number based on block info */ function randomUint16() internal view returns (uint16) { bytes32 randomHash = keccak256( abi.encode( block.timestamp, block.difficulty, block.coinbase, tx.origin ) ); return uint16(uint256(randomHash) % (type(uint16).max)); } /** * @dev Mints a random token to an address with a tokenURI. * @param _to address of the future owner of the token */ function mintTo(address _to) public onlyOwner { require(tokensAvailable > 0, "No more tokens available."); uint16 randomPick = randomUint16() % tokensAvailable; uint16 pickedRandomToken = tokenPickMapping[randomPick]; if (pickedRandomToken == 0) { pickedRandomToken = randomPick + 1; } // Lets mint the randomly picked token: uint16 newTokenId = pickedRandomToken - 1; _mint(_to, newTokenId); // after successfully minting we can update the tokenPickMapping tokensAvailable--; uint16 lastToken = tokenPickMapping[tokensAvailable]; if (lastToken == 0) { lastToken = tokensAvailable + 1; } tokenPickMapping[randomPick] = lastToken; } function tokenURI(uint256 _tokenId) override public view returns (string memory) { return string(abi.encodePacked(baseURI, Strings.toString(_tokenId))); } /** * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } /** * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea. */ function _msgSender() internal override view returns (address sender) { return ContextMixin.msgSender(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * This is a generic factory contract that can be used to mint tokens. The configuration * for minting is specified by an _optionId, which can be used to delineate various * ways of minting. */ interface FactoryERC721 { /** * Returns the name of this factory. */ function name() external view returns (string memory); /** * Returns the symbol for this factory. */ function symbol() external view returns (string memory); /** * Number of options the factory supports. */ function numOptions() external view returns (uint256); /** * @dev Returns whether the option ID can be minted. Can return false if the developer wishes to * restrict a total supply per option ID (or overall). */ function canMint(uint256 _optionId) external view returns (bool); /** * @dev Returns a URL specifying some metadata about the option. This metadata can be of the * same structure as the ERC721 metadata. */ function tokenURI(uint256 _optionId) external view returns (string memory); /** * Indicates that this is a factory contract. Ideally would use EIP 165 supportsInterface() */ function supportsFactoryInterface() external view returns (bool); /** * @dev Mints asset(s) in accordance to a specific address with a particular "option". This should be * callable only by the contract owner or the owner's Wyvern Proxy (later universal login will solve this). * Options should also be delineated 0 - (numOptions() - 1) for convenient indexing. * @param _optionId the option id * @param _toAddress address of the future owner of the asset(s) */ function mint(uint256 _optionId, address _toAddress) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract ContextMixin { function msgSender() internal view returns (address payable sender) { if (msg.sender == address(this)) { bytes memory array = msg.data; uint256 index = msg.data.length; assembly { // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those. sender := and( mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff ) } } else { sender = payable(msg.sender); } return sender; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {Initializable} from "./Initializable.sol"; contract EIP712Base is Initializable { struct EIP712Domain { string name; string version; address verifyingContract; bytes32 salt; } string constant public ERC712_VERSION = "1"; bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256( bytes( "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)" ) ); bytes32 internal domainSeperator; // supposed to be called once while initializing. // one of the contracts that inherits this contract follows proxy pattern // so it is not possible to do this in a constructor function _initializeEIP712( string memory name ) internal initializer { _setDomainSeperator(name); } function _setDomainSeperator(string memory name) internal { domainSeperator = keccak256( abi.encode( EIP712_DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes(ERC712_VERSION)), address(this), bytes32(getChainId()) ) ); } function getDomainSeperator() public view returns (bytes32) { return domainSeperator; } function getChainId() public view returns (uint256) { uint256 id; assembly { id := chainid() } return id; } /** * Accept message hash and returns hash message in EIP712 compatible form * So that it can be used to recover signer from signature signed using EIP712 formatted data * https://eips.ethereum.org/EIPS/eip-712 * "\\x19" makes the encoding deterministic * "\\x01" is the version byte to make it compatible to EIP-191 */ function toTypedMessageHash(bytes32 messageHash) internal view returns (bytes32) { return keccak256( abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash) ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract Initializable { bool inited = false; modifier initializer() { require(!inited, "already inited"); _; inited = true; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {SafeMath} from "@openzeppelin/contracts/utils/math/SafeMath.sol"; import {EIP712Base} from "./EIP712Base.sol"; contract NativeMetaTransaction is EIP712Base { using SafeMath for uint256; bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256( bytes( "MetaTransaction(uint256 nonce,address from,bytes functionSignature)" ) ); event MetaTransactionExecuted( address userAddress, address payable relayerAddress, bytes functionSignature ); mapping(address => uint256) nonces; /* * Meta transaction structure. * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas * He should call the desired function directly in that case. */ struct MetaTransaction { uint256 nonce; address from; bytes functionSignature; } function executeMetaTransaction( address userAddress, bytes memory functionSignature, bytes32 sigR, bytes32 sigS, uint8 sigV ) public payable returns (bytes memory) { MetaTransaction memory metaTx = MetaTransaction({ nonce: nonces[userAddress], from: userAddress, functionSignature: functionSignature }); require( verify(userAddress, metaTx, sigR, sigS, sigV), "Signer and signature do not match" ); // increase nonce for user (to avoid re-use) nonces[userAddress] = nonces[userAddress].add(1); emit MetaTransactionExecuted( userAddress, payable(msg.sender), functionSignature ); // Append userAddress and relayer address at the end to extract it from calling context (bool success, bytes memory returnData) = address(this).call( abi.encodePacked(functionSignature, userAddress) ); require(success, "Function call not successful"); return returnData; } function hashMetaTransaction(MetaTransaction memory metaTx) internal pure returns (bytes32) { return keccak256( abi.encode( META_TRANSACTION_TYPEHASH, metaTx.nonce, metaTx.from, keccak256(metaTx.functionSignature) ) ); } function getNonce(address user) public view returns (uint256 nonce) { nonce = nonces[user]; } function verify( address signer, MetaTransaction memory metaTx, bytes32 sigR, bytes32 sigS, uint8 sigV ) internal view returns (bool) { require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER"); return signer == ecrecover( toTypedMessageHash(hashMetaTransaction(metaTx)), sigV, sigR, sigS ); } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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 (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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 ) external; /** * @dev Transfers `tokenId` token 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; /** * @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; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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 calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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; } }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"address","name":"_nftAddress","type":"address"},{"internalType":"address","name":"_duckOwnerProxyAdress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"address[]","name":"addrs","type":"address[]"}],"name":"addAddressesToPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_optionId","type":"uint256"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"duckOwnerProxyAdress","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":[{"internalType":"uint256","name":"_optionId","type":"uint256"},{"internalType":"address","name":"_toAddress","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_duckID","type":"uint16"}],"name":"mintFromDuck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"mintsFromDuckIDs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"nftAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numOptions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presaleTime","type":"uint256"},{"internalType":"uint256","name":"_presaleEndTime","type":"uint256"}],"name":"setPresaleTimes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supportsFactoryInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_optionId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600060075560006008556127106009556003600a556000600b556001600c556002600d553480156200003557600080fd5b50604051620033073803806200330783398181016040528101906200005b9190620002f9565b6200007b6200006f6200016960201b60201c565b6200017160201b60201c565b82600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001606000620001546200023560201b60201c565b6200025e60201b60201c565b50505062000424565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60005b600a54811015620002dd57808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48080620002d4906200038d565b91505062000261565b505050565b600081519050620002f3816200040a565b92915050565b6000806000606084860312156200030f57600080fd5b60006200031f86828701620002e2565b93505060206200033286828701620002e2565b92505060406200034586828701620002e2565b9150509250925092565b60006200035c8262000363565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006200039a8262000383565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620003d057620003cf620003db565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b62000415816200034f565b81146200042157600080fd5b50565b612ed380620004346000396000f3fe60806040526004361061019c5760003560e01c806394bf804d116100ec578063cbd7407e1161008a578063e6ab143411610064578063e6ab143414610592578063e985e9c5146105ae578063eb8835ab146105eb578063f2fde38b146106285761019c565b8063cbd7407e146104ff578063cd7c03261461053c578063de13810e146105675761019c565b8063a0bcfc7f116100c6578063a0bcfc7f14610443578063c311c5231461046c578063c6e62e0b14610497578063c87b56dd146104c25761019c565b806394bf804d146103c6578063952bd074146103ef57806395d89b41146104185761019c565b80635dd871a3116101595780636352211e116101335780636352211e1461031c5780636c0360eb14610359578063715018a6146103845780638da5cb5b1461039b5761019c565b80635dd871a31461028d57806362b51485146102ca57806362bf3863146102f35761019c565b806306fdde03146101a157806323b872dd146101cc578063249b7c19146101f55780633ccfd60b146102205780634b97aed9146102375780635bf8633a14610262575b600080fd5b3480156101ad57600080fd5b506101b6610651565b6040516101c391906125a4565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee919061208e565b61068e565b005b34801561020157600080fd5b5061020a61069d565b6040516102179190612741565b60405180910390f35b34801561022c57600080fd5b506102356106a3565b005b34801561024357600080fd5b5061024c6107b2565b6040516102599190612741565b60405180910390f35b34801561026e57600080fd5b506102776107bc565b604051610284919061256e565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906121da565b6107e2565b6040516102c19190612589565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec91906121b1565b6108f4565b005b3480156102ff57600080fd5b5061031a600480360381019061031591906120dd565b610bf7565b005b34801561032857600080fd5b50610343600480360381019061033e91906121da565b610d2e565b604051610350919061256e565b60405180910390f35b34801561036557600080fd5b5061036e610d3f565b60405161037b91906125a4565b60405180910390f35b34801561039057600080fd5b50610399610dcd565b005b3480156103a757600080fd5b506103b0610e55565b6040516103bd919061256e565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e8919061222c565b610e7e565b005b3480156103fb57600080fd5b5061041660048036038101906104119190612268565b6111f8565b005b34801561042457600080fd5b5061042d611286565b60405161043a91906125a4565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190612170565b6112c3565b005b34801561047857600080fd5b50610481611359565b60405161048e9190612589565b60405180910390f35b3480156104a357600080fd5b506104ac611362565b6040516104b99190612741565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906121da565b611368565b6040516104f691906125a4565b60405180910390f35b34801561050b57600080fd5b50610526600480360381019061052191906121b1565b61139c565b6040516105339190612589565b60405180910390f35b34801561054857600080fd5b506105516113bc565b60405161055e919061256e565b60405180910390f35b34801561057357600080fd5b5061057c6113e2565b604051610589919061256e565b60405180910390f35b6105ac60048036038101906105a791906121da565b611408565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190612052565b6117a6565b6040516105e29190612589565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612029565b61195a565b60405161061f9190612589565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190612029565b61197a565b005b60606040518060400160405280601481526020017f536563726574204167656e742041636164656d79000000000000000000000000815250905090565b6106988183610e7e565b505050565b60085481565b6106ab611a19565b73ffffffffffffffffffffffffffffffffffffffff166106c9610e55565b73ffffffffffffffffffffffffffffffffffffffff161461071f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071690612666565b60405180910390fd5b60004711610762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075990612686565b60405180910390fd5b61076a610e55565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156107af573d6000803e3d6000fd5b50565b6000600a54905090565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a5482106107f657600090506108ef565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561086557600080fd5b505afa158015610879573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089d9190612203565b90506000600b548514156108b457600190506108d8565b600c548514156108c757600590506108d7565b600d548514156108d657600a90505b5b5b806009546108e691906128fb565b82111593505050505b919050565b600160008261ffff1661ffff16815260200190815260200160002060009054906101000a900460ff161561095d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610954906126c6565b60405180910390fd5b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663de6b8030836040518263ffffffff1660e01b81526004016109bd9190612726565b60206040518083038186803b1580156109d557600080fd5b505afa1580156109e9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0d919061211e565b610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390612606565b60405180910390fd5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000610a7d611a19565b905060008273ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ac757600080fd5b505afa158015610adb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aff9190612203565b90506001600954610b1091906128fb565b811115610b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4990612626565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663755edd17836040518263ffffffff1660e01b8152600401610b8b919061256e565b600060405180830381600087803b158015610ba557600080fd5b505af1158015610bb9573d6000803e3d6000fd5b5050505060018060008761ffff1661ffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b610bff611a19565b73ffffffffffffffffffffffffffffffffffffffff16610c1d610e55565b73ffffffffffffffffffffffffffffffffffffffff1614610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90612666565b60405180910390fd5b60005b8151811015610d2a57600160026000848481518110610cbe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d2290612a3c565b915050610c76565b5050565b6000610d38610e55565b9050919050565b60068054610d4c906129d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d78906129d9565b8015610dc55780601f10610d9a57610100808354040283529160200191610dc5565b820191906000526020600020905b815481529060010190602001808311610da857829003601f168201915b505050505081565b610dd5611a19565b73ffffffffffffffffffffffffffffffffffffffff16610df3610e55565b73ffffffffffffffffffffffffffffffffffffffff1614610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090612666565b60405180910390fd5b610e536000611a21565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050610ead611a19565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791610ee7610e55565b6040518263ffffffff1660e01b8152600401610f03919061256e565b60206040518083038186803b158015610f1b57600080fd5b505afa158015610f2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f539190612147565b73ffffffffffffffffffffffffffffffffffffffff161480610fae5750610f78611a19565b73ffffffffffffffffffffffffffffffffffffffff16610f96610e55565b73ffffffffffffffffffffffffffffffffffffffff16145b610fe1577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b610fea836107e2565b610ff357600080fd5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600b5485141561102f5760019050611053565b600c548514156110425760059050611052565b600d5485141561105157600a90505b5b5b61105b610e55565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111285750600f818373ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b81526004016110cb919061256e565b60206040518083038186803b1580156110e357600080fd5b505afa1580156110f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111b9190612203565b611125919061281a565b11155b611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90612706565b60405180910390fd5b60005b818110156111f0578273ffffffffffffffffffffffffffffffffffffffff1663755edd17866040518263ffffffff1660e01b81526004016111ab919061256e565b600060405180830381600087803b1580156111c557600080fd5b505af11580156111d9573d6000803e3d6000fd5b5050505080806111e890612a3c565b91505061116a565b505050505050565b611200611a19565b73ffffffffffffffffffffffffffffffffffffffff1661121e610e55565b73ffffffffffffffffffffffffffffffffffffffff1614611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90612666565b60405180910390fd5b81600781905550806008819055505050565b60606040518060400160405280600381526020017f5341410000000000000000000000000000000000000000000000000000000000815250905090565b6112cb611a19565b73ffffffffffffffffffffffffffffffffffffffff166112e9610e55565b73ffffffffffffffffffffffffffffffffffffffff161461133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690612666565b60405180910390fd5b8060069080519060200190611355929190611e0a565b5050565b60006001905090565b60075481565b6060600661137583611ae5565b60405160200161138692919061254a565b6040516020818303038152906040529050919050565b60016020528060005260406000206000915054906101000a900460ff1681565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b906125e6565b60405180910390fd5b60075442101580156114a7575060085442105b6114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd90612646565b60405180910390fd5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000611517611a19565b905060058273ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611554919061256e565b60206040518083038186803b15801561156c57600080fd5b505afa158015611580573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a49190612203565b846115af919061281a565b11156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e7906126a6565b60405180910390fd5b669fdf42f6e480008361160391906128a1565b3414611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b906126e6565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561168c57600080fd5b505afa1580156116a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c49190612203565b9050836009546116d491906128fb565b811115611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90612626565b60405180910390fd5b60005b8481101561179f578373ffffffffffffffffffffffffffffffffffffffff1663755edd17846040518263ffffffff1660e01b815260040161175a919061256e565b600060405180830381600087803b15801561177457600080fd5b505af1158015611788573d6000803e3d6000fd5b50505050808061179790612a3c565b915050611719565b5050505050565b60008273ffffffffffffffffffffffffffffffffffffffff166117c7610e55565b73ffffffffffffffffffffffffffffffffffffffff1614801561181557508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156118235760019050611954565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508373ffffffffffffffffffffffffffffffffffffffff16611869610e55565b73ffffffffffffffffffffffffffffffffffffffff1614801561193f57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016118d7919061256e565b60206040518083038186803b1580156118ef57600080fd5b505afa158015611903573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119279190612147565b73ffffffffffffffffffffffffffffffffffffffff16145b1561194e576001915050611954565b60009150505b92915050565b60026020528060005260406000206000915054906101000a900460ff1681565b611982611a19565b73ffffffffffffffffffffffffffffffffffffffff166119a0610e55565b73ffffffffffffffffffffffffffffffffffffffff16146119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed90612666565b60405180910390fd5b6000611a00610e55565b9050611a0b82611c92565b611a158183611d8a565b5050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606000821415611b2d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c8d565b600082905060005b60008214611b5f578080611b4890612a3c565b915050600a82611b589190612870565b9150611b35565b60008167ffffffffffffffff811115611ba1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611bd35781602001600182028036833780820191505090505b5090505b60008514611c8657600182611bec91906128fb565b9150600a85611bfb9190612a85565b6030611c07919061281a565b60f81b818381518110611c43577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c7f9190612870565b9450611bd7565b8093505050505b919050565b611c9a611a19565b73ffffffffffffffffffffffffffffffffffffffff16611cb8610e55565b73ffffffffffffffffffffffffffffffffffffffff1614611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590612666565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d75906125c6565b60405180910390fd5b611d8781611a21565b50565b60005b600a54811015611e0557808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48080611dfd90612a3c565b915050611d8d565b505050565b828054611e16906129d9565b90600052602060002090601f016020900481019282611e385760008555611e7f565b82601f10611e5157805160ff1916838001178555611e7f565b82800160010185558215611e7f579182015b82811115611e7e578251825591602001919060010190611e63565b5b509050611e8c9190611e90565b5090565b5b80821115611ea9576000816000905550600101611e91565b5090565b6000611ec0611ebb84612781565b61275c565b90508083825260208201905082856020860282011115611edf57600080fd5b60005b85811015611f0f5781611ef58882611f57565b845260208401935060208301925050600181019050611ee2565b5050509392505050565b6000611f2c611f27846127ad565b61275c565b905082815260208101848484011115611f4457600080fd5b611f4f848285612997565b509392505050565b600081359050611f6681612e2a565b92915050565b600082601f830112611f7d57600080fd5b8135611f8d848260208601611ead565b91505092915050565b600081519050611fa581612e41565b92915050565b600081519050611fba81612e58565b92915050565b600082601f830112611fd157600080fd5b8135611fe1848260208601611f19565b91505092915050565b600081359050611ff981612e6f565b92915050565b60008135905061200e81612e86565b92915050565b60008151905061202381612e86565b92915050565b60006020828403121561203b57600080fd5b600061204984828501611f57565b91505092915050565b6000806040838503121561206557600080fd5b600061207385828601611f57565b925050602061208485828601611f57565b9150509250929050565b6000806000606084860312156120a357600080fd5b60006120b186828701611f57565b93505060206120c286828701611f57565b92505060406120d386828701611fff565b9150509250925092565b6000602082840312156120ef57600080fd5b600082013567ffffffffffffffff81111561210957600080fd5b61211584828501611f6c565b91505092915050565b60006020828403121561213057600080fd5b600061213e84828501611f96565b91505092915050565b60006020828403121561215957600080fd5b600061216784828501611fab565b91505092915050565b60006020828403121561218257600080fd5b600082013567ffffffffffffffff81111561219c57600080fd5b6121a884828501611fc0565b91505092915050565b6000602082840312156121c357600080fd5b60006121d184828501611fea565b91505092915050565b6000602082840312156121ec57600080fd5b60006121fa84828501611fff565b91505092915050565b60006020828403121561221557600080fd5b600061222384828501612014565b91505092915050565b6000806040838503121561223f57600080fd5b600061224d85828601611fff565b925050602061225e85828601611f57565b9150509250929050565b6000806040838503121561227b57600080fd5b600061228985828601611fff565b925050602061229a85828601611fff565b9150509250929050565b6122ad8161292f565b82525050565b6122bc81612941565b82525050565b60006122cd826127f3565b6122d781856127fe565b93506122e78185602086016129a6565b6122f081612b72565b840191505092915050565b6000612306826127f3565b612310818561280f565b93506123208185602086016129a6565b80840191505092915050565b60008154612339816129d9565b612343818661280f565b9450600182166000811461235e576001811461236f576123a2565b60ff198316865281860193506123a2565b612378856127de565b60005b8381101561239a5781548189015260018201915060208101905061237b565b838801955050505b50505092915050565b60006123b86026836127fe565b91506123c382612b83565b604082019050919050565b60006123db6024836127fe565b91506123e682612bd2565b604082019050919050565b60006123fe602c836127fe565b915061240982612c21565b604082019050919050565b60006124216018836127fe565b915061242c82612c70565b602082019050919050565b60006124446022836127fe565b915061244f82612c99565b604082019050919050565b60006124676020836127fe565b915061247282612ce8565b602082019050919050565b600061248a6031836127fe565b915061249582612d11565b604082019050919050565b60006124ad602d836127fe565b91506124b882612d60565b604082019050919050565b60006124d0601d836127fe565b91506124db82612daf565b602082019050919050565b60006124f36020836127fe565b91506124fe82612dd8565b602082019050919050565b6000612516601b836127fe565b915061252182612e01565b602082019050919050565b6125358161295f565b82525050565b6125448161298d565b82525050565b6000612556828561232c565b915061256282846122fb565b91508190509392505050565b600060208201905061258360008301846122a4565b92915050565b600060208201905061259e60008301846122b3565b92915050565b600060208201905081810360008301526125be81846122c2565b905092915050565b600060208201905081810360008301526125df816123ab565b9050919050565b600060208201905081810360008301526125ff816123ce565b9050919050565b6000602082019050818103600083015261261f816123f1565b9050919050565b6000602082019050818103600083015261263f81612414565b9050919050565b6000602082019050818103600083015261265f81612437565b9050919050565b6000602082019050818103600083015261267f8161245a565b9050919050565b6000602082019050818103600083015261269f8161247d565b9050919050565b600060208201905081810360008301526126bf816124a0565b9050919050565b600060208201905081810360008301526126df816124c3565b9050919050565b600060208201905081810360008301526126ff816124e6565b9050919050565b6000602082019050818103600083015261271f81612509565b9050919050565b600060208201905061273b600083018461252c565b92915050565b6000602082019050612756600083018461253b565b92915050565b6000612766612777565b90506127728282612a0b565b919050565b6000604051905090565b600067ffffffffffffffff82111561279c5761279b612b43565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156127c8576127c7612b43565b5b6127d182612b72565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006128258261298d565b91506128308361298d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561286557612864612ab6565b5b828201905092915050565b600061287b8261298d565b91506128868361298d565b92508261289657612895612ae5565b5b828204905092915050565b60006128ac8261298d565b91506128b78361298d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156128f0576128ef612ab6565b5b828202905092915050565b60006129068261298d565b91506129118361298d565b92508282101561292457612923612ab6565b5b828203905092915050565b600061293a8261296d565b9050919050565b60008115159050919050565b60006129588261292f565b9050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156129c45780820151818401526020810190506129a9565b838111156129d3576000848401525b50505050565b600060028204905060018216806129f157607f821691505b60208210811415612a0557612a04612b14565b5b50919050565b612a1482612b72565b810181811067ffffffffffffffff82111715612a3357612a32612b43565b5b80604052505050565b6000612a478261298d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a7a57612a79612ab6565b5b600182019050919050565b6000612a908261298d565b9150612a9b8361298d565b925082612aab57612aaa612ae5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265206e6f742077686974656c697374656420666f72207072652d7360008201527f616c652e00000000000000000000000000000000000000000000000000000000602082015250565b7f596f752073686f756c64206f776e2074686973206475636b20696e206f72646560008201527f7220746f207573652069742e0000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204e46547320696e2073746f636b0000000000000000600082015250565b7f4e6f2070726573616c6520676f696e67206f6e20617420746865206d6f6d656e60008201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f75206a7573742077617374656420676173206f6e20747279696e6720746f60008201527f207769746864726177206e6164612e2e2e000000000000000000000000000000602082015250565b7f557020746f2035204e4654732063616e2062652070757263686173656420696e60008201527f207468652070726573616c652e00000000000000000000000000000000000000602082015250565b7f416c7265616479206d696e7465642066726f6d2074686973206475636b000000600082015250565b7f596f75206e65656420746f20706179207468652065786163742070726963652e600082015250565b7f4f6e6c7920757020746f203135204e465420706572206f776e65720000000000600082015250565b612e338161292f565b8114612e3e57600080fd5b50565b612e4a81612941565b8114612e5557600080fd5b50565b612e618161294d565b8114612e6c57600080fd5b50565b612e788161295f565b8114612e8357600080fd5b50565b612e8f8161298d565b8114612e9a57600080fd5b5056fea2646970667358221220d4dc4c12f7183ef813af2c83ac4d184596eb50a941166b5c1c677c4bb52002e164736f6c63430008040033000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000007006f401923f5753c53c11ac95bca98db8e190610000000000000000000000001faddf0fbfb789cf70b32d28bbd8c04566fd0a95
Deployed Bytecode
0x60806040526004361061019c5760003560e01c806394bf804d116100ec578063cbd7407e1161008a578063e6ab143411610064578063e6ab143414610592578063e985e9c5146105ae578063eb8835ab146105eb578063f2fde38b146106285761019c565b8063cbd7407e146104ff578063cd7c03261461053c578063de13810e146105675761019c565b8063a0bcfc7f116100c6578063a0bcfc7f14610443578063c311c5231461046c578063c6e62e0b14610497578063c87b56dd146104c25761019c565b806394bf804d146103c6578063952bd074146103ef57806395d89b41146104185761019c565b80635dd871a3116101595780636352211e116101335780636352211e1461031c5780636c0360eb14610359578063715018a6146103845780638da5cb5b1461039b5761019c565b80635dd871a31461028d57806362b51485146102ca57806362bf3863146102f35761019c565b806306fdde03146101a157806323b872dd146101cc578063249b7c19146101f55780633ccfd60b146102205780634b97aed9146102375780635bf8633a14610262575b600080fd5b3480156101ad57600080fd5b506101b6610651565b6040516101c391906125a4565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee919061208e565b61068e565b005b34801561020157600080fd5b5061020a61069d565b6040516102179190612741565b60405180910390f35b34801561022c57600080fd5b506102356106a3565b005b34801561024357600080fd5b5061024c6107b2565b6040516102599190612741565b60405180910390f35b34801561026e57600080fd5b506102776107bc565b604051610284919061256e565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906121da565b6107e2565b6040516102c19190612589565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec91906121b1565b6108f4565b005b3480156102ff57600080fd5b5061031a600480360381019061031591906120dd565b610bf7565b005b34801561032857600080fd5b50610343600480360381019061033e91906121da565b610d2e565b604051610350919061256e565b60405180910390f35b34801561036557600080fd5b5061036e610d3f565b60405161037b91906125a4565b60405180910390f35b34801561039057600080fd5b50610399610dcd565b005b3480156103a757600080fd5b506103b0610e55565b6040516103bd919061256e565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e8919061222c565b610e7e565b005b3480156103fb57600080fd5b5061041660048036038101906104119190612268565b6111f8565b005b34801561042457600080fd5b5061042d611286565b60405161043a91906125a4565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190612170565b6112c3565b005b34801561047857600080fd5b50610481611359565b60405161048e9190612589565b60405180910390f35b3480156104a357600080fd5b506104ac611362565b6040516104b99190612741565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906121da565b611368565b6040516104f691906125a4565b60405180910390f35b34801561050b57600080fd5b50610526600480360381019061052191906121b1565b61139c565b6040516105339190612589565b60405180910390f35b34801561054857600080fd5b506105516113bc565b60405161055e919061256e565b60405180910390f35b34801561057357600080fd5b5061057c6113e2565b604051610589919061256e565b60405180910390f35b6105ac60048036038101906105a791906121da565b611408565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190612052565b6117a6565b6040516105e29190612589565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612029565b61195a565b60405161061f9190612589565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190612029565b61197a565b005b60606040518060400160405280601481526020017f536563726574204167656e742041636164656d79000000000000000000000000815250905090565b6106988183610e7e565b505050565b60085481565b6106ab611a19565b73ffffffffffffffffffffffffffffffffffffffff166106c9610e55565b73ffffffffffffffffffffffffffffffffffffffff161461071f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071690612666565b60405180910390fd5b60004711610762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075990612686565b60405180910390fd5b61076a610e55565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156107af573d6000803e3d6000fd5b50565b6000600a54905090565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a5482106107f657600090506108ef565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561086557600080fd5b505afa158015610879573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089d9190612203565b90506000600b548514156108b457600190506108d8565b600c548514156108c757600590506108d7565b600d548514156108d657600a90505b5b5b806009546108e691906128fb565b82111593505050505b919050565b600160008261ffff1661ffff16815260200190815260200160002060009054906101000a900460ff161561095d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610954906126c6565b60405180910390fd5b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663de6b8030836040518263ffffffff1660e01b81526004016109bd9190612726565b60206040518083038186803b1580156109d557600080fd5b505afa1580156109e9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0d919061211e565b610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390612606565b60405180910390fd5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000610a7d611a19565b905060008273ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ac757600080fd5b505afa158015610adb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aff9190612203565b90506001600954610b1091906128fb565b811115610b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4990612626565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663755edd17836040518263ffffffff1660e01b8152600401610b8b919061256e565b600060405180830381600087803b158015610ba557600080fd5b505af1158015610bb9573d6000803e3d6000fd5b5050505060018060008761ffff1661ffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b610bff611a19565b73ffffffffffffffffffffffffffffffffffffffff16610c1d610e55565b73ffffffffffffffffffffffffffffffffffffffff1614610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90612666565b60405180910390fd5b60005b8151811015610d2a57600160026000848481518110610cbe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d2290612a3c565b915050610c76565b5050565b6000610d38610e55565b9050919050565b60068054610d4c906129d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610d78906129d9565b8015610dc55780601f10610d9a57610100808354040283529160200191610dc5565b820191906000526020600020905b815481529060010190602001808311610da857829003601f168201915b505050505081565b610dd5611a19565b73ffffffffffffffffffffffffffffffffffffffff16610df3610e55565b73ffffffffffffffffffffffffffffffffffffffff1614610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090612666565b60405180910390fd5b610e536000611a21565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050610ead611a19565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791610ee7610e55565b6040518263ffffffff1660e01b8152600401610f03919061256e565b60206040518083038186803b158015610f1b57600080fd5b505afa158015610f2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f539190612147565b73ffffffffffffffffffffffffffffffffffffffff161480610fae5750610f78611a19565b73ffffffffffffffffffffffffffffffffffffffff16610f96610e55565b73ffffffffffffffffffffffffffffffffffffffff16145b610fe1577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b610fea836107e2565b610ff357600080fd5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600b5485141561102f5760019050611053565b600c548514156110425760059050611052565b600d5485141561105157600a90505b5b5b61105b610e55565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111285750600f818373ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b81526004016110cb919061256e565b60206040518083038186803b1580156110e357600080fd5b505afa1580156110f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111b9190612203565b611125919061281a565b11155b611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90612706565b60405180910390fd5b60005b818110156111f0578273ffffffffffffffffffffffffffffffffffffffff1663755edd17866040518263ffffffff1660e01b81526004016111ab919061256e565b600060405180830381600087803b1580156111c557600080fd5b505af11580156111d9573d6000803e3d6000fd5b5050505080806111e890612a3c565b91505061116a565b505050505050565b611200611a19565b73ffffffffffffffffffffffffffffffffffffffff1661121e610e55565b73ffffffffffffffffffffffffffffffffffffffff1614611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90612666565b60405180910390fd5b81600781905550806008819055505050565b60606040518060400160405280600381526020017f5341410000000000000000000000000000000000000000000000000000000000815250905090565b6112cb611a19565b73ffffffffffffffffffffffffffffffffffffffff166112e9610e55565b73ffffffffffffffffffffffffffffffffffffffff161461133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690612666565b60405180910390fd5b8060069080519060200190611355929190611e0a565b5050565b60006001905090565b60075481565b6060600661137583611ae5565b60405160200161138692919061254a565b6040516020818303038152906040529050919050565b60016020528060005260406000206000915054906101000a900460ff1681565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b906125e6565b60405180910390fd5b60075442101580156114a7575060085442105b6114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd90612646565b60405180910390fd5b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000611517611a19565b905060058273ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611554919061256e565b60206040518083038186803b15801561156c57600080fd5b505afa158015611580573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a49190612203565b846115af919061281a565b11156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e7906126a6565b60405180910390fd5b669fdf42f6e480008361160391906128a1565b3414611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b906126e6565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561168c57600080fd5b505afa1580156116a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c49190612203565b9050836009546116d491906128fb565b811115611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90612626565b60405180910390fd5b60005b8481101561179f578373ffffffffffffffffffffffffffffffffffffffff1663755edd17846040518263ffffffff1660e01b815260040161175a919061256e565b600060405180830381600087803b15801561177457600080fd5b505af1158015611788573d6000803e3d6000fd5b50505050808061179790612a3c565b915050611719565b5050505050565b60008273ffffffffffffffffffffffffffffffffffffffff166117c7610e55565b73ffffffffffffffffffffffffffffffffffffffff1614801561181557508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156118235760019050611954565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508373ffffffffffffffffffffffffffffffffffffffff16611869610e55565b73ffffffffffffffffffffffffffffffffffffffff1614801561193f57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016118d7919061256e565b60206040518083038186803b1580156118ef57600080fd5b505afa158015611903573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119279190612147565b73ffffffffffffffffffffffffffffffffffffffff16145b1561194e576001915050611954565b60009150505b92915050565b60026020528060005260406000206000915054906101000a900460ff1681565b611982611a19565b73ffffffffffffffffffffffffffffffffffffffff166119a0610e55565b73ffffffffffffffffffffffffffffffffffffffff16146119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed90612666565b60405180910390fd5b6000611a00610e55565b9050611a0b82611c92565b611a158183611d8a565b5050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606000821415611b2d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c8d565b600082905060005b60008214611b5f578080611b4890612a3c565b915050600a82611b589190612870565b9150611b35565b60008167ffffffffffffffff811115611ba1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611bd35781602001600182028036833780820191505090505b5090505b60008514611c8657600182611bec91906128fb565b9150600a85611bfb9190612a85565b6030611c07919061281a565b60f81b818381518110611c43577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c7f9190612870565b9450611bd7565b8093505050505b919050565b611c9a611a19565b73ffffffffffffffffffffffffffffffffffffffff16611cb8610e55565b73ffffffffffffffffffffffffffffffffffffffff1614611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590612666565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d75906125c6565b60405180910390fd5b611d8781611a21565b50565b60005b600a54811015611e0557808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48080611dfd90612a3c565b915050611d8d565b505050565b828054611e16906129d9565b90600052602060002090601f016020900481019282611e385760008555611e7f565b82601f10611e5157805160ff1916838001178555611e7f565b82800160010185558215611e7f579182015b82811115611e7e578251825591602001919060010190611e63565b5b509050611e8c9190611e90565b5090565b5b80821115611ea9576000816000905550600101611e91565b5090565b6000611ec0611ebb84612781565b61275c565b90508083825260208201905082856020860282011115611edf57600080fd5b60005b85811015611f0f5781611ef58882611f57565b845260208401935060208301925050600181019050611ee2565b5050509392505050565b6000611f2c611f27846127ad565b61275c565b905082815260208101848484011115611f4457600080fd5b611f4f848285612997565b509392505050565b600081359050611f6681612e2a565b92915050565b600082601f830112611f7d57600080fd5b8135611f8d848260208601611ead565b91505092915050565b600081519050611fa581612e41565b92915050565b600081519050611fba81612e58565b92915050565b600082601f830112611fd157600080fd5b8135611fe1848260208601611f19565b91505092915050565b600081359050611ff981612e6f565b92915050565b60008135905061200e81612e86565b92915050565b60008151905061202381612e86565b92915050565b60006020828403121561203b57600080fd5b600061204984828501611f57565b91505092915050565b6000806040838503121561206557600080fd5b600061207385828601611f57565b925050602061208485828601611f57565b9150509250929050565b6000806000606084860312156120a357600080fd5b60006120b186828701611f57565b93505060206120c286828701611f57565b92505060406120d386828701611fff565b9150509250925092565b6000602082840312156120ef57600080fd5b600082013567ffffffffffffffff81111561210957600080fd5b61211584828501611f6c565b91505092915050565b60006020828403121561213057600080fd5b600061213e84828501611f96565b91505092915050565b60006020828403121561215957600080fd5b600061216784828501611fab565b91505092915050565b60006020828403121561218257600080fd5b600082013567ffffffffffffffff81111561219c57600080fd5b6121a884828501611fc0565b91505092915050565b6000602082840312156121c357600080fd5b60006121d184828501611fea565b91505092915050565b6000602082840312156121ec57600080fd5b60006121fa84828501611fff565b91505092915050565b60006020828403121561221557600080fd5b600061222384828501612014565b91505092915050565b6000806040838503121561223f57600080fd5b600061224d85828601611fff565b925050602061225e85828601611f57565b9150509250929050565b6000806040838503121561227b57600080fd5b600061228985828601611fff565b925050602061229a85828601611fff565b9150509250929050565b6122ad8161292f565b82525050565b6122bc81612941565b82525050565b60006122cd826127f3565b6122d781856127fe565b93506122e78185602086016129a6565b6122f081612b72565b840191505092915050565b6000612306826127f3565b612310818561280f565b93506123208185602086016129a6565b80840191505092915050565b60008154612339816129d9565b612343818661280f565b9450600182166000811461235e576001811461236f576123a2565b60ff198316865281860193506123a2565b612378856127de565b60005b8381101561239a5781548189015260018201915060208101905061237b565b838801955050505b50505092915050565b60006123b86026836127fe565b91506123c382612b83565b604082019050919050565b60006123db6024836127fe565b91506123e682612bd2565b604082019050919050565b60006123fe602c836127fe565b915061240982612c21565b604082019050919050565b60006124216018836127fe565b915061242c82612c70565b602082019050919050565b60006124446022836127fe565b915061244f82612c99565b604082019050919050565b60006124676020836127fe565b915061247282612ce8565b602082019050919050565b600061248a6031836127fe565b915061249582612d11565b604082019050919050565b60006124ad602d836127fe565b91506124b882612d60565b604082019050919050565b60006124d0601d836127fe565b91506124db82612daf565b602082019050919050565b60006124f36020836127fe565b91506124fe82612dd8565b602082019050919050565b6000612516601b836127fe565b915061252182612e01565b602082019050919050565b6125358161295f565b82525050565b6125448161298d565b82525050565b6000612556828561232c565b915061256282846122fb565b91508190509392505050565b600060208201905061258360008301846122a4565b92915050565b600060208201905061259e60008301846122b3565b92915050565b600060208201905081810360008301526125be81846122c2565b905092915050565b600060208201905081810360008301526125df816123ab565b9050919050565b600060208201905081810360008301526125ff816123ce565b9050919050565b6000602082019050818103600083015261261f816123f1565b9050919050565b6000602082019050818103600083015261263f81612414565b9050919050565b6000602082019050818103600083015261265f81612437565b9050919050565b6000602082019050818103600083015261267f8161245a565b9050919050565b6000602082019050818103600083015261269f8161247d565b9050919050565b600060208201905081810360008301526126bf816124a0565b9050919050565b600060208201905081810360008301526126df816124c3565b9050919050565b600060208201905081810360008301526126ff816124e6565b9050919050565b6000602082019050818103600083015261271f81612509565b9050919050565b600060208201905061273b600083018461252c565b92915050565b6000602082019050612756600083018461253b565b92915050565b6000612766612777565b90506127728282612a0b565b919050565b6000604051905090565b600067ffffffffffffffff82111561279c5761279b612b43565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156127c8576127c7612b43565b5b6127d182612b72565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006128258261298d565b91506128308361298d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561286557612864612ab6565b5b828201905092915050565b600061287b8261298d565b91506128868361298d565b92508261289657612895612ae5565b5b828204905092915050565b60006128ac8261298d565b91506128b78361298d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156128f0576128ef612ab6565b5b828202905092915050565b60006129068261298d565b91506129118361298d565b92508282101561292457612923612ab6565b5b828203905092915050565b600061293a8261296d565b9050919050565b60008115159050919050565b60006129588261292f565b9050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156129c45780820151818401526020810190506129a9565b838111156129d3576000848401525b50505050565b600060028204905060018216806129f157607f821691505b60208210811415612a0557612a04612b14565b5b50919050565b612a1482612b72565b810181811067ffffffffffffffff82111715612a3357612a32612b43565b5b80604052505050565b6000612a478261298d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a7a57612a79612ab6565b5b600182019050919050565b6000612a908261298d565b9150612a9b8361298d565b925082612aab57612aaa612ae5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265206e6f742077686974656c697374656420666f72207072652d7360008201527f616c652e00000000000000000000000000000000000000000000000000000000602082015250565b7f596f752073686f756c64206f776e2074686973206475636b20696e206f72646560008201527f7220746f207573652069742e0000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204e46547320696e2073746f636b0000000000000000600082015250565b7f4e6f2070726573616c6520676f696e67206f6e20617420746865206d6f6d656e60008201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f75206a7573742077617374656420676173206f6e20747279696e6720746f60008201527f207769746864726177206e6164612e2e2e000000000000000000000000000000602082015250565b7f557020746f2035204e4654732063616e2062652070757263686173656420696e60008201527f207468652070726573616c652e00000000000000000000000000000000000000602082015250565b7f416c7265616479206d696e7465642066726f6d2074686973206475636b000000600082015250565b7f596f75206e65656420746f20706179207468652065786163742070726963652e600082015250565b7f4f6e6c7920757020746f203135204e465420706572206f776e65720000000000600082015250565b612e338161292f565b8114612e3e57600080fd5b50565b612e4a81612941565b8114612e5557600080fd5b50565b612e618161294d565b8114612e6c57600080fd5b50565b612e788161295f565b8114612e8357600080fd5b50565b612e8f8161298d565b8114612e9a57600080fd5b5056fea2646970667358221220d4dc4c12f7183ef813af2c83ac4d184596eb50a941166b5c1c677c4bb52002e164736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000007006f401923f5753c53c11ac95bca98db8e190610000000000000000000000001faddf0fbfb789cf70b32d28bbd8c04566fd0a95
-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [1] : _nftAddress (address): 0x7006F401923F5753c53c11ac95BCa98DB8E19061
Arg [2] : _duckOwnerProxyAdress (address): 0x1fADdF0FBFb789cF70B32d28bBd8c04566FD0a95
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [1] : 0000000000000000000000007006f401923f5753c53c11ac95bca98db8e19061
Arg [2] : 0000000000000000000000001faddf0fbfb789cf70b32d28bbd8c04566fd0a95
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.