ERC-721
NFT
Overview
Max Total Supply
630 TS
Holders
271
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TradeSquads
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.7.6; pragma abicoder v2; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./Pausable.sol"; contract TradeSquads is ERC721, Ownable, Pausable { event paymentReceived(address indexed _payer, uint256 _value); event nftMinted(uint256 indexed _series, uint256 indexed _tokenId, address indexed _owner, uint256 _time, uint256 _rnd); using SafeMath for uint256; using Counters for Counters.Counter; using Strings for uint256; uint256 constant maxTraitNumber = 7; uint256 constant maxTraitRange = 10; uint256 constant secs = 86400; uint256[maxTraitRange] public traitRange; mapping(uint256 => uint256) traitRangeIndexVal; uint256 public rangeNumber; uint256 public traitNumber; uint256 public claimVal ; string public endpoint ; uint256 public deltaHierarchy; address public uniqueClaimerA; Counters.Counter private _tokenIds; Counters.Counter private _seriesCounter; struct Series { Counters.Counter currentSupply; uint256 maxSupply; bool enabled; } struct TokenDetail { uint256 tokenSeriesIndex ; string tokenName; uint256 rNumber; uint256 delta; uint256 rangeN; uint256 traitN; uint256 difficulty; uint256 timestamp; uint256 hierarchySerial; uint256 tokenId; } struct ReqInfo { address owner; uint256 tokenId; uint256 series; } mapping(uint256 => uint256) traitArr; mapping(uint256 => Counters.Counter) hierarchyCounter; mapping(uint256 => TokenDetail) tokenDetail; Series[] public series; constructor(string memory _endpoint) ERC721( "TradeSquad", "TS" ) public { endpoint = _endpoint; series.push(Series(Counters.Counter(0),0,false)); _seriesCounter.increment(); series.push(Series(Counters.Counter(0),1,true)); traitNumber = 7; deltaHierarchy = 0; rangeNumber = 4; traitArr[0] = 10; traitArr[1] = 10; traitArr[2] = 10; traitArr[3] = 10; traitArr[4] = 10; traitArr[5] = 10; traitArr[6] = 10; traitRange[0] = 2; traitRangeIndexVal[0] = 9; traitRange[1] = 7; traitRangeIndexVal[1] = 8; traitRange[2] = 14; traitRangeIndexVal[2] = 7; traitRange[3] = 22; traitRangeIndexVal[3] = 6; traitRange[4] = 32; traitRangeIndexVal[4] = 5; traitRange[5] = 43; traitRangeIndexVal[5] = 4; traitRange[6] = 55; traitRangeIndexVal[6] = 3; traitRange[7] = 68; traitRangeIndexVal[7] = 2; traitRange[8] = 83; traitRangeIndexVal[8] = 1; traitRange[9] = 99; traitRangeIndexVal[9] = 0; claimVal=100000000000000000; } receive() external payable { emit paymentReceived(msg.sender, msg.value); } function awardItem(uint256 _series, bool _unique) isPaused payable public { uint t=0; if(_unique) { require(_series==0 && series[_series].enabled && series[_series].currentSupply.current()<series[_series].maxSupply && msg.sender==uniqueClaimerA, "Can't award unique item"); _tokenIds.increment(); series[_series].currentSupply.increment(); tokenDetail[_tokenIds.current()] = TokenDetail(_series, "", 0, 0, 0, 0, 0, 0, 0, _tokenIds.current()); emit nftMinted(_series, _tokenIds.current(), msg.sender, (block.timestamp-(block.timestamp%secs)), 0); _safeMint(msg.sender, _tokenIds.current()); _setTokenURI(_tokenIds.current(), string(abi.encodePacked(endpoint, _tokenIds.current().toString()))); uniqueClaimerA = address(0); } else { require(msg.value>=claimVal && _series>0 && series[_series].enabled && series[_series].currentSupply.current() < series[_series].maxSupply, "Can't award item"); _tokenIds.increment(); tokenDetail[_tokenIds.current()] = TokenDetail(0, "", 0, 0, 0, 0, 0, 0, 0, _tokenIds.current()); series[_series].currentSupply.increment(); tokenDetail[_tokenIds.current()].tokenSeriesIndex = _series; tokenDetail[_tokenIds.current()].rNumber = uint256(keccak256(abi.encodePacked(block.difficulty, msg.sender, block.timestamp))).div(_tokenIds.current()); tokenDetail[_tokenIds.current()].delta = deltaHierarchy ; tokenDetail[_tokenIds.current()].difficulty = block.difficulty ; tokenDetail[_tokenIds.current()].timestamp = block.timestamp ; tokenDetail[_tokenIds.current()].rangeN = rangeNumber ; tokenDetail[_tokenIds.current()].traitN = traitNumber ; if(tokenDetail[_tokenIds.current()].rangeN==0) { t = tokenDetail[_tokenIds.current()].rNumber.mod(traitArr[0]); t = t.add(tokenDetail[_tokenIds.current()].delta); hierarchyCounter[t].increment(); } else { uint256 j=0; bool flag=false; t = tokenDetail[_tokenIds.current()].rNumber.mod(100); while(flag==false) { if(j==maxTraitRange) { t = t.mod(traitArr[0]); flag=true; } else { if(j==0) { if(t>=0 && t<=traitRange[j]) { t = traitRangeIndexVal[j]; flag = true; } } else { if(t>traitRange[j.sub(1)] && t<=traitRange[j]) { t = traitRangeIndexVal[j]; flag = true; } } } j++; } t = t.add(deltaHierarchy); hierarchyCounter[t].increment(); } tokenDetail[_tokenIds.current()].hierarchySerial = hierarchyCounter[t].current(); emit nftMinted(_series, _tokenIds.current(), msg.sender, (block.timestamp-(block.timestamp%secs)), tokenDetail[_tokenIds.current()].rNumber); _safeMint(msg.sender, _tokenIds.current()); _setTokenURI(_tokenIds.current(), string(abi.encodePacked(endpoint, _tokenIds.current().toString()))); } } function setClaimVal(uint256 _value) public onlyOwner isPaused { claimVal = _value; } function setClaimer(address _claimer) public onlyOwner isPaused { uniqueClaimerA = _claimer; } function setDeltaHierarchy(uint256 _delta) public onlyOwner isPaused { require(_delta>=0, "Must be higher than 0"); deltaHierarchy = _delta; } function setRangeNumber(uint256 _rangeNumber) public onlyOwner isPaused { require(_rangeNumber>=0 && _rangeNumber<=maxTraitRange, "Must be higher or equal 0"); rangeNumber = _rangeNumber ; } function setRange(uint256 _range, uint256 _rangeVal, uint256 _type) public onlyOwner isPaused { require(_range>=0 && _range<maxTraitRange, "This trait doesn't exist"); traitRange[_range] = _type; traitRangeIndexVal[_range] = _rangeVal; } function setTraitNumber(uint256 _traitNumber) public onlyOwner isPaused { require(_traitNumber>0 && _traitNumber<=maxTraitNumber, "Must be higher than 0"); traitNumber = _traitNumber ; } function setTrait(uint256 _trait, uint256 _type) public onlyOwner isPaused { require(_trait>=0 && _trait<maxTraitNumber, "This trait doesn't exist"); traitArr[_trait] = _type; } function setName(uint256 _tokenId, string memory _name) public { require(ownerOf(_tokenId)==msg.sender, "Not owner"); require(bytes(_name).length<=32, "max string length"); tokenDetail[_tokenId].tokenName = _name; } function addSeries(uint256 _maxSupply) public onlyOwner isPaused { require(_maxSupply>=0, "Must be higher or equal 0"); _seriesCounter.increment(); series.push(Series(Counters.Counter(0),_maxSupply,true)); } function setSupply(uint256 _series, uint256 _supply) public onlyOwner isPaused { require(_supply>series[_series].maxSupply, "Supply error"); series[_series].maxSupply = _supply; } function handleSeries(uint256 _seriesIndex, bool _enabled) public onlyOwner isPaused { series[_seriesIndex].enabled = _enabled; } function assetTrait(uint256 _tokenId) public view returns(TokenDetail memory, uint256[maxTraitNumber] memory) { uint256 i=0; uint256 nRandRes; uint256[maxTraitNumber] memory tArr; tArr[i] = tokenDetail[_tokenId].rNumber.mod(traitArr[i]); if(tokenDetail[_tokenId].rangeN==0) { nRandRes = uint256(keccak256(abi.encodePacked(tokenDetail[_tokenId].rNumber))); for(i=1; i<tokenDetail[_tokenId].traitN; i++) { tArr[i] = nRandRes.mod(traitArr[i]); tArr[i] = tArr[i].add(tokenDetail[_tokenId].delta); nRandRes = uint256(keccak256(abi.encodePacked(nRandRes))); } } else { uint256 j=0; bool flag=false; tArr[i] = tokenDetail[_tokenId].rNumber.mod(100); while(flag==false) { if(j==maxTraitRange) { tArr[i] = tArr[i].mod(traitArr[i]); flag=true; } else { if(j==0) { if(tArr[i]>=0 && tArr[i]<=traitRange[j]) { tArr[i] = traitRangeIndexVal[j]; flag = true; } } else { if(tArr[i]>traitRange[j.sub(1)] && tArr[i]<=traitRange[j]) { tArr[i] = traitRangeIndexVal[j]; flag = true; } } } j++; } tArr[i] = tArr[i].add(tokenDetail[_tokenId].delta); nRandRes = uint256(keccak256(abi.encodePacked(tokenDetail[_tokenId].rNumber))); for(i=1; i<tokenDetail[_tokenId].traitN; i++) { if(i<rangeNumber) { tArr[i] = nRandRes.mod(100); j=0; flag=false; while(flag==false) { if(j==maxTraitRange) { tArr[i] = tArr[i].mod(traitArr[i]); flag=true; } else { if(j==0) { if(tArr[i]>=0 && tArr[i]<=traitRange[j]) { tArr[i] = traitRangeIndexVal[j]; flag = true; } } else { if(tArr[i]>traitRange[j.sub(1)] && tArr[i]<=traitRange[j]) { tArr[i] = traitRangeIndexVal[j]; flag = true; } } } j++; } } else { tArr[i] = nRandRes.mod(traitArr[i]); } tArr[i] = tArr[i].add(tokenDetail[_tokenId].delta); nRandRes = uint256(keccak256(abi.encodePacked(nRandRes))); } } return(tokenDetail[_tokenId], tArr); } function seriesCount() public view returns(uint256) { return _seriesCounter.current(); } function hierarchyCount(uint256 _hierarchyId) public view returns(uint256) { return hierarchyCounter[_hierarchyId].current(); } function seriesByIndex(uint256 _index) public view returns(Series memory) { return series[_index]; } function getVaultBalance() public view onlyOwner isPaused returns(uint256) { return address(this).balance; } function sendVaultBalance(uint256 _amount, address payable _receiver) public onlyOwner isPaused { require(address(this).balance>= _amount, "Not enought WEI"); _receiver.transfer(_amount); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; contract Pausable is Ownable { bool public pause; constructor() public { pause = false; } function setPauseStatus(bool _pauseStatus) public onlyOwner { pause = _pauseStatus; } modifier isPaused() { require(pause==false, "The system is paused"); _; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../../GSN/Context.sol"; import "./IERC721.sol"; import "./IERC721Metadata.sol"; import "./IERC721Enumerable.sol"; import "./IERC721Receiver.sol"; import "../../introspection/ERC165.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; import "../../utils/EnumerableSet.sol"; import "../../utils/EnumerableMap.sol"; import "../../utils/Strings.sol"; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // 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; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev See {IERC721Metadata-name}. */ function name() public view override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; // If there is no base URI, return the token URI. if (bytes(_baseURI).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(_baseURI, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(_baseURI, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = 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 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 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 returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `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); _holderTokens[to].add(tokenId); _tokenOwners.set(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 = ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(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(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); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @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()) { return true; } bytes memory returndata = to.functionCall(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data ), "ERC721: transfer to non ERC721Receiver implementer"); bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } function _approve(address to, uint256 tokenId) private { _tokenApprovals[tokenId] = to; emit Approval(ownerOf(tokenId), to, tokenId); } /** * @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 { } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; import "../../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.6.0 <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.6.2 <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.6.2 <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.6.0 <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.6.0 <0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping (bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({ _key: key, _value: value })); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require(map._entries.length > index, "EnumerableMap: index out of bounds"); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { return _get(map, key, "EnumerableMap: nonexistent key"); } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. */ function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element stored at position `index` in the set. O(1). * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint256(value))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint256(_get(map._inner, bytes32(key)))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint256(_get(map._inner, bytes32(key), errorMessage))); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` 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); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = byte(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../GSN/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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../math/SafeMath.sol"; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath} * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never * directly accessed. */ library Counters { using SafeMath for uint256; struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { // The {SafeMath} overflow check can be skipped here, see the comment at the top counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } }
{ "metadata": { "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 9999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_endpoint","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_series","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"_time","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_rnd","type":"uint256"}],"name":"nftMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_payer","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"paymentReceived","type":"event"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"addSeries","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"assetTrait","outputs":[{"components":[{"internalType":"uint256","name":"tokenSeriesIndex","type":"uint256"},{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"uint256","name":"rNumber","type":"uint256"},{"internalType":"uint256","name":"delta","type":"uint256"},{"internalType":"uint256","name":"rangeN","type":"uint256"},{"internalType":"uint256","name":"traitN","type":"uint256"},{"internalType":"uint256","name":"difficulty","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"hierarchySerial","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"internalType":"struct TradeSquads.TokenDetail","name":"","type":"tuple"},{"internalType":"uint256[7]","name":"","type":"uint256[7]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_series","type":"uint256"},{"internalType":"bool","name":"_unique","type":"bool"}],"name":"awardItem","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimVal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deltaHierarchy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endpoint","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getVaultBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_seriesIndex","type":"uint256"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"handleSeries","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hierarchyId","type":"uint256"}],"name":"hierarchyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rangeNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"_receiver","type":"address"}],"name":"sendVaultBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"series","outputs":[{"components":[{"internalType":"uint256","name":"_value","type":"uint256"}],"internalType":"struct Counters.Counter","name":"currentSupply","type":"tuple"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"bool","name":"enabled","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"seriesByIndex","outputs":[{"components":[{"components":[{"internalType":"uint256","name":"_value","type":"uint256"}],"internalType":"struct Counters.Counter","name":"currentSupply","type":"tuple"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"bool","name":"enabled","type":"bool"}],"internalType":"struct TradeSquads.Series","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"seriesCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setClaimVal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_claimer","type":"address"}],"name":"setClaimer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_delta","type":"uint256"}],"name":"setDeltaHierarchy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pauseStatus","type":"bool"}],"name":"setPauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_range","type":"uint256"},{"internalType":"uint256","name":"_rangeVal","type":"uint256"},{"internalType":"uint256","name":"_type","type":"uint256"}],"name":"setRange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rangeNumber","type":"uint256"}],"name":"setRangeNumber","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_series","type":"uint256"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_trait","type":"uint256"},{"internalType":"uint256","name":"_type","type":"uint256"}],"name":"setTrait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_traitNumber","type":"uint256"}],"name":"setTraitNumber","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"traitNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"traitRange","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniqueClaimerA","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620056893803806200568983398101604081905262000034916200068e565b604080518082018252600a815269151c98591954dc5d585960b21b60208083019190915282518084019093526002835261545360f01b9083015290620000816301ffc9a760e01b62000550565b815162000096906006906020850190620005e2565b508051620000ac906007906020840190620005e2565b50620000bf6380ac58cd60e01b62000550565b620000d1635b5e139f60e01b62000550565b620000e363780e9d6360e01b62000550565b5060009050620000f2620005d5565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a805460ff60a01b19169055805162000162906019906020840190620005e2565b50604080516080810182526000606082018181528252602080830182815293830182815260218054600181018255935292515160008051602062005629833981519152600390930292830155925160008051602062005649833981519152820155905160008051602062005669833981519152909101805460ff1916911515919091179055620001fe90601d90620005d9811b6200332117901c565b5060408051608081018252600060608201818152825260016020808401828152948401828152602180548085018255908552945151600080516020620056298339815191526003968702908101919091559551600080516020620056498339815191528701555160008051602062005669833981519152909501805460ff19169515159590951790945560076017819055601a83905560046016818155600a7f65ce8396b736f5da9d881cc6fbcb11ef9721292dc41ec8c40879fd9edea5744d8190557f873299c6a6c39b8b92f01922bb622df4a3236ea2876aac2da76f6c092cf7e98f8190557f8a1ea6ccfdf9f988bdc16303c81231f9b192785454b34880c28e5c30362354c58190557f4bbb14a9b8bdd7baf7e45936eef68b1d3b69ec665e4d3d9f22d086627a2b08808190557f2eca6469c5988648711d819e241e59ec9e94a879e5d491ce337260f9e75414128190557f86d72ecda2f02015d839a182675ed983893a479e8f4279fb5498fd7244fa5dfe8190557f3b995de482df97a2c9d456eaddef4a2d8e37e8b7ceaa84df3200ae34890448f3556002600b8190556015885260097fa31547ce6245cdb9ecea19cf8c7eb9f5974025bb4075011409251ae855b30aed819055600c85905560087f27739e4bb5e6f8b5e4b57a047dca8767cc9b982a011081e086cbb0dfa9de818d55600e600d8190557f07d4ff730d9753101d832555708a37d38c2c45fce8cacaefc99f06074e93fe0b959095559190935560067fb3a65e8276bd33b3e4f7d6081ebd9899187264822358758dca2e2bc37b2a9c2755600f9690965560057f8191f4eb6b8bafbfe9a5389c8d07d7f5fd81137a7ee653fc4358269845ee1d2e55602b6010557fbab719002e4be320868650dc7456e9a1d245e4d5dd64765588e2f21529d871d35560376011557f25847c9ccf691da811a9f934d6b3b92e6062ef92feb71bf4cb08cbb4fad8d6529390935560446012557f5d0f48e37dc1225cdee8d6f2a0315d796f55423522fe638d7d95421802dfc0069290925560536013557f2d0e46a571fdfbe57c7c718891a8a12999c102dfffa2b3314ea165dedd1684f59190915560636014559081527f497613c0658032a90a449a944031c57b1d03996c3a6148fe12146c45cf3214005567016345785d8a00006018556200074d565b6001600160e01b03198082161415620005b0576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b80546001019055565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200061a576000855562000665565b82601f106200063557805160ff191683800117855562000665565b8280016001018555821562000665579182015b828111156200066557825182559160200191906001019062000648565b506200067392915062000677565b5090565b5b8082111562000673576000815560010162000678565b60006020808385031215620006a1578182fd5b82516001600160401b0380821115620006b8578384fd5b818501915085601f830112620006cc578384fd5b815181811115620006d957fe5b604051601f8201601f1916810185018381118282101715620006f757fe5b60405281815283820185018810156200070e578586fd5b8592505b8183101562000731578383018501518184018601529184019162000712565b818311156200074257858583830101525b979650505050505050565b614ecc806200075d6000396000f3fe6080604052600436106103175760003560e01c806395d89b411161019a578063cdfb5832116100e1578063f2fde38b1161008a578063fb6ff86511610064578063fb6ff865146108c8578063fc784d49146108db578063fe55932a146108fb5761035f565b8063f2fde38b1461087e578063f43295c31461089e578063f79afaba146108b35761035f565b8063dc22cb6a116100bb578063dc22cb6a1461081a578063e985e9c514610849578063ed12e8ef146108695761035f565b8063cdfb5832146107b7578063d07ce070146107d7578063d7f2c0ef146108055761035f565b8063bc9a4c4911610143578063c38bb5371161011d578063c38bb53714610757578063c3dcd5cd14610777578063c87b56dd146107975761035f565b8063bc9a4c4914610702578063bfd7ffe714610717578063c33b3dcd146107375761035f565b8063ad2d57a211610174578063ad2d57a2146106a2578063b5d9e6dd146106c2578063b88d4fde146106e25761035f565b806395d89b411461064d578063a22cb46514610662578063a41a6424146106825761035f565b806342842e0e1161025e578063715018a6116102075780638456cb59116101e15780638456cb59146106035780638da5cb5b1461061857806391448f6b1461062d5761035f565b8063715018a6146105ae578063773a4ae5146105c357806377b2521f146105e35761035f565b80636352211e116102385780636352211e146105595780636c0360eb1461057957806370a082311461058e5761035f565b806342842e0e146105045780634f6ccce7146105245780635e280f11146105445761035f565b80631b958ce3116102c05780633556dfa71161029a5780633556dfa7146104ba57806336f88cf8146104cf5780633dc48d70146104e45761035f565b80631b958ce31461044d57806323b872dd1461047a5780632f745c591461049a5761035f565b8063081812fc116102f1578063081812fc146103de578063095ea7b31461040b57806318160ddd1461042b5761035f565b806301ffc9a71461036457806303d809ba1461039a57806306fdde03146103bc5761035f565b3661035f57336001600160a01b03167f0de0271e0148b63e6b759917905b6ae5d995f6081392a30b9fa9e23bb4fb9871346040516103559190614870565b60405180910390a2005b600080fd5b34801561037057600080fd5b5061038461037f366004614640565b61091b565b60405161039191906148c8565b60405180910390f35b3480156103a657600080fd5b506103ba6103b5366004614680565b610956565b005b3480156103c857600080fd5b506103d1610a35565b60405161039191906148d3565b3480156103ea57600080fd5b506103fe6103f9366004614680565b610acb565b60405161039191906148b4565b34801561041757600080fd5b506103ba6104263660046145fb565b610b2d565b34801561043757600080fd5b50610440610c03565b6040516103919190614870565b34801561045957600080fd5b5061046d610468366004614680565b610c14565b6040516103919190614aee565b34801561048657600080fd5b506103ba61049536600461450a565b610c76565b3480156104a657600080fd5b506104406104b53660046145fb565b610ccd565b3480156104c657600080fd5b50610440610cf8565b3480156104db57600080fd5b50610440610cfe565b3480156104f057600080fd5b506104406104ff366004614680565b610d04565b34801561051057600080fd5b506103ba61051f36600461450a565b610d1b565b34801561053057600080fd5b5061044061053f366004614680565b610d36565b34801561055057600080fd5b506103d1610d4c565b34801561056557600080fd5b506103fe610574366004614680565b610dda565b34801561058557600080fd5b506103d1610e02565b34801561059a57600080fd5b506104406105a93660046144b6565b610e63565b3480156105ba57600080fd5b506103ba610ecb565b3480156105cf57600080fd5b506103ba6105de366004614680565b610f97565b3480156105ef57600080fd5b506103ba6105fe366004614757565b611084565b34801561060f57600080fd5b506103846111a1565b34801561062457600080fd5b506103fe6111c2565b34801561063957600080fd5b506103ba610648366004614680565b6111d1565b34801561065957600080fd5b506103d16112d1565b34801561066e57600080fd5b506103ba61067d3660046145c7565b611332565b34801561068e57600080fd5b506103ba61069d3660046146bc565b611455565b3480156106ae57600080fd5b506103ba6106bd366004614680565b611581565b3480156106ce57600080fd5b506103ba6106dd366004614680565b61173d565b3480156106ee57600080fd5b506103ba6106fd36600461454a565b611849565b34801561070e57600080fd5b506103fe6118a7565b34801561072357600080fd5b506103ba610732366004614698565b6118b6565b34801561074357600080fd5b506103ba610752366004614736565b6119e6565b34801561076357600080fd5b506103ba610772366004614626565b611af2565b34801561078357600080fd5b50610440610792366004614680565b611ba6565b3480156107a357600080fd5b506103d16107b2366004614680565b611bbd565b3480156107c357600080fd5b506103ba6107d23660046144b6565b611e62565b3480156107e357600080fd5b506107f76107f2366004614680565b611f76565b604051610391929190614b12565b34801561081157600080fd5b50610440612627565b34801561082657600080fd5b5061083a610835366004614680565b612633565b60405161039193929190614ad5565b34801561085557600080fd5b506103846108643660046144d2565b612676565b34801561087557600080fd5b506104406126a4565b34801561088a57600080fd5b506103ba6108993660046144b6565b612785565b3480156108aa57600080fd5b506104406128a8565b3480156108bf57600080fd5b506104406128ae565b6103ba6108d63660046146bc565b6128b4565b3480156108e757600080fd5b506103ba6108f6366004614736565b61316e565b34801561090757600080fd5b506103ba6109163660046146de565b6132ac565b7fffffffff00000000000000000000000000000000000000000000000000000000811660009081526020819052604090205460ff165b919050565b61095e61332a565b600a546001600160a01b039081169116146109c0576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff1615610a30576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b601855565b60068054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ac15780601f10610a9657610100808354040283529160200191610ac1565b820191906000526020600020905b815481529060010190602001808311610aa457829003601f168201915b5050505050905090565b6000610ad68261332e565b610b115760405162461bcd60e51b815260040180806020018281038252602c815260200180614d95602c913960400191505060405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b3882610dda565b9050806001600160a01b0316836001600160a01b03161415610b8b5760405162461bcd60e51b8152600401808060200182810382526021815260200180614e456021913960400191505060405180910390fd5b806001600160a01b0316610b9d61332a565b6001600160a01b03161480610bb95750610bb98161086461332a565b610bf45760405162461bcd60e51b8152600401808060200182810382526038815260200180614ce86038913960400191505060405180910390fd5b610bfe838361333b565b505050565b6000610c0f60026133c1565b905090565b610c1c6142f6565b60218281548110610c2957fe5b6000918252602091829020604080516080810182526003909302909101805460608401908152835260018101549383019390935260029092015460ff161515918101919091529050919050565b610c87610c8161332a565b826133cc565b610cc25760405162461bcd60e51b8152600401808060200182810382526031815260200180614e666031913960400191505060405180910390fd5b610bfe838383613470565b6001600160a01b0382166000908152600160205260408120610cef90836135bc565b90505b92915050565b60175481565b60165481565b6000818152601f60205260408120610cf2906135c8565b610bfe83838360405180602001604052806000815250611849565b600080610d446002846135cc565b509392505050565b6019805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610dd25780601f10610da757610100808354040283529160200191610dd2565b820191906000526020600020905b815481529060010190602001808311610db557829003601f168201915b505050505081565b6000610cf282604051806060016040528060298152602001614d4a60299139600291906135e8565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ac15780601f10610a9657610100808354040283529160200191610ac1565b60006001600160a01b038216610eaa5760405162461bcd60e51b815260040180806020018281038252602a815260200180614d20602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020610cf2906133c1565b610ed361332a565b600a546001600160a01b03908116911614610f35576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b610f9f61332a565b600a546001600160a01b03908116911614611001576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff1615611071576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b61107f565b60405180910390fd5b601a55565b61108c61332a565b600a546001600160a01b039081169116146110ee576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff161561115e576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b600a831061117e5760405162461bcd60e51b815260040161107690614a9e565b80600b84600a811061118c57fe5b01555060009182526015602052604090912055565b600a5474010000000000000000000000000000000000000000900460ff1681565b600a546001600160a01b031690565b6111d961332a565b600a546001600160a01b0390811691161461123b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff16156112ab576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b600a8111156112cc5760405162461bcd60e51b8152600401611076906148e6565b601655565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ac15780601f10610a9657610100808354040283529160200191610ac1565b61133a61332a565b6001600160a01b0316826001600160a01b031614156113a0576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600560006113ad61332a565b6001600160a01b0390811682526020808301939093526040918201600090812091871680825291909352912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169215159290921790915561140f61332a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b61145d61332a565b600a546001600160a01b039081169116146114bf576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff161561152f576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b806021838154811061153d57fe5b6000918252602090912060039091020160020180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790555050565b61158961332a565b600a546001600160a01b039081169116146115eb576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff161561165b576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b611665601d613321565b6040805160808101825260006060820181815282526020820193845260019282018381526021805494850181559091529051517f3a6357012c1a3ae0a17d304c9920310382d968ebcc4b1771f41c6b304205b57060039093029283015591517f3a6357012c1a3ae0a17d304c9920310382d968ebcc4b1771f41c6b304205b57182015590517f3a6357012c1a3ae0a17d304c9920310382d968ebcc4b1771f41c6b304205b57290910180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b61174561332a565b600a546001600160a01b039081169116146117a7576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff1615611817576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b600081118015611828575060078111155b6118445760405162461bcd60e51b815260040161107690614954565b601755565b61185a61185461332a565b836133cc565b6118955760405162461bcd60e51b8152600401808060200182810382526031815260200180614e666031913960400191505060405180910390fd5b6118a1848484846135ff565b50505050565b601b546001600160a01b031681565b6118be61332a565b600a546001600160a01b03908116911614611920576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff1615611990576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b814710156119b05760405162461bcd60e51b8152600401611076906149c2565b6040516001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610bfe573d6000803e3d6000fd5b6119ee61332a565b600a546001600160a01b03908116911614611a50576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff1615611ac0576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b60078210611ae05760405162461bcd60e51b815260040161107690614a9e565b6000918252601e602052604090912055565b611afa61332a565b600a546001600160a01b03908116911614611b5c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b600b81600a8110611bb657600080fd5b0154905081565b6060611bc88261332e565b611c035760405162461bcd60e51b815260040180806020018281038252602f815260200180614e16602f913960400191505060405180910390fd5b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f810185900485028201850190935282815292909190830182828015611c965780601f10611c6b57610100808354040283529160200191611c96565b820191906000526020600020905b815481529060010190602001808311611c7957829003601f168201915b505060095493945050505060026000196101006001841615020190911604611cbf579050610951565b805115611d90576009816040516020018083805460018160011615610100020316600290048015611d275780601f10611d05576101008083540402835291820191611d27565b820191906000526020600020905b815481529060010190602001808311611d13575b5050825160208401908083835b60208310611d535780518252601f199092019160209182019101611d34565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050610951565b6009611d9b84613651565b6040516020018083805460018160011615610100020316600290048015611df95780601f10611dd7576101008083540402835291820191611df9565b820191906000526020600020905b815481529060010190602001808311611de5575b5050825160208401908083835b60208310611e255780518252601f199092019160209182019101611e06565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050919050565b611e6a61332a565b600a546001600160a01b03908116911614611ecc576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff1615611f3c576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b601b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b611f7e61431d565b611f86614370565b600080611f91614370565b6000838152601e602090815260408083205489845291805290912060020154611fb991613760565b818460078110611fc557fe5b60209081029190910191909152600087815290805260409020600401546120ef5760008681526020808052604091829020600201549151612007929101614870565b6040516020818303038152906040528051906020012060001c9150600192505b60008681526020805260409020600501548310156120ea576000838152601e6020526040902054612059908390613760565b81846007811061206557fe5b60200201818152505061209f602060008881526020019081526020016000206003015482856007811061209457fe5b6020020151906137a2565b8184600781106120ab57fe5b602002018181525050816040516020016120c59190614870565b60408051601f1981840301815291905280516020909101206001909301929150612027565b6124fc565b6000868152602080526040812060020154819061210d906064613760565b83866007811061211957fe5b60200201525b8061226257600a821415612170576000858152601e60205260409020546121579084876007811061214c57fe5b602002015190613760565b83866007811061216357fe5b6020020152506001612257565b816121d957600083866007811061218357fe5b6020020151101580156121b45750600b82600a811061219e57fe5b01548386600781106121ac57fe5b602002015111155b156121d45760008281526015602052604090205483866007811061216357fe5b612257565b600b6121e68360016137fc565b600a81106121f057fe5b01548386600781106121fe57fe5b602002015111801561222e5750600b82600a811061221857fe5b015483866007811061222657fe5b602002015111155b156122575760008281526015602052604090205483866007811061224e57fe5b60200201525060015b60019091019061211f565b60008881526020805260409020600301546122839084876007811061209457fe5b83866007811061228f57fe5b60200201818152505060206000898152602001908152602001600020600201546040516020016122bf9190614870565b6040516020818303038152906040528051906020012060001c9350600194505b60008881526020805260409020600501548510156124f9576016548510156124615761230c846064613760565b83866007811061231857fe5b60200201525060009050805b8061245c57600a82141561236a576000858152601e60205260409020546123519084876007811061214c57fe5b83866007811061235d57fe5b6020020152506001612451565b816123d357600083866007811061237d57fe5b6020020151101580156123ae5750600b82600a811061239857fe5b01548386600781106123a657fe5b602002015111155b156123ce5760008281526015602052604090205483866007811061235d57fe5b612451565b600b6123e08360016137fc565b600a81106123ea57fe5b01548386600781106123f857fe5b60200201511180156124285750600b82600a811061241257fe5b015483866007811061242057fe5b602002015111155b156124515760008281526015602052604090205483866007811061244857fe5b60200201525060015b600190910190612324565b61248d565b6000858152601e602052604090205461247b908590613760565b83866007811061248757fe5b60200201525b60008881526020805260409020600301546124ae9084876007811061209457fe5b8386600781106124ba57fe5b602002018181525050836040516020016124d49190614870565b60408051601f19818403018152919052805160209091012060019095019493506122df565b50505b6020600087815260200190815260200160002081816040518061014001604052908160008201548152602001600182018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125c05780601f10612595576101008083540402835291602001916125c0565b820191906000526020600020905b8154815290600101906020018083116125a357829003601f168201915b5050505050815260200160028201548152602001600382015481526020016004820154815260200160058201548152602001600682015481526020016007820154815260200160088201548152602001600982015481525050915094509450505050915091565b6000610c0f601d6135c8565b6021818154811061264357600080fd5b60009182526020918290206040805193840190526003909102018054825260018101546002909101549192509060ff1683565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006126ae61332a565b600a546001600160a01b03908116911614612710576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff1615612780576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b504790565b61278d61332a565b600a546001600160a01b039081169116146127ef576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166128345760405162461bcd60e51b8152600401808060200182810382526026815260200180614c4c6026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b601a5481565b60185481565b600a5474010000000000000000000000000000000000000000900460ff1615612924576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b60008115612bd3578215801561295a57506021838154811061294257fe5b600091825260209091206002600390920201015460ff165b80156129a857506021838154811061296e57fe5b9060005260206000209060030201600101546129a66021858154811061299057fe5b90600052602060002090600302016000016135c8565b105b80156129be5750601b546001600160a01b031633145b6129da5760405162461bcd60e51b81526004016110769061491d565b6129e4601c613321565b612a0a602184815481106129f457fe5b9060005260206000209060030201600001613321565b60405180610140016040528084815260200160405180602001604052806000815250815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001612a6c601c6135c8565b905260206000612a7c601c6135c8565b8152602080820192909252604001600020825181558282015180519192612aab9260018501929091019061438e565b5060408201516002820155606082015160038201556080820151600482015560a0820151600582015560c0820151600682015560e0820151600782015561010082015160088201556101209091015160099091015533612b0b601c6135c8565b847f6fa79d58fbafc2fefbb1249a11978208d4c45248d30ac465c8d3a7c6f2e8e24262015180420642036000604051612b45929190614ba5565b60405180910390a4612b6033612b5b601c6135c8565b61383e565b612ba6612b6d601c6135c8565b6019612b81612b7c601c6135c8565b613651565b604051602001612b929291906147d1565b60405160208183030381529060405261385c565b601b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055610bfe565b6018543410158015612be55750600083115b8015612c11575060218381548110612bf957fe5b600091825260209091206002600390920201015460ff165b8015612c49575060218381548110612c2557fe5b906000526020600020906003020160010154612c476021858154811061299057fe5b105b612c655760405162461bcd60e51b8152600401611076906149f9565b612c6f601c613321565b6040518061014001604052806000815260200160405180602001604052806000815250815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001612cd2601c6135c8565b905260206000612ce2601c6135c8565b8152602080820192909252604001600020825181558282015180519192612d119260018501929091019061438e565b5060408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e0820151816007015561010082015181600801556101208201518160090155905050612d77602184815481106129f457fe5b8260206000612d86601c6135c8565b8152602081019190915260400160002055612dd7612da4601c6135c8565b443342604051602001612db993929190614879565b60408051601f198184030181529190528051602090910120906138bf565b60206000612de5601c6135c8565b815260200190815260200160002060020181905550601a5460206000612e0b601c6135c8565b8152602001908152602001600020600301819055504460206000612e2f601c6135c8565b8152602001908152602001600020600601819055504260206000612e53601c6135c8565b81526020019081526020016000206007018190555060165460206000612e79601c6135c8565b81526020019081526020016000206004018190555060175460206000612e9f601c6135c8565b81526020019081526020016000206005018190555060206000612ec2601c6135c8565b81526020019081526020016000206004015460001415612f8e576000808052601e60209081527f65ce8396b736f5da9d881cc6fbcb11ef9721292dc41ec8c40879fd9edea5744d54612f3b92909190612f1b601c6135c8565b81526020019081526020016000206002015461376090919063ffffffff16565b9050612f6f60206000612f4e601c6135c8565b815260200190815260200160002060030154826137a290919063ffffffff16565b6000818152601f60205260409020909150612f8990613321565b6130af565b600080612fa4606460206000612f1b601c6135c8565b92505b8061308457600a821415612ff65760008052601e6020527f65ce8396b736f5da9d881cc6fbcb11ef9721292dc41ec8c40879fd9edea5744d54612feb908490613760565b925060019050613079565b8161302a57600b82600a811061300857fe5b015483116130255750600081815260156020526040902054915060015b613079565b600b6130378360016137fc565b600a811061304157fe5b01548311801561305f5750600b82600a811061305957fe5b01548311155b156130795750600081815260156020526040902054915060015b600190910190612fa7565b601a546130929084906137a2565b6000818152601f602052604090209093506130ac90613321565b50505b6000818152601f602052604090206130c6906135c8565b602060006130d4601c6135c8565b8152602081019190915260400160002060080155336130f3601c6135c8565b847f6fa79d58fbafc2fefbb1249a11978208d4c45248d30ac465c8d3a7c6f2e8e24262015180420642036020600061312b601c6135c8565b81526020019081526020016000206002015460405161314b929190614ba5565b60405180910390a461316133612b5b601c6135c8565b610bfe612b6d601c6135c8565b61317661332a565b600a546001600160a01b039081169116146131d8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff1615613248576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b6021828154811061325557fe5b90600052602060002090600302016001015481116132855760405162461bcd60e51b81526004016110769061498b565b806021838154811061329357fe5b9060005260206000209060030201600101819055505050565b336132b683610dda565b6001600160a01b0316146132dc5760405162461bcd60e51b815260040161107690614a67565b6020815111156132fe5760405162461bcd60e51b815260040161107690614a30565b6000828152602080805260409091208251610bfe9260019092019184019061438e565b80546001019055565b3390565b6000610cf2600283613901565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061338882610dda565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610cf2826135c8565b60006133d78261332e565b6134125760405162461bcd60e51b815260040180806020018281038252602c815260200180614cbc602c913960400191505060405180910390fd5b600061341d83610dda565b9050806001600160a01b0316846001600160a01b031614806134585750836001600160a01b031661344d84610acb565b6001600160a01b0316145b8061346857506134688185612676565b949350505050565b826001600160a01b031661348382610dda565b6001600160a01b0316146134c85760405162461bcd60e51b8152600401808060200182810382526029815260200180614ded6029913960400191505060405180910390fd5b6001600160a01b03821661350d5760405162461bcd60e51b8152600401808060200182810382526024815260200180614c726024913960400191505060405180910390fd5b613518838383610bfe565b61352360008261333b565b6001600160a01b0383166000908152600160205260409020613545908261390d565b506001600160a01b03821660009081526001602052604090206135689082613919565b5061357560028284613925565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610cef838361393b565b5490565b60008080806135db868661399f565b9097909650945050505050565b60006135f5848484613a1a565b90505b9392505050565b61360a848484613470565b61361684848484613ae4565b6118a15760405162461bcd60e51b8152600401808060200182810382526032815260200180614c1a6032913960400191505060405180910390fd5b606081613692575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152610951565b8160005b81156136aa57600101600a82049150613696565b60008167ffffffffffffffff811180156136c357600080fd5b506040519080825280601f01601f1916602001820160405280156136ee576020820181803683370190505b50859350905060001982015b831561375757600a840660300160f81b8282806001900393508151811061371d57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a840493506136fa565b50949350505050565b6000610cef83836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f0000000000000000815250613cc0565b600082820183811015610cef576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610cef83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613d22565b613858828260405180602001604052806000815250613d7c565b5050565b6138658261332e565b6138a05760405162461bcd60e51b815260040180806020018281038252602c815260200180614dc1602c913960400191505060405180910390fd5b60008281526008602090815260409091208251610bfe9284019061438e565b6000610cef83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613dce565b6000610cef8383613e33565b6000610cef8383613e4b565b6000610cef8383613f11565b60006135f584846001600160a01b038516613f5b565b8154600090821061397d5760405162461bcd60e51b8152600401808060200182810382526022815260200180614bf86022913960400191505060405180910390fd5b82600001828154811061398c57fe5b9060005260206000200154905092915050565b8154600090819083106139e35760405162461bcd60e51b8152600401808060200182810382526022815260200180614d736022913960400191505060405180910390fd5b60008460000184815481106139f457fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281613ab55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a7a578181015183820152602001613a62565b50505050905090810190601f168015613aa75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50846000016001820381548110613ac857fe5b9060005260206000209060020201600101549150509392505050565b6000613af8846001600160a01b0316613ff2565b613b0457506001613468565b6000613c557f150b7a0200000000000000000000000000000000000000000000000000000000613b3261332a565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613b99578181015183820152602001613b81565b50505050905090810190601f168015613bc65780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614c1a603291396001600160a01b0388169190613ff8565b90506000818060200190516020811015613c6e57600080fd5b50517fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001492505050949350505050565b60008183613d0f5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613a7a578181015183820152602001613a62565b50828481613d1957fe5b06949350505050565b60008184841115613d745760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613a7a578181015183820152602001613a62565b505050900390565b613d868383614007565b613d936000848484613ae4565b610bfe5760405162461bcd60e51b8152600401808060200182810382526032815260200180614c1a6032913960400191505060405180910390fd5b60008183613e1d5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613a7a578181015183820152602001613a62565b506000838581613e2957fe5b0495945050505050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015613f075783546000198083019190810190600090879083908110613e7e57fe5b9060005260206000200154905080876000018481548110613e9b57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080613ecb57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610cf2565b6000915050610cf2565b6000613f1d8383613e33565b613f5357508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610cf2565b506000610cf2565b600082815260018401602052604081205480613fc05750506040805180820182528381526020808201848152865460018181018955600089815284812095516002909302909501918255915190820155865486845281880190925292909120556135f8565b82856000016001830381548110613fd357fe5b90600052602060002090600202016001018190555060009150506135f8565b3b151590565b60606135f58484600085614135565b6001600160a01b038216614062576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61406b8161332e565b156140bd576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b6140c960008383610bfe565b6001600160a01b03821660009081526001602052604090206140eb9082613919565b506140f860028284613925565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060824710156141765760405162461bcd60e51b8152600401808060200182810382526026815260200180614c966026913960400191505060405180910390fd5b61417f85613ff2565b6141d0576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b6020831061420e5780518252601f1990920191602091820191016141ef565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614270576040519150601f19603f3d011682016040523d82523d6000602084013e614275565b606091505b5091509150614285828286614290565b979650505050505050565b6060831561429f5750816135f8565b8251156142af5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315613a7a578181015183820152602001613a62565b604051806060016040528061430961441a565b815260006020820181905260409091015290565b604051806101400160405280600081526020016060815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040518060e001604052806007906020820280368337509192915050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826143c4576000855561440a565b82601f106143dd57805160ff191683800117855561440a565b8280016001018555821561440a579182015b8281111561440a5782518255916020019190600101906143ef565b5061441692915061442d565b5090565b6040518060200160405280600081525090565b5b80821115614416576000815560010161442e565b600067ffffffffffffffff8084111561445757fe5b6040516020601f19601f870116820101818110838211171561447557fe5b60405284815291508183850186101561448d57600080fd5b8484602083013760006020868301015250509392505050565b8035801515811461095157600080fd5b6000602082840312156144c7578081fd5b8135610cef81614bdf565b600080604083850312156144e4578081fd5b82356144ef81614bdf565b915060208301356144ff81614bdf565b809150509250929050565b60008060006060848603121561451e578081fd5b833561452981614bdf565b9250602084013561453981614bdf565b929592945050506040919091013590565b6000806000806080858703121561455f578081fd5b843561456a81614bdf565b9350602085013561457a81614bdf565b925060408501359150606085013567ffffffffffffffff81111561459c578182fd5b8501601f810187136145ac578182fd5b6145bb87823560208401614442565b91505092959194509250565b600080604083850312156145d9578182fd5b82356145e481614bdf565b91506145f2602084016144a6565b90509250929050565b6000806040838503121561460d578182fd5b823561461881614bdf565b946020939093013593505050565b600060208284031215614637578081fd5b610cef826144a6565b600060208284031215614651578081fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114610cef578182fd5b600060208284031215614691578081fd5b5035919050565b600080604083850312156146aa578182fd5b8235915060208301356144ff81614bdf565b600080604083850312156146ce578182fd5b823591506145f2602084016144a6565b600080604083850312156146f0578182fd5b82359150602083013567ffffffffffffffff81111561470d578182fd5b8301601f8101851361471d578182fd5b61472c85823560208401614442565b9150509250929050565b60008060408385031215614748578182fd5b50508035926020909101359150565b60008060006060848603121561476b578081fd5b505081359360208301359350604090920135919050565b8060005b60078110156118a1578151845260209384019390910190600101614786565b600081518084526147bd816020860160208601614bb3565b601f01601f19169290920160200192915050565b60008084546001808216600081146147f0576001811461482557614854565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083168652607f600284041686019350614854565b600283048886526020808720875b8381101561484c5781548a820152908501908201614833565b505050860193505b5050508351614867818360208801614bb3565b01949350505050565b90815260200190565b92835260609190911b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166020830152603482015260540190565b6001600160a01b0391909116815260200190565b901515815260200190565b600060208252610cef60208301846147a5565b60208082526019908201527f4d75737420626520686967686572206f7220657175616c203000000000000000604082015260600190565b60208082526017908201527f43616e277420617761726420756e69717565206974656d000000000000000000604082015260600190565b60208082526015908201527f4d75737420626520686967686572207468616e20300000000000000000000000604082015260600190565b6020808252600c908201527f537570706c79206572726f720000000000000000000000000000000000000000604082015260600190565b6020808252600f908201527f4e6f7420656e6f75676874205745490000000000000000000000000000000000604082015260600190565b60208082526010908201527f43616e2774206177617264206974656d00000000000000000000000000000000604082015260600190565b60208082526011908201527f6d617820737472696e67206c656e677468000000000000000000000000000000604082015260600190565b60208082526009908201527f4e6f74206f776e65720000000000000000000000000000000000000000000000604082015260600190565b60208082526018908201527f5468697320747261697420646f65736e27742065786973740000000000000000604082015260600190565b9251835260208301919091521515604082015260600190565b81515181526020808301519082015260409182015115159181019190915260600190565b600061010080835284518184015260208501516101406101208181870152614b3e6102408701846147a5565b6040890151928701929092526060880151610160870152608088015161018087015260a08801516101a087015260c08801516101c087015260e08801516101e087015292870151610200860152918601516102208501525090506135f86020830184614782565b918252602082015260400190565b60005b83811015614bce578181015183820152602001614bb6565b838111156118a15750506000910152565b6001600160a01b0381168114614bf457600080fd5b5056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220967148b236f796113352c1cb4de7e85afdfdafd9459aff04a0766c1beba7595e64736f6c634300070600333a6357012c1a3ae0a17d304c9920310382d968ebcc4b1771f41c6b304205b5703a6357012c1a3ae0a17d304c9920310382d968ebcc4b1771f41c6b304205b5713a6357012c1a3ae0a17d304c9920310382d968ebcc4b1771f41c6b304205b5720000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f6170692e6e66747472616465722e696f2f6e66742f000000
Deployed Bytecode
0x6080604052600436106103175760003560e01c806395d89b411161019a578063cdfb5832116100e1578063f2fde38b1161008a578063fb6ff86511610064578063fb6ff865146108c8578063fc784d49146108db578063fe55932a146108fb5761035f565b8063f2fde38b1461087e578063f43295c31461089e578063f79afaba146108b35761035f565b8063dc22cb6a116100bb578063dc22cb6a1461081a578063e985e9c514610849578063ed12e8ef146108695761035f565b8063cdfb5832146107b7578063d07ce070146107d7578063d7f2c0ef146108055761035f565b8063bc9a4c4911610143578063c38bb5371161011d578063c38bb53714610757578063c3dcd5cd14610777578063c87b56dd146107975761035f565b8063bc9a4c4914610702578063bfd7ffe714610717578063c33b3dcd146107375761035f565b8063ad2d57a211610174578063ad2d57a2146106a2578063b5d9e6dd146106c2578063b88d4fde146106e25761035f565b806395d89b411461064d578063a22cb46514610662578063a41a6424146106825761035f565b806342842e0e1161025e578063715018a6116102075780638456cb59116101e15780638456cb59146106035780638da5cb5b1461061857806391448f6b1461062d5761035f565b8063715018a6146105ae578063773a4ae5146105c357806377b2521f146105e35761035f565b80636352211e116102385780636352211e146105595780636c0360eb1461057957806370a082311461058e5761035f565b806342842e0e146105045780634f6ccce7146105245780635e280f11146105445761035f565b80631b958ce3116102c05780633556dfa71161029a5780633556dfa7146104ba57806336f88cf8146104cf5780633dc48d70146104e45761035f565b80631b958ce31461044d57806323b872dd1461047a5780632f745c591461049a5761035f565b8063081812fc116102f1578063081812fc146103de578063095ea7b31461040b57806318160ddd1461042b5761035f565b806301ffc9a71461036457806303d809ba1461039a57806306fdde03146103bc5761035f565b3661035f57336001600160a01b03167f0de0271e0148b63e6b759917905b6ae5d995f6081392a30b9fa9e23bb4fb9871346040516103559190614870565b60405180910390a2005b600080fd5b34801561037057600080fd5b5061038461037f366004614640565b61091b565b60405161039191906148c8565b60405180910390f35b3480156103a657600080fd5b506103ba6103b5366004614680565b610956565b005b3480156103c857600080fd5b506103d1610a35565b60405161039191906148d3565b3480156103ea57600080fd5b506103fe6103f9366004614680565b610acb565b60405161039191906148b4565b34801561041757600080fd5b506103ba6104263660046145fb565b610b2d565b34801561043757600080fd5b50610440610c03565b6040516103919190614870565b34801561045957600080fd5b5061046d610468366004614680565b610c14565b6040516103919190614aee565b34801561048657600080fd5b506103ba61049536600461450a565b610c76565b3480156104a657600080fd5b506104406104b53660046145fb565b610ccd565b3480156104c657600080fd5b50610440610cf8565b3480156104db57600080fd5b50610440610cfe565b3480156104f057600080fd5b506104406104ff366004614680565b610d04565b34801561051057600080fd5b506103ba61051f36600461450a565b610d1b565b34801561053057600080fd5b5061044061053f366004614680565b610d36565b34801561055057600080fd5b506103d1610d4c565b34801561056557600080fd5b506103fe610574366004614680565b610dda565b34801561058557600080fd5b506103d1610e02565b34801561059a57600080fd5b506104406105a93660046144b6565b610e63565b3480156105ba57600080fd5b506103ba610ecb565b3480156105cf57600080fd5b506103ba6105de366004614680565b610f97565b3480156105ef57600080fd5b506103ba6105fe366004614757565b611084565b34801561060f57600080fd5b506103846111a1565b34801561062457600080fd5b506103fe6111c2565b34801561063957600080fd5b506103ba610648366004614680565b6111d1565b34801561065957600080fd5b506103d16112d1565b34801561066e57600080fd5b506103ba61067d3660046145c7565b611332565b34801561068e57600080fd5b506103ba61069d3660046146bc565b611455565b3480156106ae57600080fd5b506103ba6106bd366004614680565b611581565b3480156106ce57600080fd5b506103ba6106dd366004614680565b61173d565b3480156106ee57600080fd5b506103ba6106fd36600461454a565b611849565b34801561070e57600080fd5b506103fe6118a7565b34801561072357600080fd5b506103ba610732366004614698565b6118b6565b34801561074357600080fd5b506103ba610752366004614736565b6119e6565b34801561076357600080fd5b506103ba610772366004614626565b611af2565b34801561078357600080fd5b50610440610792366004614680565b611ba6565b3480156107a357600080fd5b506103d16107b2366004614680565b611bbd565b3480156107c357600080fd5b506103ba6107d23660046144b6565b611e62565b3480156107e357600080fd5b506107f76107f2366004614680565b611f76565b604051610391929190614b12565b34801561081157600080fd5b50610440612627565b34801561082657600080fd5b5061083a610835366004614680565b612633565b60405161039193929190614ad5565b34801561085557600080fd5b506103846108643660046144d2565b612676565b34801561087557600080fd5b506104406126a4565b34801561088a57600080fd5b506103ba6108993660046144b6565b612785565b3480156108aa57600080fd5b506104406128a8565b3480156108bf57600080fd5b506104406128ae565b6103ba6108d63660046146bc565b6128b4565b3480156108e757600080fd5b506103ba6108f6366004614736565b61316e565b34801561090757600080fd5b506103ba6109163660046146de565b6132ac565b7fffffffff00000000000000000000000000000000000000000000000000000000811660009081526020819052604090205460ff165b919050565b61095e61332a565b600a546001600160a01b039081169116146109c0576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff1615610a30576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b601855565b60068054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ac15780601f10610a9657610100808354040283529160200191610ac1565b820191906000526020600020905b815481529060010190602001808311610aa457829003601f168201915b5050505050905090565b6000610ad68261332e565b610b115760405162461bcd60e51b815260040180806020018281038252602c815260200180614d95602c913960400191505060405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b3882610dda565b9050806001600160a01b0316836001600160a01b03161415610b8b5760405162461bcd60e51b8152600401808060200182810382526021815260200180614e456021913960400191505060405180910390fd5b806001600160a01b0316610b9d61332a565b6001600160a01b03161480610bb95750610bb98161086461332a565b610bf45760405162461bcd60e51b8152600401808060200182810382526038815260200180614ce86038913960400191505060405180910390fd5b610bfe838361333b565b505050565b6000610c0f60026133c1565b905090565b610c1c6142f6565b60218281548110610c2957fe5b6000918252602091829020604080516080810182526003909302909101805460608401908152835260018101549383019390935260029092015460ff161515918101919091529050919050565b610c87610c8161332a565b826133cc565b610cc25760405162461bcd60e51b8152600401808060200182810382526031815260200180614e666031913960400191505060405180910390fd5b610bfe838383613470565b6001600160a01b0382166000908152600160205260408120610cef90836135bc565b90505b92915050565b60175481565b60165481565b6000818152601f60205260408120610cf2906135c8565b610bfe83838360405180602001604052806000815250611849565b600080610d446002846135cc565b509392505050565b6019805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610dd25780601f10610da757610100808354040283529160200191610dd2565b820191906000526020600020905b815481529060010190602001808311610db557829003601f168201915b505050505081565b6000610cf282604051806060016040528060298152602001614d4a60299139600291906135e8565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ac15780601f10610a9657610100808354040283529160200191610ac1565b60006001600160a01b038216610eaa5760405162461bcd60e51b815260040180806020018281038252602a815260200180614d20602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020610cf2906133c1565b610ed361332a565b600a546001600160a01b03908116911614610f35576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b610f9f61332a565b600a546001600160a01b03908116911614611001576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff1615611071576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b61107f565b60405180910390fd5b601a55565b61108c61332a565b600a546001600160a01b039081169116146110ee576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff161561115e576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b600a831061117e5760405162461bcd60e51b815260040161107690614a9e565b80600b84600a811061118c57fe5b01555060009182526015602052604090912055565b600a5474010000000000000000000000000000000000000000900460ff1681565b600a546001600160a01b031690565b6111d961332a565b600a546001600160a01b0390811691161461123b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff16156112ab576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b600a8111156112cc5760405162461bcd60e51b8152600401611076906148e6565b601655565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ac15780601f10610a9657610100808354040283529160200191610ac1565b61133a61332a565b6001600160a01b0316826001600160a01b031614156113a0576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600560006113ad61332a565b6001600160a01b0390811682526020808301939093526040918201600090812091871680825291909352912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169215159290921790915561140f61332a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b61145d61332a565b600a546001600160a01b039081169116146114bf576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff161561152f576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b806021838154811061153d57fe5b6000918252602090912060039091020160020180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790555050565b61158961332a565b600a546001600160a01b039081169116146115eb576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff161561165b576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b611665601d613321565b6040805160808101825260006060820181815282526020820193845260019282018381526021805494850181559091529051517f3a6357012c1a3ae0a17d304c9920310382d968ebcc4b1771f41c6b304205b57060039093029283015591517f3a6357012c1a3ae0a17d304c9920310382d968ebcc4b1771f41c6b304205b57182015590517f3a6357012c1a3ae0a17d304c9920310382d968ebcc4b1771f41c6b304205b57290910180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b61174561332a565b600a546001600160a01b039081169116146117a7576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff1615611817576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b600081118015611828575060078111155b6118445760405162461bcd60e51b815260040161107690614954565b601755565b61185a61185461332a565b836133cc565b6118955760405162461bcd60e51b8152600401808060200182810382526031815260200180614e666031913960400191505060405180910390fd5b6118a1848484846135ff565b50505050565b601b546001600160a01b031681565b6118be61332a565b600a546001600160a01b03908116911614611920576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff1615611990576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b814710156119b05760405162461bcd60e51b8152600401611076906149c2565b6040516001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610bfe573d6000803e3d6000fd5b6119ee61332a565b600a546001600160a01b03908116911614611a50576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff1615611ac0576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b60078210611ae05760405162461bcd60e51b815260040161107690614a9e565b6000918252601e602052604090912055565b611afa61332a565b600a546001600160a01b03908116911614611b5c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b600b81600a8110611bb657600080fd5b0154905081565b6060611bc88261332e565b611c035760405162461bcd60e51b815260040180806020018281038252602f815260200180614e16602f913960400191505060405180910390fd5b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f810185900485028201850190935282815292909190830182828015611c965780601f10611c6b57610100808354040283529160200191611c96565b820191906000526020600020905b815481529060010190602001808311611c7957829003601f168201915b505060095493945050505060026000196101006001841615020190911604611cbf579050610951565b805115611d90576009816040516020018083805460018160011615610100020316600290048015611d275780601f10611d05576101008083540402835291820191611d27565b820191906000526020600020905b815481529060010190602001808311611d13575b5050825160208401908083835b60208310611d535780518252601f199092019160209182019101611d34565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050610951565b6009611d9b84613651565b6040516020018083805460018160011615610100020316600290048015611df95780601f10611dd7576101008083540402835291820191611df9565b820191906000526020600020905b815481529060010190602001808311611de5575b5050825160208401908083835b60208310611e255780518252601f199092019160209182019101611e06565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050919050565b611e6a61332a565b600a546001600160a01b03908116911614611ecc576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff1615611f3c576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b601b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b611f7e61431d565b611f86614370565b600080611f91614370565b6000838152601e602090815260408083205489845291805290912060020154611fb991613760565b818460078110611fc557fe5b60209081029190910191909152600087815290805260409020600401546120ef5760008681526020808052604091829020600201549151612007929101614870565b6040516020818303038152906040528051906020012060001c9150600192505b60008681526020805260409020600501548310156120ea576000838152601e6020526040902054612059908390613760565b81846007811061206557fe5b60200201818152505061209f602060008881526020019081526020016000206003015482856007811061209457fe5b6020020151906137a2565b8184600781106120ab57fe5b602002018181525050816040516020016120c59190614870565b60408051601f1981840301815291905280516020909101206001909301929150612027565b6124fc565b6000868152602080526040812060020154819061210d906064613760565b83866007811061211957fe5b60200201525b8061226257600a821415612170576000858152601e60205260409020546121579084876007811061214c57fe5b602002015190613760565b83866007811061216357fe5b6020020152506001612257565b816121d957600083866007811061218357fe5b6020020151101580156121b45750600b82600a811061219e57fe5b01548386600781106121ac57fe5b602002015111155b156121d45760008281526015602052604090205483866007811061216357fe5b612257565b600b6121e68360016137fc565b600a81106121f057fe5b01548386600781106121fe57fe5b602002015111801561222e5750600b82600a811061221857fe5b015483866007811061222657fe5b602002015111155b156122575760008281526015602052604090205483866007811061224e57fe5b60200201525060015b60019091019061211f565b60008881526020805260409020600301546122839084876007811061209457fe5b83866007811061228f57fe5b60200201818152505060206000898152602001908152602001600020600201546040516020016122bf9190614870565b6040516020818303038152906040528051906020012060001c9350600194505b60008881526020805260409020600501548510156124f9576016548510156124615761230c846064613760565b83866007811061231857fe5b60200201525060009050805b8061245c57600a82141561236a576000858152601e60205260409020546123519084876007811061214c57fe5b83866007811061235d57fe5b6020020152506001612451565b816123d357600083866007811061237d57fe5b6020020151101580156123ae5750600b82600a811061239857fe5b01548386600781106123a657fe5b602002015111155b156123ce5760008281526015602052604090205483866007811061235d57fe5b612451565b600b6123e08360016137fc565b600a81106123ea57fe5b01548386600781106123f857fe5b60200201511180156124285750600b82600a811061241257fe5b015483866007811061242057fe5b602002015111155b156124515760008281526015602052604090205483866007811061244857fe5b60200201525060015b600190910190612324565b61248d565b6000858152601e602052604090205461247b908590613760565b83866007811061248757fe5b60200201525b60008881526020805260409020600301546124ae9084876007811061209457fe5b8386600781106124ba57fe5b602002018181525050836040516020016124d49190614870565b60408051601f19818403018152919052805160209091012060019095019493506122df565b50505b6020600087815260200190815260200160002081816040518061014001604052908160008201548152602001600182018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125c05780601f10612595576101008083540402835291602001916125c0565b820191906000526020600020905b8154815290600101906020018083116125a357829003601f168201915b5050505050815260200160028201548152602001600382015481526020016004820154815260200160058201548152602001600682015481526020016007820154815260200160088201548152602001600982015481525050915094509450505050915091565b6000610c0f601d6135c8565b6021818154811061264357600080fd5b60009182526020918290206040805193840190526003909102018054825260018101546002909101549192509060ff1683565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006126ae61332a565b600a546001600160a01b03908116911614612710576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff1615612780576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b504790565b61278d61332a565b600a546001600160a01b039081169116146127ef576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166128345760405162461bcd60e51b8152600401808060200182810382526026815260200180614c4c6026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b601a5481565b60185481565b600a5474010000000000000000000000000000000000000000900460ff1615612924576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b60008115612bd3578215801561295a57506021838154811061294257fe5b600091825260209091206002600390920201015460ff165b80156129a857506021838154811061296e57fe5b9060005260206000209060030201600101546129a66021858154811061299057fe5b90600052602060002090600302016000016135c8565b105b80156129be5750601b546001600160a01b031633145b6129da5760405162461bcd60e51b81526004016110769061491d565b6129e4601c613321565b612a0a602184815481106129f457fe5b9060005260206000209060030201600001613321565b60405180610140016040528084815260200160405180602001604052806000815250815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001612a6c601c6135c8565b905260206000612a7c601c6135c8565b8152602080820192909252604001600020825181558282015180519192612aab9260018501929091019061438e565b5060408201516002820155606082015160038201556080820151600482015560a0820151600582015560c0820151600682015560e0820151600782015561010082015160088201556101209091015160099091015533612b0b601c6135c8565b847f6fa79d58fbafc2fefbb1249a11978208d4c45248d30ac465c8d3a7c6f2e8e24262015180420642036000604051612b45929190614ba5565b60405180910390a4612b6033612b5b601c6135c8565b61383e565b612ba6612b6d601c6135c8565b6019612b81612b7c601c6135c8565b613651565b604051602001612b929291906147d1565b60405160208183030381529060405261385c565b601b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055610bfe565b6018543410158015612be55750600083115b8015612c11575060218381548110612bf957fe5b600091825260209091206002600390920201015460ff165b8015612c49575060218381548110612c2557fe5b906000526020600020906003020160010154612c476021858154811061299057fe5b105b612c655760405162461bcd60e51b8152600401611076906149f9565b612c6f601c613321565b6040518061014001604052806000815260200160405180602001604052806000815250815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001612cd2601c6135c8565b905260206000612ce2601c6135c8565b8152602080820192909252604001600020825181558282015180519192612d119260018501929091019061438e565b5060408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e0820151816007015561010082015181600801556101208201518160090155905050612d77602184815481106129f457fe5b8260206000612d86601c6135c8565b8152602081019190915260400160002055612dd7612da4601c6135c8565b443342604051602001612db993929190614879565b60408051601f198184030181529190528051602090910120906138bf565b60206000612de5601c6135c8565b815260200190815260200160002060020181905550601a5460206000612e0b601c6135c8565b8152602001908152602001600020600301819055504460206000612e2f601c6135c8565b8152602001908152602001600020600601819055504260206000612e53601c6135c8565b81526020019081526020016000206007018190555060165460206000612e79601c6135c8565b81526020019081526020016000206004018190555060175460206000612e9f601c6135c8565b81526020019081526020016000206005018190555060206000612ec2601c6135c8565b81526020019081526020016000206004015460001415612f8e576000808052601e60209081527f65ce8396b736f5da9d881cc6fbcb11ef9721292dc41ec8c40879fd9edea5744d54612f3b92909190612f1b601c6135c8565b81526020019081526020016000206002015461376090919063ffffffff16565b9050612f6f60206000612f4e601c6135c8565b815260200190815260200160002060030154826137a290919063ffffffff16565b6000818152601f60205260409020909150612f8990613321565b6130af565b600080612fa4606460206000612f1b601c6135c8565b92505b8061308457600a821415612ff65760008052601e6020527f65ce8396b736f5da9d881cc6fbcb11ef9721292dc41ec8c40879fd9edea5744d54612feb908490613760565b925060019050613079565b8161302a57600b82600a811061300857fe5b015483116130255750600081815260156020526040902054915060015b613079565b600b6130378360016137fc565b600a811061304157fe5b01548311801561305f5750600b82600a811061305957fe5b01548311155b156130795750600081815260156020526040902054915060015b600190910190612fa7565b601a546130929084906137a2565b6000818152601f602052604090209093506130ac90613321565b50505b6000818152601f602052604090206130c6906135c8565b602060006130d4601c6135c8565b8152602081019190915260400160002060080155336130f3601c6135c8565b847f6fa79d58fbafc2fefbb1249a11978208d4c45248d30ac465c8d3a7c6f2e8e24262015180420642036020600061312b601c6135c8565b81526020019081526020016000206002015460405161314b929190614ba5565b60405180910390a461316133612b5b601c6135c8565b610bfe612b6d601c6135c8565b61317661332a565b600a546001600160a01b039081169116146131d8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a5474010000000000000000000000000000000000000000900460ff1615613248576040805162461bcd60e51b815260206004820152601460248201527f5468652073797374656d20697320706175736564000000000000000000000000604482015290519081900360640190fd5b6021828154811061325557fe5b90600052602060002090600302016001015481116132855760405162461bcd60e51b81526004016110769061498b565b806021838154811061329357fe5b9060005260206000209060030201600101819055505050565b336132b683610dda565b6001600160a01b0316146132dc5760405162461bcd60e51b815260040161107690614a67565b6020815111156132fe5760405162461bcd60e51b815260040161107690614a30565b6000828152602080805260409091208251610bfe9260019092019184019061438e565b80546001019055565b3390565b6000610cf2600283613901565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061338882610dda565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610cf2826135c8565b60006133d78261332e565b6134125760405162461bcd60e51b815260040180806020018281038252602c815260200180614cbc602c913960400191505060405180910390fd5b600061341d83610dda565b9050806001600160a01b0316846001600160a01b031614806134585750836001600160a01b031661344d84610acb565b6001600160a01b0316145b8061346857506134688185612676565b949350505050565b826001600160a01b031661348382610dda565b6001600160a01b0316146134c85760405162461bcd60e51b8152600401808060200182810382526029815260200180614ded6029913960400191505060405180910390fd5b6001600160a01b03821661350d5760405162461bcd60e51b8152600401808060200182810382526024815260200180614c726024913960400191505060405180910390fd5b613518838383610bfe565b61352360008261333b565b6001600160a01b0383166000908152600160205260409020613545908261390d565b506001600160a01b03821660009081526001602052604090206135689082613919565b5061357560028284613925565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610cef838361393b565b5490565b60008080806135db868661399f565b9097909650945050505050565b60006135f5848484613a1a565b90505b9392505050565b61360a848484613470565b61361684848484613ae4565b6118a15760405162461bcd60e51b8152600401808060200182810382526032815260200180614c1a6032913960400191505060405180910390fd5b606081613692575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152610951565b8160005b81156136aa57600101600a82049150613696565b60008167ffffffffffffffff811180156136c357600080fd5b506040519080825280601f01601f1916602001820160405280156136ee576020820181803683370190505b50859350905060001982015b831561375757600a840660300160f81b8282806001900393508151811061371d57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a840493506136fa565b50949350505050565b6000610cef83836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f0000000000000000815250613cc0565b600082820183811015610cef576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000610cef83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613d22565b613858828260405180602001604052806000815250613d7c565b5050565b6138658261332e565b6138a05760405162461bcd60e51b815260040180806020018281038252602c815260200180614dc1602c913960400191505060405180910390fd5b60008281526008602090815260409091208251610bfe9284019061438e565b6000610cef83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613dce565b6000610cef8383613e33565b6000610cef8383613e4b565b6000610cef8383613f11565b60006135f584846001600160a01b038516613f5b565b8154600090821061397d5760405162461bcd60e51b8152600401808060200182810382526022815260200180614bf86022913960400191505060405180910390fd5b82600001828154811061398c57fe5b9060005260206000200154905092915050565b8154600090819083106139e35760405162461bcd60e51b8152600401808060200182810382526022815260200180614d736022913960400191505060405180910390fd5b60008460000184815481106139f457fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281613ab55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a7a578181015183820152602001613a62565b50505050905090810190601f168015613aa75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50846000016001820381548110613ac857fe5b9060005260206000209060020201600101549150509392505050565b6000613af8846001600160a01b0316613ff2565b613b0457506001613468565b6000613c557f150b7a0200000000000000000000000000000000000000000000000000000000613b3261332a565b88878760405160240180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613b99578181015183820152602001613b81565b50505050905090810190601f168015613bc65780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614c1a603291396001600160a01b0388169190613ff8565b90506000818060200190516020811015613c6e57600080fd5b50517fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001492505050949350505050565b60008183613d0f5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613a7a578181015183820152602001613a62565b50828481613d1957fe5b06949350505050565b60008184841115613d745760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613a7a578181015183820152602001613a62565b505050900390565b613d868383614007565b613d936000848484613ae4565b610bfe5760405162461bcd60e51b8152600401808060200182810382526032815260200180614c1a6032913960400191505060405180910390fd5b60008183613e1d5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613a7a578181015183820152602001613a62565b506000838581613e2957fe5b0495945050505050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015613f075783546000198083019190810190600090879083908110613e7e57fe5b9060005260206000200154905080876000018481548110613e9b57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080613ecb57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610cf2565b6000915050610cf2565b6000613f1d8383613e33565b613f5357508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610cf2565b506000610cf2565b600082815260018401602052604081205480613fc05750506040805180820182528381526020808201848152865460018181018955600089815284812095516002909302909501918255915190820155865486845281880190925292909120556135f8565b82856000016001830381548110613fd357fe5b90600052602060002090600202016001018190555060009150506135f8565b3b151590565b60606135f58484600085614135565b6001600160a01b038216614062576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61406b8161332e565b156140bd576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b6140c960008383610bfe565b6001600160a01b03821660009081526001602052604090206140eb9082613919565b506140f860028284613925565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060824710156141765760405162461bcd60e51b8152600401808060200182810382526026815260200180614c966026913960400191505060405180910390fd5b61417f85613ff2565b6141d0576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b6020831061420e5780518252601f1990920191602091820191016141ef565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614270576040519150601f19603f3d011682016040523d82523d6000602084013e614275565b606091505b5091509150614285828286614290565b979650505050505050565b6060831561429f5750816135f8565b8251156142af5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315613a7a578181015183820152602001613a62565b604051806060016040528061430961441a565b815260006020820181905260409091015290565b604051806101400160405280600081526020016060815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040518060e001604052806007906020820280368337509192915050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826143c4576000855561440a565b82601f106143dd57805160ff191683800117855561440a565b8280016001018555821561440a579182015b8281111561440a5782518255916020019190600101906143ef565b5061441692915061442d565b5090565b6040518060200160405280600081525090565b5b80821115614416576000815560010161442e565b600067ffffffffffffffff8084111561445757fe5b6040516020601f19601f870116820101818110838211171561447557fe5b60405284815291508183850186101561448d57600080fd5b8484602083013760006020868301015250509392505050565b8035801515811461095157600080fd5b6000602082840312156144c7578081fd5b8135610cef81614bdf565b600080604083850312156144e4578081fd5b82356144ef81614bdf565b915060208301356144ff81614bdf565b809150509250929050565b60008060006060848603121561451e578081fd5b833561452981614bdf565b9250602084013561453981614bdf565b929592945050506040919091013590565b6000806000806080858703121561455f578081fd5b843561456a81614bdf565b9350602085013561457a81614bdf565b925060408501359150606085013567ffffffffffffffff81111561459c578182fd5b8501601f810187136145ac578182fd5b6145bb87823560208401614442565b91505092959194509250565b600080604083850312156145d9578182fd5b82356145e481614bdf565b91506145f2602084016144a6565b90509250929050565b6000806040838503121561460d578182fd5b823561461881614bdf565b946020939093013593505050565b600060208284031215614637578081fd5b610cef826144a6565b600060208284031215614651578081fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114610cef578182fd5b600060208284031215614691578081fd5b5035919050565b600080604083850312156146aa578182fd5b8235915060208301356144ff81614bdf565b600080604083850312156146ce578182fd5b823591506145f2602084016144a6565b600080604083850312156146f0578182fd5b82359150602083013567ffffffffffffffff81111561470d578182fd5b8301601f8101851361471d578182fd5b61472c85823560208401614442565b9150509250929050565b60008060408385031215614748578182fd5b50508035926020909101359150565b60008060006060848603121561476b578081fd5b505081359360208301359350604090920135919050565b8060005b60078110156118a1578151845260209384019390910190600101614786565b600081518084526147bd816020860160208601614bb3565b601f01601f19169290920160200192915050565b60008084546001808216600081146147f0576001811461482557614854565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083168652607f600284041686019350614854565b600283048886526020808720875b8381101561484c5781548a820152908501908201614833565b505050860193505b5050508351614867818360208801614bb3565b01949350505050565b90815260200190565b92835260609190911b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166020830152603482015260540190565b6001600160a01b0391909116815260200190565b901515815260200190565b600060208252610cef60208301846147a5565b60208082526019908201527f4d75737420626520686967686572206f7220657175616c203000000000000000604082015260600190565b60208082526017908201527f43616e277420617761726420756e69717565206974656d000000000000000000604082015260600190565b60208082526015908201527f4d75737420626520686967686572207468616e20300000000000000000000000604082015260600190565b6020808252600c908201527f537570706c79206572726f720000000000000000000000000000000000000000604082015260600190565b6020808252600f908201527f4e6f7420656e6f75676874205745490000000000000000000000000000000000604082015260600190565b60208082526010908201527f43616e2774206177617264206974656d00000000000000000000000000000000604082015260600190565b60208082526011908201527f6d617820737472696e67206c656e677468000000000000000000000000000000604082015260600190565b60208082526009908201527f4e6f74206f776e65720000000000000000000000000000000000000000000000604082015260600190565b60208082526018908201527f5468697320747261697420646f65736e27742065786973740000000000000000604082015260600190565b9251835260208301919091521515604082015260600190565b81515181526020808301519082015260409182015115159181019190915260600190565b600061010080835284518184015260208501516101406101208181870152614b3e6102408701846147a5565b6040890151928701929092526060880151610160870152608088015161018087015260a08801516101a087015260c08801516101c087015260e08801516101e087015292870151610200860152918601516102208501525090506135f86020830184614782565b918252602082015260400190565b60005b83811015614bce578181015183820152602001614bb6565b838111156118a15750506000910152565b6001600160a01b0381168114614bf457600080fd5b5056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220967148b236f796113352c1cb4de7e85afdfdafd9459aff04a0766c1beba7595e64736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f6170692e6e66747472616465722e696f2f6e66742f000000
-----Decoded View---------------
Arg [0] : _endpoint (string): https://api.nfttrader.io/nft/
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [2] : 68747470733a2f2f6170692e6e66747472616465722e696f2f6e66742f000000
Deployed Bytecode Sourcemap
329:13414:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3481:10;-1:-1:-1;;;;;3465:38:1;;3493:9;3465:38;;;;;;:::i;:::-;;;;;;;;329:13414;;;;;965:140:4;;;;;;;;;;-1:-1:-1;965:140:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7214:99:1;;;;;;;;;;-1:-1:-1;7214:99:1;;;;;:::i;:::-;;:::i;:::-;;4500:90:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7107:209::-;;;;;;;;;;-1:-1:-1;7107:209:7;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6665:381::-;;;;;;;;;;-1:-1:-1;6665:381:7;;;;;:::i;:::-;;:::i;6175:200::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;13276:114:1:-;;;;;;;;;;-1:-1:-1;13276:114:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7955:300:7:-;;;;;;;;;;-1:-1:-1;7955:300:7;;;;;:::i;:::-;;:::i;5952:152::-;;;;;;;;;;-1:-1:-1;5952:152:7;;;;;:::i;:::-;;:::i;946:26:1:-;;;;;;;;;;;;;:::i;913:::-;;;;;;;;;;;;;:::i;13127:141::-;;;;;;;;;;-1:-1:-1;13127:141:1;;;;;:::i;:::-;;:::i;8321:149:7:-;;;;;;;;;;-1:-1:-1;8321:149:7;;;;;:::i;:::-;;:::i;6447:161::-;;;;;;;;;;-1:-1:-1;6447:161:7;;;;;:::i;:::-;;:::i;1012:22:1:-;;;;;;;;;;;;;:::i;4271:167:7:-;;;;;;;;;;-1:-1:-1;4271:167:7;;;;;:::i;:::-;;:::i;5786:87::-;;;;;;;;;;;;;:::i;4003:211::-;;;;;;;;;;-1:-1:-1;4003:211:7;;;;;:::i;:::-;;:::i;1706:145:3:-;;;;;;;;;;;;;:::i;7437:165:1:-;;;;;;;;;;-1:-1:-1;7437:165:1;;;;;:::i;:::-;;:::i;7831:269::-;;;;;;;;;;-1:-1:-1;7831:269:1;;;;;:::i;:::-;;:::i;160:17:0:-;;;;;;;;;;;;;:::i;1083:77:3:-;;;;;;;;;;;;;:::i;7610:213:1:-;;;;;;;;;;-1:-1:-1;7610:213:1;;;;;:::i;:::-;;:::i;4654:94:7:-;;;;;;;;;;;;;:::i;7383:290::-;;;;;;;;;;-1:-1:-1;7383:290:7;;;;;:::i;:::-;;:::i;9249:143:1:-;;;;;;;;;;-1:-1:-1;9249:143:1;;;;;:::i;:::-;;:::i;8788:239::-;;;;;;;;;;-1:-1:-1;8788:239:1;;;;;:::i;:::-;;:::i;8108:209::-;;;;;;;;;;-1:-1:-1;8108:209:1;;;;;:::i;:::-;;:::i;8536:282:7:-;;;;;;;;;;-1:-1:-1;8536:282:7;;;;;:::i;:::-;;:::i;1078:29:1:-;;;;;;;;;;;;;:::i;13528:212::-;;;;;;;;;;-1:-1:-1;13528:212:1;;;;;:::i;:::-;;:::i;8325:200::-;;;;;;;;;;-1:-1:-1;8325:200:1;;;;;:::i;:::-;;:::i;255:99:0:-;;;;;;;;;;-1:-1:-1;255:99:0;;;;;:::i;:::-;;:::i;813:40:1:-;;;;;;;;;;-1:-1:-1;813:40:1;;;;;:::i;:::-;;:::i;4814:740:7:-;;;;;;;;;;-1:-1:-1;4814:740:7;;;;;:::i;:::-;;:::i;7321:108:1:-;;;;;;;;;;-1:-1:-1;7321:108:1;;;;;:::i;:::-;;:::i;9400:3609::-;;;;;;;;;;-1:-1:-1;9400:3609:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;13017:102::-;;;;;;;;;;;;;:::i;1901:22::-;;;;;;;;;;-1:-1:-1;1901:22:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;7739:154:7:-;;;;;;;;;;-1:-1:-1;7739:154:7;;;;;:::i;:::-;;:::i;13398:122:1:-;;;;;;;;;;;;;:::i;2000:240:3:-;;;;;;;;;;-1:-1:-1;2000:240:3;;;;;:::i;:::-;;:::i;1042:29:1:-;;;;;;;;;;;;;:::i;979:23::-;;;;;;;;;;;;;:::i;3519:3683::-;;;;;;:::i;:::-;;:::i;9039:202::-;;;;;;;;;;-1:-1:-1;9039:202:1;;;;;:::i;:::-;;:::i;8533:247::-;;;;;;;;;;-1:-1:-1;8533:247:1;;;;;:::i;:::-;;:::i;965:140:4:-;1065:33;;;1042:4;1065:33;;;;;;;;;;;;;965:140;;;;:::o;7214:99:1:-;1297:12:3;:10;:12::i;:::-;1287:6;;-1:-1:-1;;;;;1287:6:3;;;:22;;;1279:67;;;;;-1:-1:-1;;;1279:67:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405:5:0::1;::::0;;;::::1;;;:12;397:45;;;::::0;;-1:-1:-1;;;397:45:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;7288:8:1::2;:17:::0;7214:99::o;4500:90:7:-;4578:5;4571:12;;;;;;;;-1:-1:-1;;4571:12:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4546:13;;4571:12;;4578:5;;4571:12;;4578:5;4571:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4500:90;:::o;7107:209::-;7175:7;7202:16;7210:7;7202;:16::i;:::-;7194:73;;;;-1:-1:-1;;;7194:73:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7285:24:7;;;;:15;:24;;;;;;-1:-1:-1;;;;;7285:24:7;;7107:209::o;6665:381::-;6745:13;6761:16;6769:7;6761;:16::i;:::-;6745:32;;6801:5;-1:-1:-1;;;;;6795:11:7;:2;-1:-1:-1;;;;;6795:11:7;;;6787:57;;;;-1:-1:-1;;;6787:57:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6879:5;-1:-1:-1;;;;;6863:21:7;:12;:10;:12::i;:::-;-1:-1:-1;;;;;6863:21:7;;:62;;;;6888:37;6905:5;6912:12;:10;:12::i;6888:37::-;6855:152;;;;-1:-1:-1;;;6855:152:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7018:21;7027:2;7031:7;7018:8;:21::i;:::-;6665:381;;;:::o;6175:200::-;6228:7;6347:21;:12;:19;:21::i;:::-;6340:28;;6175:200;:::o;13276:114:1:-;13335:13;;:::i;:::-;13368:6;13375;13368:14;;;;;;;;;;;;;;;;;13361:21;;;;;;;;13368:14;;;;;;;13361:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13276:114:1;;;:::o;7955:300:7:-;8114:41;8133:12;:10;:12::i;:::-;8147:7;8114:18;:41::i;:::-;8106:103;;;;-1:-1:-1;;;8106:103:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8220:28;8230:4;8236:2;8240:7;8220:9;:28::i;5952:152::-;-1:-1:-1;;;;;6067:20:7;;6041:7;6067:20;;;:13;:20;;;;;:30;;6091:5;6067:23;:30::i;:::-;6060:37;;5952:152;;;;;:::o;946:26:1:-;;;;:::o;913:::-;;;;:::o;13127:141::-;13193:7;13220:30;;;:16;:30;;;;;:40;;:38;:40::i;8321:149:7:-;8424:39;8441:4;8447:2;8451:7;8424:39;;;;;;;;;;;;:16;:39::i;6447:161::-;6514:7;;6555:22;:12;6571:5;6555:15;:22::i;:::-;-1:-1:-1;6533:44:7;6447:161;-1:-1:-1;;;6447:161:7:o;1012:22:1:-;;;;;;;;;;;;;;;-1:-1:-1;;1012:22:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4271:167:7:-;4335:7;4361:70;4378:7;4361:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;5786:87::-;5858:8;5851:15;;;;;;;;-1:-1:-1;;5851:15:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5826:13;;5851:15;;5858:8;;5851:15;;5858:8;5851:15;;;;;;;;;;;;;;;;;;;;;;;;4003:211;4067:7;-1:-1:-1;;;;;4094:19:7;;4086:74;;;;-1:-1:-1;;;4086:74:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4178:20:7;;;;;;:13;:20;;;;;:29;;:27;:29::i;1706:145:3:-;1297:12;:10;:12::i;:::-;1287:6;;-1:-1:-1;;;;;1287:6:3;;;:22;;;1279:67;;;;;-1:-1:-1;;;1279:67:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1796:6:::1;::::0;1775:40:::1;::::0;1812:1:::1;::::0;-1:-1:-1;;;;;1796:6:3::1;::::0;1775:40:::1;::::0;1812:1;;1775:40:::1;1825:6;:19:::0;;;::::1;::::0;;1706:145::o;7437:165:1:-;1297:12:3;:10;:12::i;:::-;1287:6;;-1:-1:-1;;;;;1287:6:3;;;:22;;;1279:67;;;;;-1:-1:-1;;;1279:67:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405:5:0::1;::::0;;;::::1;;;:12;397:45;;;::::0;;-1:-1:-1;;;397:45:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;7517:43:1::2;::::0;::::2;;;;;;;;;7571:14;:23:::0;7437:165::o;7831:269::-;1297:12:3;:10;:12::i;:::-;1287:6;;-1:-1:-1;;;;;1287:6:3;;;:22;;;1279:67;;;;;-1:-1:-1;;;1279:67:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405:5:0::1;::::0;;;::::1;;;:12;397:45;;;::::0;;-1:-1:-1;;;397:45:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;766:2:1::2;7957:6;:20;7936:70;;;;-1:-1:-1::0;;;7936:70:1::2;;;;;;;:::i;:::-;8038:5;8017:10;8028:6;8017:18;;;;;;;;:26:::0;-1:-1:-1;8054:26:1::2;::::0;;;:18:::2;:26;::::0;;;;;:38;7831:269::o;160:17:0:-;;;;;;;;;:::o;1083:77:3:-;1147:6;;-1:-1:-1;;;;;1147:6:3;1083:77;:::o;7610:213:1:-;1297:12:3;:10;:12::i;:::-;1287:6;;-1:-1:-1;;;;;1287:6:3;;;:22;;;1279:67;;;;;-1:-1:-1;;;1279:67:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405:5:0::1;::::0;;;::::1;;;:12;397:45;;;::::0;;-1:-1:-1;;;397:45:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;766:2:1::2;7720:12;:27;;7693:84;;;;-1:-1:-1::0;;;7693:84:1::2;;;;;;;:::i;:::-;7788:11;:26:::0;7610:213::o;4654:94:7:-;4734:7;4727:14;;;;;;;;-1:-1:-1;;4727:14:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4702:13;;4727:14;;4734:7;;4727:14;;4734:7;4727:14;;;;;;;;;;;;;;;;;;;;;;;;7383:290;7497:12;:10;:12::i;:::-;-1:-1:-1;;;;;7485:24:7;:8;-1:-1:-1;;;;;7485:24:7;;;7477:62;;;;;-1:-1:-1;;;7477:62:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;7595:8;7550:18;:32;7569:12;:10;:12::i;:::-;-1:-1:-1;;;;;7550:32:7;;;;;;;;;;;;;;;;;-1:-1:-1;7550:32:7;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;;7633:12;:10;:12::i;:::-;-1:-1:-1;;;;;7618:48:7;;7657:8;7618:48;;;;;;;;;;;;;;;;;;;;7383:290;;:::o;9249:143:1:-;1297:12:3;:10;:12::i;:::-;1287:6;;-1:-1:-1;;;;;1287:6:3;;;:22;;;1279:67;;;;;-1:-1:-1;;;1279:67:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405:5:0::1;::::0;;;::::1;;;:12;397:45;;;::::0;;-1:-1:-1;;;397:45:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;9376:8:1::2;9345:6;9352:12;9345:20;;;;;;;;;::::0;;;::::2;::::0;;;::::2;::::0;;::::2;;:28;;:39:::0;;;::::2;::::0;::::2;;::::0;;;::::2;::::0;;-1:-1:-1;;9249:143:1:o;8788:239::-;1297:12:3;:10;:12::i;:::-;1287:6;;-1:-1:-1;;;;;1287:6:3;;;:22;;;1279:67;;;;;-1:-1:-1;;;1279:67:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405:5:0::1;::::0;;;::::1;;;:12;397:45;;;::::0;;-1:-1:-1;;;397:45:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;8926:26:1::2;:14;:24;:26::i;:::-;8975:43;::::0;;8982:19;;;;;-1:-1:-1;8975:43:1::2;::::0;::::2;8982:19:::0;;;8975:43;;8982:19:::2;8975:43:::0;::::2;::::0;;;9013:4:::2;8975:43:::0;;;;;;8963:6:::2;:56:::0;;;;::::2;::::0;;;;;;;;;::::2;::::0;;::::2;::::0;;::::2;::::0;;;;;;;;;;;;;;;;::::2;::::0;::::2;;::::0;;;::::2;::::0;;8788:239::o;8108:209::-;1297:12:3;:10;:12::i;:::-;1287:6;;-1:-1:-1;;;;;1287:6:3;;;:22;;;1279:67;;;;;-1:-1:-1;;;1279:67:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405:5:0::1;::::0;;;::::1;;;:12;397:45;;;::::0;;-1:-1:-1;;;397:45:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;8212:1:1::2;8199:12;:14;:46;;;;;725:1;8217:12;:28;;8199:46;8191:80;;;;-1:-1:-1::0;;;8191:80:1::2;;;;;;;:::i;:::-;8282:11;:26:::0;8108:209::o;8536:282:7:-;8667:41;8686:12;:10;:12::i;:::-;8700:7;8667:18;:41::i;:::-;8659:103;;;;-1:-1:-1;;;8659:103:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8772:39;8786:4;8792:2;8796:7;8805:5;8772:13;:39::i;:::-;8536:282;;;;:::o;1078:29:1:-;;;-1:-1:-1;;;;;1078:29:1;;:::o;13528:212::-;1297:12:3;:10;:12::i;:::-;1287:6;;-1:-1:-1;;;;;1287:6:3;;;:22;;;1279:67;;;;;-1:-1:-1;;;1279:67:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405:5:0::1;::::0;;;::::1;;;:12;397:45;;;::::0;;-1:-1:-1;;;397:45:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;13667:7:1::2;13643:21;:31;;13635:59;;;;-1:-1:-1::0;;;13635:59:1::2;;;;;;;:::i;:::-;13705:27;::::0;-1:-1:-1;;;;;13705:18:1;::::2;::::0;:27;::::2;;;::::0;13724:7;;13705:27:::2;::::0;;;13724:7;13705:18;:27;::::2;;;;;;;;;;;;;::::0;::::2;;;;8325:200:::0;1297:12:3;:10;:12::i;:::-;1287:6;;-1:-1:-1;;;;;1287:6:3;;;:22;;;1279:67;;;;;-1:-1:-1;;;1279:67:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405:5:0::1;::::0;;;::::1;;;:12;397:45;;;::::0;;-1:-1:-1;;;397:45:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;725:1:1::2;8432:6;:21;8411:71;;;;-1:-1:-1::0;;;8411:71:1::2;;;;;;;:::i;:::-;8493:16;::::0;;;:8:::2;:16;::::0;;;;;:24;8325:200::o;255:99:0:-;1297:12:3;:10;:12::i;:::-;1287:6;;-1:-1:-1;;;;;1287:6:3;;;:22;;;1279:67;;;;;-1:-1:-1;;;1279:67:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326:5:0::1;:20:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;255:99::o;813:40:1:-;;;;;;;;;;;;;;;-1:-1:-1;813:40:1;:::o;4814:740:7:-;4879:13;4912:16;4920:7;4912;:16::i;:::-;4904:76;;;;-1:-1:-1;;;4904:76:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4991:23;5017:19;;;:10;:19;;;;;;;;4991:45;;;;;;;;;;;-1:-1:-1;;4991:45:7;;;;;;;;;;;;;;;;;;;;;;;;;;;5017:19;;4991:45;;;5017:19;4991:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5115:8:7;5109:22;4991:45;;-1:-1:-1;;;;5109:22:7;-1:-1:-1;;5109:22:7;;;;;;;;;;;5105:74;;5159:9;-1:-1:-1;5152:16:7;;5105:74;5281:23;;:27;5277:110;;5355:8;5365:9;5338:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5338:37:7;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5338:37:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5324:52;;;;;5277:110;5517:8;5527:18;:7;:16;:18::i;:::-;5500:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5500:46:7;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5500:46:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5486:61;;;4814:740;;;:::o;7321:108:1:-;1297:12:3;:10;:12::i;:::-;1287:6;;-1:-1:-1;;;;;1287:6:3;;;:22;;;1279:67;;;;;-1:-1:-1;;;1279:67:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405:5:0::1;::::0;;;::::1;;;:12;397:45;;;::::0;;-1:-1:-1;;;397:45:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;7396:14:1::2;:25:::0;;;::::2;-1:-1:-1::0;;;;;7396:25:1;;;::::2;::::0;;;::::2;::::0;;7321:108::o;9400:3609::-;9458:18;;:::i;:::-;9478:30;;:::i;:::-;9525:9;9551:16;9582:35;;:::i;:::-;9676:11;;;;:8;:11;;;;;;;;;9642:21;;;;;;;;;:29;;;:46;;:33;:46::i;:::-;9632:4;9637:1;9632:7;;;;;;;;;;;;;;;:56;;;;9706:21;;;;;;;;;;:28;;;9703:3251;;9804:21;;;;:11;:21;;;;;;;;:29;;;9787:47;;;;9804:29;9787:47;;:::i;:::-;;;;;;;;;;;;;9777:58;;;;;;9769:67;;9758:78;;9861:1;9859:3;;9855:277;9866:21;;;;:11;:21;;;;;:28;;;9864:30;;9855:277;;;9947:11;;;;:8;:11;;;;;;9934:25;;:8;;:12;:25::i;:::-;9924:4;9929:1;9924:7;;;;;;;;;;:35;;;;;9992:40;10004:11;:21;10016:8;10004:21;;;;;;;;;;;:27;;;9992:4;9997:1;9992:7;;;;;;;;;;;;:11;:40::i;:::-;9982:4;9987:1;9982:7;;;;;;;;;;:50;;;;;10101:8;10084:26;;;;;;;;:::i;:::-;;;;-1:-1:-1;;10084:26:1;;;;;;;;;10074:37;;10084:26;10074:37;;;;9896:3;;;;;10074:37;-1:-1:-1;9855:277:1;;;9703:3251;;;10185:9;10259:21;;;:11;:21;;;;;:29;;;10185:9;;10259:38;;10293:3;10259:33;:38::i;:::-;10249:4;10254:1;10249:7;;;;;;;;;;:48;10316:850;10322:11;10316:850;;766:2;10361:1;:16;10358:763;;;10428:11;;;;:8;:11;;;;;;10416:24;;:4;10437:1;10416:7;;;;;;;;;;;;:11;:24::i;:::-;10406:4;10411:1;10406:7;;;;;;;;;;:34;-1:-1:-1;10472:4:1;10358:763;;;10557:4;10554:544;;10606:1;10597:4;10602:1;10597:7;;;;;;;;;;;:10;;:36;;;;;10620:10;10631:1;10620:13;;;;;;;;;10611:4;10616:1;10611:7;;;;;;;;;;;:22;;10597:36;10594:185;;;10680:21;;;;:18;:21;;;;;;10670:4;10675:1;10670:7;;;;;;10594:185;10554:544;;;10879:10;10890:8;:1;10896;10890:5;:8::i;:::-;10879:20;;;;;;;;;10871:4;10876:1;10871:7;;;;;;;;;;;:28;:54;;;;;10912:10;10923:1;10912:13;;;;;;;;;10903:4;10908:1;10903:7;;;;;;;;;;;:22;;10871:54;10868:203;;;10972:21;;;;:18;:21;;;;;;10962:4;10967:1;10962:7;;;;;;;;;;:31;-1:-1:-1;11035:4:1;10868:203;11143:3;;;;;10316:850;;;11224:21;;;;:11;:21;;;;;:27;;;11212:40;;:4;11217:1;11212:7;;;;;;:40;11202:4;11207:1;11202:7;;;;;;;;;;:50;;;;;11317:11;:21;11329:8;11317:21;;;;;;;;;;;:29;;;11300:47;;;;;;;;:::i;:::-;;;;;;;;;;;;;11290:58;;;;;;11282:67;;11271:78;;11392:1;11390:3;;11386:1553;11397:21;;;;:11;:21;;;;;:28;;;11395:30;;11386:1553;;;11460:11;;11458:1;:13;11455:1312;;;11510:17;:8;11523:3;11510:12;:17::i;:::-;11500:4;11505:1;11500:7;;;;;;;;;;:27;-1:-1:-1;11556:1:1;;-1:-1:-1;11556:1:1;11621:1010;11627:11;11621:1010;;766:2;11674:1;:16;11671:899;;;11749:11;;;;:8;:11;;;;;;11737:24;;:4;11758:1;11737:7;;;;;;:24;11727:4;11732:1;11727:7;;;;;;;;;;:34;-1:-1:-1;11801:4:1;11671:899;;;11910:4;11907:632;;11967:1;11958:4;11963:1;11958:7;;;;;;;;;;;:10;;:36;;;;;11981:10;11992:1;11981:13;;;;;;;;;11972:4;11977:1;11972:7;;;;;;;;;;;:22;;11958:36;11955:209;;;12049:21;;;;:18;:21;;;;;;12039:4;12044:1;12039:7;;;;;;11955:209;11907:632;;;12288:10;12299:8;:1;12305;12299:5;:8::i;:::-;12288:20;;;;;;;;;12280:4;12285:1;12280:7;;;;;;;;;;;:28;:54;;;;;12321:10;12332:1;12321:13;;;;;;;;;12312:4;12317:1;12312:7;;;;;;;;;;;:22;;12280:54;12277:227;;;12389:21;;;;:18;:21;;;;;;12379:4;12384:1;12379:7;;;;;;;;;;:31;-1:-1:-1;12460:4:1;12277:227;12600:3;;;;;11621:1010;;;11455:1312;;;12731:11;;;;:8;:11;;;;;;12718:25;;:8;;:12;:25::i;:::-;12708:4;12713:1;12708:7;;;;;;;;;;:35;11455:1312;12811:21;;;;:11;:21;;;;;:27;;;12799:40;;:4;12804:1;12799:7;;;;;;:40;12789:4;12794:1;12789:7;;;;;;;;;;:50;;;;;12908:8;12891:26;;;;;;;;:::i;:::-;;;;-1:-1:-1;;12891:26:1;;;;;;;;;12881:37;;12891:26;12881:37;;;;11427:3;;;;;12881:37;-1:-1:-1;11386:1553:1;;;9703:3251;;;12973:11;:21;12985:8;12973:21;;;;;;;;;;;12996:4;12966:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9400:3609;;;:::o;13017:102::-;13060:7;13087:24;:14;:22;:24::i;1901:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1901:22:1;;;;:::o;7739:154:7:-;-1:-1:-1;;;;;7851:25:7;;;7828:4;7851:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7739:154::o;13398:122:1:-;13464:7;1297:12:3;:10;:12::i;:::-;1287:6;;-1:-1:-1;;;;;1287:6:3;;;:22;;;1279:67;;;;;-1:-1:-1;;;1279:67:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405:5:0::1;::::0;;;::::1;;;:12;397:45;;;::::0;;-1:-1:-1;;;397:45:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;13491:21:1::2;13398:122:::0;:::o;2000:240:3:-;1297:12;:10;:12::i;:::-;1287:6;;-1:-1:-1;;;;;1287:6:3;;;:22;;;1279:67;;;;;-1:-1:-1;;;1279:67:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2088:22:3;::::1;2080:73;;;;-1:-1:-1::0;;;2080:73:3::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2189:6;::::0;2168:38:::1;::::0;-1:-1:-1;;;;;2168:38:3;;::::1;::::0;2189:6:::1;::::0;2168:38:::1;::::0;2189:6:::1;::::0;2168:38:::1;2216:6;:17:::0;;;::::1;-1:-1:-1::0;;;;;2216:17:3;;;::::1;::::0;;;::::1;::::0;;2000:240::o;1042:29:1:-;;;;:::o;979:23::-;;;;:::o;3519:3683::-;405:5:0;;;;;;;:12;397:45;;;;;-1:-1:-1;;;397:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3633:6:1::1;3655:7;3652:3543;;;3687:10:::0;;:37;::::1;;;;3701:6;3708:7;3701:15;;;;;;;;;::::0;;;::::1;::::0;;;:23:::1;:15;::::0;;::::1;;:23;::::0;::::1;;3687:37;:106;;;;;3768:6;3775:7;3768:15;;;;;;;;;;;;;;;;;;:25;;;3728:39;:6;3735:7;3728:15;;;;;;;;;;;;;;;;;;:29;;:37;:39::i;:::-;:65;3687:106;:136;;;;-1:-1:-1::0;3809:14:1::1;::::0;-1:-1:-1;;;;;3809:14:1::1;3797:10;:26;3687:136;3679:172;;;;-1:-1:-1::0;;;3679:172:1::1;;;;;;;:::i;:::-;3866:21;:9;:19;:21::i;:::-;3902:41;:6;3909:7;3902:15;;;;;;;;;;;;;;;;;;:29;;:39;:41::i;:::-;3993:66;;;;;;;;4005:7;3993:66;;;;;;;;;;;;;;;::::0;::::1;;;;4018:1;3993:66;;;;4021:1;3993:66;;;;4024:1;3993:66;;;;4027:1;3993:66;;;;4030:1;3993:66;;;;4033:1;3993:66;;;;4036:1;3993:66;;;;4039:19;:9;:17;:19::i;:::-;3993:66:::0;;3958:11:::1;:32;3970:19;:9;:17;:19::i;:::-;3958:32:::0;;::::1;::::0;;::::1;::::0;;;;;;-1:-1:-1;3958:32:1;:101;;;;;;::::1;::::0;;;:32;;:101:::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;3958:101:1::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;4119:10:::1;4098:19;:9;:17;:19::i;:::-;4089:7:::0;4079:96:::1;799:5;4149:15;:20;4132:15;:38;4173:1;4079:96;;;;;;;:::i;:::-;;;;;;;;4190:42;4200:10;4212:19;:9;:17;:19::i;:::-;4190:9;:42::i;:::-;4247:101;4260:19;:9;:17;:19::i;:::-;4305:8;4315:30;:19;:9;:17;:19::i;:::-;:28;:30::i;:::-;4288:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4247:12;:101::i;:::-;4363:14;:27:::0;;;::::1;::::0;;3652:3543:::1;;;4451:8;;4440:9;:19;;:32;;;;;4471:1;4463:7;:9;4440:32;:59;;;;;4476:6;4483:7;4476:15;;;;;;;;;::::0;;;::::1;::::0;;;:23:::1;:15;::::0;;::::1;;:23;::::0;::::1;;4440:59;:130;;;;;4545:6;4552:7;4545:15;;;;;;;;;;;;;;;;;;:25;;;4503:39;:6;4510:7;4503:15;;;;;;;:39;:67;4440:130;4432:159;;;;-1:-1:-1::0;;;4432:159:1::1;;;;;;;:::i;:::-;4606:21;:9;:19;:21::i;:::-;4677:60;;;;;;;;4689:1;4677:60;;;;;;;;;;;;;;;::::0;::::1;;;;4696:1;4677:60;;;;4699:1;4677:60;;;;4702:1;4677:60;;;;4705:1;4677:60;;;;4708:1;4677:60;;;;4711:1;4677:60;;;;4714:1;4677:60;;;;4717:19;:9;:17;:19::i;:::-;4677:60:::0;;4642:11:::1;:32;4654:19;:9;:17;:19::i;:::-;4642:32:::0;;::::1;::::0;;::::1;::::0;;;;;;-1:-1:-1;4642:32:1;:95;;;;;;::::1;::::0;;;:32;;:95:::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4752:41;:6;4759:7;4752:15;;;;;;;:41;4860:7;4808:11;:32;4820:19;:9;:17;:19::i;:::-;4808:32:::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;4808:32:1;:59;4925:108:::1;5013:19;:9;:17;:19::i;:::-;4960:16;4978:10;4990:15;4943:63;;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;4943:63:1;;::::1;::::0;;;;;;4933:74;;4943:63:::1;4933:74:::0;;::::1;::::0;;4925:87:::1;:108::i;:::-;4882:11;:32;4894:19;:9;:17;:19::i;:::-;4882:32;;;;;;;;;;;:40;;:151;;;;5089:14;;5048:11;:32;5060:19;:9;:17;:19::i;:::-;5048:32;;;;;;;;;;;:38;;:55;;;;5165:16;5119:11;:32;5131:19;:9;:17;:19::i;:::-;5119:32;;;;;;;;;;;:43;;:62;;;;5242:15;5197:11;:32;5209:19;:9;:17;:19::i;:::-;5197:32;;;;;;;;;;;:42;;:60;;;;5315:11;;5273;:32;5285:19;:9;:17;:19::i;:::-;5273:32;;;;;;;;;;;:39;;:53;;;;5384:11;;5342;:32;5354:19;:9;:17;:19::i;:::-;5342:32;;;;;;;;;;;:39;;:53;;;;5416:11;:32;5428:19;:9;:17;:19::i;:::-;5416:32;;;;;;;;;;;:39;;;5457:1;5416:42;5413:1346;;;5528:11;::::0;;;:8:::1;:11;::::0;;;;;5483:57:::1;::::0;5528:11;;;5495:19:::1;:9;:17;:19::i;:::-;5483:32;;;;;;;;;;;:40;;;:44;;:57;;;;:::i;:::-;5479:61;;5563:45;5569:11;:32;5581:19;:9;:17;:19::i;:::-;5569:32;;;;;;;;;;;:38;;;5563:1;:5;;:45;;;;:::i;:::-;5627:19;::::0;;;:16:::1;:19;::::0;;;;5559:49;;-1:-1:-1;5627:31:1::1;::::0;:29:::1;:31::i;:::-;5413:1346;;;5712:9;5742::::0;5780:49:::1;5825:3;5780:11;:32;5792:19;:9;:17;:19::i;5780:49::-;5776:53;;5848:802;5854:11:::0;5848:802:::1;;766:2;5893:1;:16;5890:715;;;5948:11;::::0;;:8:::1;:11;::::0;;;5942:18:::1;::::0;:1;;:5:::1;:18::i;:::-;5938:22;;5992:4;5987:9;;5890:715;;;6077:4:::0;6074:508:::1;;6128:10;6139:1;6128:13;;;;;;;;;6125:1;:16;6114:167;;-1:-1:-1::0;6182:21:1::1;::::0;;;:18:::1;:21;::::0;;;;;;-1:-1:-1;6245:4:1::1;6114:167;6074:508;;;6375:10;6386:8;:1:::0;6392::::1;6386:5;:8::i;:::-;6375:20;;;;;;;;;6373:1;:22;:42;;;;;6402:10;6413:1;6402:13;;;;;;;;;6399:1;:16;;6373:42;6370:185;;;-1:-1:-1::0;6456:21:1::1;::::0;;;:18:::1;:21;::::0;;;;;;-1:-1:-1;6519:4:1::1;6370:185;6627:3;::::0;;::::1;::::0;5848:802:::1;;;6678:14;::::0;6672:21:::1;::::0;:1;;:5:::1;:21::i;:::-;6712:19;::::0;;;:16:::1;:19;::::0;;;;6668:25;;-1:-1:-1;6712:31:1::1;::::0;:29:::1;:31::i;:::-;5413:1346;;;6826:19;::::0;;;:16:::1;:19;::::0;;;;:29:::1;::::0;:27:::1;:29::i;:::-;6775:11;:32;6787:19;:9;:17;:19::i;:::-;6775:32:::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;6775:32:1;:48:::1;;:80:::0;6915:10:::1;6894:19;:9;:17;:19::i;:::-;6885:7:::0;6875:135:::1;799:5;6945:15;:20;6928:15;:38;6969:11;:32;6981:19;:9;:17;:19::i;:::-;6969:32;;;;;;;;;;;:40;;;6875:135;;;;;;;:::i;:::-;;;;;;;;7025:42;7035:10;7047:19;:9;:17;:19::i;7025:42::-;7082:101;7095:19;:9;:17;:19::i;9039:202::-:0;1297:12:3;:10;:12::i;:::-;1287:6;;-1:-1:-1;;;;;1287:6:3;;;:22;;;1279:67;;;;;-1:-1:-1;;;1279:67:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405:5:0::1;::::0;;;::::1;;;:12;397:45;;;::::0;;-1:-1:-1;;;397:45:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;9145:6:1::2;9152:7;9145:15;;;;;;;;;;;;;;;;;;:25;;;9137:7;:33;9129:58;;;;-1:-1:-1::0;;;9129:58:1::2;;;;;;;:::i;:::-;9226:7;9198:6;9205:7;9198:15;;;;;;;;;;;;;;;;;;:25;;:35;;;;9039:202:::0;;:::o;8533:247::-;8634:10;8615:17;8623:8;8615:7;:17::i;:::-;-1:-1:-1;;;;;8615:29:1;;8607:51;;;;-1:-1:-1;;;8607:51:1;;;;;;;:::i;:::-;8698:2;8683:5;8677:19;:23;;8669:53;;;;-1:-1:-1;;;8669:53:1;;;;;;;:::i;:::-;8733:21;;;;:11;:21;;;;;;;:39;;;;:31;;;;;:39;;;;:::i;1224:178:13:-;1376:19;;1394:1;1376:19;;;1224:178::o;598:104:2:-;685:10;598:104;:::o;10252:117:7:-;10309:4;10332:30;:12;10354:7;10332:21;:30::i;15908:155::-;15973:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;15973:29:7;;;;;;;;:24;;16026:16;15973:24;16026:7;:16::i;:::-;-1:-1:-1;;;;;16017:39:7;;;;;;;;;;;15908:155;;:::o;7031:121:14:-;7100:7;7126:19;7134:3;7126:7;:19::i;10527:329:7:-;10612:4;10636:16;10644:7;10636;:16::i;:::-;10628:73;;;;-1:-1:-1;;;10628:73:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10711:13;10727:16;10735:7;10727;:16::i;:::-;10711:32;;10772:5;-1:-1:-1;;;;;10761:16:7;:7;-1:-1:-1;;;;;10761:16:7;;:51;;;;10805:7;-1:-1:-1;;;;;10781:31:7;:20;10793:7;10781:11;:20::i;:::-;-1:-1:-1;;;;;10781:31:7;;10761:51;:87;;;;10816:32;10833:5;10840:7;10816:16;:32::i;:::-;10753:96;10527:329;-1:-1:-1;;;;10527:329:7:o;13521:559::-;13638:4;-1:-1:-1;;;;;13618:24:7;:16;13626:7;13618;:16::i;:::-;-1:-1:-1;;;;;13618:24:7;;13610:78;;;;-1:-1:-1;;;13610:78:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13706:16:7;;13698:65;;;;-1:-1:-1;;;13698:65:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13774:39;13795:4;13801:2;13805:7;13774:20;:39::i;:::-;13875:29;13892:1;13896:7;13875:8;:29::i;:::-;-1:-1:-1;;;;;13915:19:7;;;;;;:13;:19;;;;;:35;;13942:7;13915:26;:35::i;:::-;-1:-1:-1;;;;;;13960:17:7;;;;;;:13;:17;;;;;:30;;13982:7;13960:21;:30::i;:::-;-1:-1:-1;14001:29:7;:12;14018:7;14027:2;14001:16;:29::i;:::-;;14065:7;14061:2;-1:-1:-1;;;;;14046:27:7;14055:4;-1:-1:-1;;;;;14046:27:7;;;;;;;;;;;13521:559;;;:::o;9214:135:15:-;9285:7;9319:22;9323:3;9335:5;9319:3;:22::i;1106:112:13:-;1197:14;;1106:112::o;7480:224:14:-;7560:7;;;;7619:22;7623:3;7635:5;7619:3;:22::i;:::-;7588:53;;;;-1:-1:-1;7480:224:14;-1:-1:-1;;;;;7480:224:14:o;8123:202::-;8230:7;8272:44;8277:3;8297;8303:12;8272:4;:44::i;:::-;8264:53;-1:-1:-1;8123:202:14;;;;;;:::o;9680:269:7:-;9793:28;9803:4;9809:2;9813:7;9793:9;:28::i;:::-;9839:48;9862:4;9868:2;9872:7;9881:5;9839:22;:48::i;:::-;9831:111;;;;-1:-1:-1;;;9831:111:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210:723:16;266:13;483:10;479:51;;-1:-1:-1;509:10:16;;;;;;;;;;;;;;;;;;;479:51;554:5;539:12;593:75;600:9;;593:75;;625:8;;655:2;647:10;;;;593:75;;;677:19;709:6;699:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;699:17:16;-1:-1:-1;769:5:16;;-1:-1:-1;677:39:16;-1:-1:-1;;;742:10:16;;784:112;791:9;;784:112;;857:2;850:4;:9;845:2;:14;834:27;;816:6;823:7;;;;;;;816:15;;;;;;;;;;;:45;;;;;;;;;;-1:-1:-1;883:2:16;875:10;;;;784:112;;;-1:-1:-1;919:6:16;210:723;-1:-1:-1;;;;210:723:16:o;4444:128:6:-;4502:7;4528:37;4532:1;4535;4528:37;;;;;;;;;;;;;;;;;:3;:37::i;882:176::-;940:7;971:5;;;994:6;;;;986:46;;;;;-1:-1:-1;;;986:46:6;;;;;;;;;;;;;;;;;;;;;;;;;;;1329:134;1387:7;1413:43;1417:1;1420;1413:43;;;;;;;;;;;;;;;;;:3;:43::i;11187:108:7:-;11262:26;11272:2;11276:7;11262:26;;;;;;;;;;;;:9;:26::i;:::-;11187:108;;:::o;14227:212::-;14326:16;14334:7;14326;:16::i;:::-;14318:73;;;;-1:-1:-1;;;14318:73:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14401:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;3109:130:6:-;3167:7;3193:39;3197:1;3200;3193:39;;;;;;;;;;;;;;;;;:3;:39::i;6799:149:14:-;6883:4;6906:35;6916:3;6936;6906:9;:35::i;8329:135:15:-;8399:4;8422:35;8430:3;8450:5;8422:7;:35::i;8032:129::-;8099:4;8122:32;8127:3;8147:5;8122:4;:32::i;6247:174:14:-;6336:4;6359:55;6364:3;6384;-1:-1:-1;;;;;6398:14:14;;6359:4;:55::i;4452:201:15:-;4546:18;;4519:7;;4546:26;-1:-1:-1;4538:73:15;;;;-1:-1:-1;;;4538:73:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4628:3;:11;;4640:5;4628:18;;;;;;;;;;;;;;;;4621:25;;4452:201;;;;:::o;4942:274:14:-;5045:19;;5009:7;;;;5045:27;-1:-1:-1;5037:74:14;;;;-1:-1:-1;;;5037:74:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5122:22;5147:3;:12;;5160:5;5147:19;;;;;;;;;;;;;;;;;;5122:44;;5184:5;:10;;;5196:5;:12;;;5176:33;;;;;4942:274;;;;;:::o;5623:315::-;5717:7;5755:17;;;:12;;;:17;;;;;;5805:12;5790:13;5782:36;;;;-1:-1:-1;;;5782:36:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5871:3;:12;;5895:1;5884:8;:12;5871:26;;;;;;;;;;;;;;;;;;:33;;;5864:40;;;5623:315;;;;;:::o;15313:589:7:-;15433:4;15458:15;:2;-1:-1:-1;;;;;15458:13:7;;:15::i;:::-;15453:58;;-1:-1:-1;15496:4:7;15489:11;;15453:58;15520:23;15546:246;15598:45;15657:12;:10;:12::i;:::-;15683:4;15701:7;15722:5;15562:175;;;;;;-1:-1:-1;;;;;15562:175:7;;;;;;-1:-1:-1;;;;;15562:175:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15546:246;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15546:15:7;;;:246;:15;:246::i;:::-;15520:272;;15802:13;15829:10;15818:32;;;;;;;;;;;;;;;-1:-1:-1;15818:32:7;15868:26;;15878:16;15868:26;;-1:-1:-1;;;15313:589:7;;;;;;:::o;5043:163:6:-;5129:7;5164:12;5156:6;5148:29;;;;-1:-1:-1;;;5148:29:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5198:1;5194;:5;;;;;;;5043:163;-1:-1:-1;;;;5043:163:6:o;1754:187::-;1840:7;1875:12;1867:6;;;;1859:29;;;;-1:-1:-1;;;1859:29:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1910:5:6;;;1754:187::o;11516:247:7:-;11611:18;11617:2;11621:7;11611:5;:18::i;:::-;11647:54;11678:1;11682:2;11686:7;11695:5;11647:22;:54::i;:::-;11639:117;;;;-1:-1:-1;;;11639:117:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3721:272:6;3807:7;3841:12;3834:5;3826:28;;;;-1:-1:-1;;;3826:28:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3864:9;3880:1;3876;:5;;;;;;;3721:272;-1:-1:-1;;;;;3721:272:6:o;4278:123:14:-;4349:4;4372:17;;;:12;;;;;:17;;;;;;:22;;;4278:123::o;2212:1512:15:-;2278:4;2415:19;;;:12;;;:19;;;;;;2449:15;;2445:1273;;2878:18;;-1:-1:-1;;2830:14:15;;;;2878:22;;;;2806:21;;2878:3;;:22;;3160;;;;;;;;;;;;;;3140:42;;3303:9;3274:3;:11;;3286:13;3274:26;;;;;;;;;;;;;;;;;;;:38;;;;3378:23;;;3420:1;3378:12;;;:23;;;;;;3404:17;;;3378:43;;3527:17;;3378:3;;3527:17;;;;;;;;;;;;;;;;;;;;;;3619:3;:12;;:19;3632:5;3619:19;;;;;;;;;;;3612:26;;;3660:4;3653:11;;;;;;;;2445:1273;3702:5;3695:12;;;;;1640:404;1703:4;1724:21;1734:3;1739:5;1724:9;:21::i;:::-;1719:319;;-1:-1:-1;1761:23:15;;;;;;;;:11;:23;;;;;;;;;;;;;1941:18;;1919:19;;;:12;;;:19;;;;;;:40;;;;1973:11;;1719:319;-1:-1:-1;2022:5:15;2015:12;;1836:678:14;1912:4;2045:17;;;:12;;;:17;;;;;;2077:13;2073:435;;-1:-1:-1;;2161:38:14;;;;;;;;;;;;;;;;;;2143:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;2355:19;;2335:17;;;:12;;;:17;;;;;;;:39;2388:11;;2073:435;2466:5;2430:3;:12;;2454:1;2443:8;:12;2430:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;2492:5;2485:12;;;;;726:413:12;1086:20;1124:8;;;726:413::o;3581:193::-;3684:12;3715:52;3737:6;3745:4;3751:1;3754:12;3715:21;:52::i;12085:393:7:-;-1:-1:-1;;;;;12164:16:7;;12156:61;;;;;-1:-1:-1;;;12156:61:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12236:16;12244:7;12236;:16::i;:::-;12235:17;12227:58;;;;;-1:-1:-1;;;12227:58:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;12296:45;12325:1;12329:2;12333:7;12296:20;:45::i;:::-;-1:-1:-1;;;;;12352:17:7;;;;;;:13;:17;;;;;:30;;12374:7;12352:21;:30::i;:::-;-1:-1:-1;12393:29:7;:12;12410:7;12419:2;12393:16;:29::i;:::-;-1:-1:-1;12438:33:7;;12463:7;;-1:-1:-1;;;;;12438:33:7;;;12455:1;;12438:33;;12455:1;;12438:33;12085:393;;:::o;4608:523:12:-;4735:12;4792:5;4767:21;:30;;4759:81;;;;-1:-1:-1;;;4759:81:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4858:18;4869:6;4858:10;:18::i;:::-;4850:60;;;;;-1:-1:-1;;;4850:60:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;4981:12;4995:23;5022:6;-1:-1:-1;;;;;5022:11:12;5042:5;5050:4;5022:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5022:33:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4980:75;;;;5072:52;5090:7;5099:10;5111:12;5072:17;:52::i;:::-;5065:59;4608:523;-1:-1:-1;;;;;;;4608:523:12:o;6111:725::-;6226:12;6254:7;6250:580;;;-1:-1:-1;6284:10:12;6277:17;;6250:580;6395:17;;:21;6391:429;;6653:10;6647:17;6713:15;6700:10;6696:2;6692:19;6685:44;6602:145;6785:20;;-1:-1:-1;;;6785:20:12;;;;;;;;;;;;;;;;;6792:12;;6785:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:648:17;;110:18;151:2;143:6;140:14;137:2;;;157:9;137:2;197;191:9;336:4;-1:-1:-1;;259:4:17;251:6;247:17;243:90;235:6;231:103;227:114;391:6;379:10;376:22;371:2;359:10;356:18;353:46;350:2;;;402:9;350:2;429;422:22;477;;;462:6;-1:-1:-1;462:6:17;514:16;;;511:25;-1:-1:-1;508:2:17;;;549:1;546;539:12;508:2;599:6;594:3;587:4;579:6;575:17;562:44;654:1;647:4;638:6;630;626:19;622:30;615:41;;;90:572;;;;;:::o;667:162::-;734:20;;790:13;;783:21;773:32;;763:2;;819:1;816;809:12;834:259;;946:2;934:9;925:7;921:23;917:32;914:2;;;967:6;959;952:22;914:2;1011:9;998:23;1030:33;1057:5;1030:33;:::i;1098:402::-;;;1227:2;1215:9;1206:7;1202:23;1198:32;1195:2;;;1248:6;1240;1233:22;1195:2;1292:9;1279:23;1311:33;1338:5;1311:33;:::i;:::-;1363:5;-1:-1:-1;1420:2:17;1405:18;;1392:32;1433:35;1392:32;1433:35;:::i;:::-;1487:7;1477:17;;;1185:315;;;;;:::o;1505:470::-;;;;1651:2;1639:9;1630:7;1626:23;1622:32;1619:2;;;1672:6;1664;1657:22;1619:2;1716:9;1703:23;1735:33;1762:5;1735:33;:::i;:::-;1787:5;-1:-1:-1;1844:2:17;1829:18;;1816:32;1857:35;1816:32;1857:35;:::i;:::-;1609:366;;1911:7;;-1:-1:-1;;;1965:2:17;1950:18;;;;1937:32;;1609:366::o;1980:830::-;;;;;2152:3;2140:9;2131:7;2127:23;2123:33;2120:2;;;2174:6;2166;2159:22;2120:2;2218:9;2205:23;2237:33;2264:5;2237:33;:::i;:::-;2289:5;-1:-1:-1;2346:2:17;2331:18;;2318:32;2359:35;2318:32;2359:35;:::i;:::-;2413:7;-1:-1:-1;2467:2:17;2452:18;;2439:32;;-1:-1:-1;2522:2:17;2507:18;;2494:32;2549:18;2538:30;;2535:2;;;2586:6;2578;2571:22;2535:2;2614:22;;2667:4;2659:13;;2655:27;-1:-1:-1;2645:2:17;;2701:6;2693;2686:22;2645:2;2729:75;2796:7;2791:2;2778:16;2773:2;2769;2765:11;2729:75;:::i;:::-;2719:85;;;2110:700;;;;;;;:::o;2815:329::-;;;2941:2;2929:9;2920:7;2916:23;2912:32;2909:2;;;2962:6;2954;2947:22;2909:2;3006:9;2993:23;3025:33;3052:5;3025:33;:::i;:::-;3077:5;-1:-1:-1;3101:37:17;3134:2;3119:18;;3101:37;:::i;:::-;3091:47;;2899:245;;;;;:::o;3149:327::-;;;3278:2;3266:9;3257:7;3253:23;3249:32;3246:2;;;3299:6;3291;3284:22;3246:2;3343:9;3330:23;3362:33;3389:5;3362:33;:::i;:::-;3414:5;3466:2;3451:18;;;;3438:32;;-1:-1:-1;;;3236:240:17:o;3481:192::-;;3590:2;3578:9;3569:7;3565:23;3561:32;3558:2;;;3611:6;3603;3596:22;3558:2;3639:28;3657:9;3639:28;:::i;3678:352::-;;3789:2;3777:9;3768:7;3764:23;3760:32;3757:2;;;3810:6;3802;3795:22;3757:2;3854:9;3841:23;3904:66;3897:5;3893:78;3886:5;3883:89;3873:2;;3991:6;3983;3976:22;4035:190;;4147:2;4135:9;4126:7;4122:23;4118:32;4115:2;;;4168:6;4160;4153:22;4115:2;-1:-1:-1;4196:23:17;;4105:120;-1:-1:-1;4105:120:17:o;4230:335::-;;;4367:2;4355:9;4346:7;4342:23;4338:32;4335:2;;;4388:6;4380;4373:22;4335:2;4429:9;4416:23;4406:33;;4489:2;4478:9;4474:18;4461:32;4502:33;4529:5;4502:33;:::i;4570:260::-;;;4696:2;4684:9;4675:7;4671:23;4667:32;4664:2;;;4717:6;4709;4702:22;4664:2;4758:9;4745:23;4735:33;;4787:37;4820:2;4809:9;4805:18;4787:37;:::i;4835:550::-;;;4974:2;4962:9;4953:7;4949:23;4945:32;4942:2;;;4995:6;4987;4980:22;4942:2;5036:9;5023:23;5013:33;;5097:2;5086:9;5082:18;5069:32;5124:18;5116:6;5113:30;5110:2;;;5161:6;5153;5146:22;5110:2;5189:22;;5242:4;5234:13;;5230:27;-1:-1:-1;5220:2:17;;5276:6;5268;5261:22;5220:2;5304:75;5371:7;5366:2;5353:16;5348:2;5344;5340:11;5304:75;:::i;:::-;5294:85;;;4932:453;;;;;:::o;5390:258::-;;;5519:2;5507:9;5498:7;5494:23;5490:32;5487:2;;;5540:6;5532;5525:22;5487:2;-1:-1:-1;;5568:23:17;;;5638:2;5623:18;;;5610:32;;-1:-1:-1;5477:171:17:o;5653:326::-;;;;5799:2;5787:9;5778:7;5774:23;5770:32;5767:2;;;5820:6;5812;5805:22;5767:2;-1:-1:-1;;5848:23:17;;;5918:2;5903:18;;5890:32;;-1:-1:-1;5969:2:17;5954:18;;;5941:32;;5757:222;-1:-1:-1;5757:222:17:o;5984:331::-;6082:5;6105:1;6115:194;6129:4;6126:1;6123:11;6115:194;;;6188:13;;6176:26;;6225:4;6249:12;;;;6284:15;;;;6149:1;6142:9;6115:194;;6320:319;;6402:5;6396:12;6429:6;6424:3;6417:19;6445:63;6501:6;6494:4;6489:3;6485:14;6478:4;6471:5;6467:16;6445:63;:::i;:::-;6553:2;6541:15;-1:-1:-1;;6537:88:17;6528:98;;;;6628:4;6524:109;;6372:267;-1:-1:-1;;6372:267:17:o;6644:1051::-;;6849:3;6884:6;6878:13;6910:1;6942:2;6931:9;6927:18;6959:1;6954:184;;;;7152:1;7147:406;;;;6920:633;;6954:184;7002:66;6991:9;6987:82;6982:3;6975:95;7122:4;7118:1;7107:9;7103:17;7099:28;7094:3;7090:38;7083:45;;6954:184;;7147:406;7197:1;7186:9;7182:17;7224:6;7219:3;7212:19;7254:4;7301:2;7296:3;7286:18;7326:3;7342:165;7356:6;7353:1;7350:13;7342:165;;;7434:14;;7421:11;;;7414:35;7477:16;;;;7371:10;;7342:165;;;-1:-1:-1;;;7527:16:17;;;-1:-1:-1;6920:633:17;;;;7584:6;7578:13;7600:55;7646:8;7641:3;7634:4;7626:6;7622:17;7600:55;:::i;:::-;7671:18;;6828:867;-1:-1:-1;;;;6828:867:17:o;7700:182::-;7829:19;;;7873:2;7864:12;;7819:63::o;7887:410::-;8088:19;;;8145:2;8141:15;;;;8158:66;8137:88;8132:2;8123:12;;8116:110;8251:2;8242:12;;8235:28;8288:2;8279:12;;8078:219::o;8302:226::-;-1:-1:-1;;;;;8466:55:17;;;;8448:74;;8436:2;8421:18;;8403:125::o;8533:187::-;8698:14;;8691:22;8673:41;;8661:2;8646:18;;8628:92::o;8725:222::-;;8874:2;8863:9;8856:21;8894:47;8937:2;8926:9;8922:18;8914:6;8894:47;:::i;8952:349::-;9154:2;9136:21;;;9193:2;9173:18;;;9166:30;9232:27;9227:2;9212:18;;9205:55;9292:2;9277:18;;9126:175::o;9306:347::-;9508:2;9490:21;;;9547:2;9527:18;;;9520:30;9586:25;9581:2;9566:18;;9559:53;9644:2;9629:18;;9480:173::o;9658:345::-;9860:2;9842:21;;;9899:2;9879:18;;;9872:30;9938:23;9933:2;9918:18;;9911:51;9994:2;9979:18;;9832:171::o;10008:336::-;10210:2;10192:21;;;10249:2;10229:18;;;10222:30;10288:14;10283:2;10268:18;;10261:42;10335:2;10320:18;;10182:162::o;10349:339::-;10551:2;10533:21;;;10590:2;10570:18;;;10563:30;10629:17;10624:2;10609:18;;10602:45;10679:2;10664:18;;10523:165::o;10693:340::-;10895:2;10877:21;;;10934:2;10914:18;;;10907:30;10973:18;10968:2;10953:18;;10946:46;11024:2;11009:18;;10867:166::o;11038:341::-;11240:2;11222:21;;;11279:2;11259:18;;;11252:30;11318:19;11313:2;11298:18;;11291:47;11370:2;11355:18;;11212:167::o;11384:332::-;11586:2;11568:21;;;11625:1;11605:18;;;11598:29;11663:11;11658:2;11643:18;;11636:39;11707:2;11692:18;;11558:158::o;11721:348::-;11923:2;11905:21;;;11962:2;11942:18;;;11935:30;12001:26;11996:2;11981:18;;11974:54;12060:2;12045:18;;11895:174::o;12074:386::-;12338:13;;12320:32;;12383:2;12368:18;;12361:34;;;;12438:14;12431:22;12426:2;12411:18;;12404:50;12308:2;12293:18;;12275:185::o;12465:379::-;12681:13;;12675:20;12657:39;;12752:4;12740:17;;;12734:24;12712:20;;;12705:54;12829:4;12817:17;;;12811:24;12804:32;12797:40;12775:20;;;12768:70;;;;12645:2;12630:18;;12612:232::o;12849:1138::-;;13100:3;13130:2;13119:9;13112:21;13175:6;13169:13;13164:2;13153:9;13149:18;13142:41;13230:4;13222:6;13218:17;13212:24;13255:6;13280:3;13319:2;13314;13303:9;13299:18;13292:30;13345:54;13394:3;13383:9;13379:19;13365:12;13345:54;:::i;:::-;13453:4;13441:17;;13435:24;13415:18;;;13408:52;;;;13515:4;13503:17;;13497:24;13491:3;13476:19;;13469:53;13577:4;13565:17;;13559:24;13553:3;13538:19;;13531:53;13639:4;13627:17;;13621:24;13615:3;13600:19;;13593:53;13701:4;13689:17;;13683:24;13677:3;13662:19;;13655:53;13763:4;13751:17;;13745:24;13739:3;13724:19;;13717:53;13813:15;;;13807:22;13801:3;13786:19;;13779:51;13873:15;;;13867:22;13861:3;13846:19;;13839:51;-1:-1:-1;13331:68:17;-1:-1:-1;13922:59:17;13975:4;13960:20;;13952:6;13922:59;:::i;14174:256::-;14356:25;;;14412:2;14397:18;;14390:34;14344:2;14329:18;;14311:119::o;14688:258::-;14760:1;14770:113;14784:6;14781:1;14778:13;14770:113;;;14860:11;;;14854:18;14841:11;;;14834:39;14806:2;14799:10;14770:113;;;14901:6;14898:1;14895:13;14892:2;;;-1:-1:-1;;14936:1:17;14918:16;;14911:27;14741:205::o;14951:156::-;-1:-1:-1;;;;;15032:5:17;15028:54;15021:5;15018:65;15008:2;;15097:1;15094;15087:12;15008:2;14998:109;:::o
Swarm Source
ipfs://967148b236f796113352c1cb4de7e85afdfdafd9459aff04a0766c1beba7595e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.