Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0.0057 ETH
Eth Value
$17.61 (@ $3,089.58/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 88 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer From | 13941456 | 1045 days ago | IN | 0 ETH | 0.00915468 | ||||
Burn | 11138638 | 1479 days ago | IN | 0 ETH | 0.00138373 | ||||
Burn | 11082114 | 1488 days ago | IN | 0 ETH | 0.0007088 | ||||
Safe Mint | 10574349 | 1566 days ago | IN | 0.0001 ETH | 0.01542288 | ||||
Safe Mint With T... | 10564486 | 1567 days ago | IN | 0.0001 ETH | 0.01526318 | ||||
Set Approval For... | 10497923 | 1578 days ago | IN | 0 ETH | 0.00374341 | ||||
Safe Mint | 10447449 | 1586 days ago | IN | 0.0001 ETH | 0.00541154 | ||||
Set Approval For... | 10446603 | 1586 days ago | IN | 0 ETH | 0.00093792 | ||||
Safe Mint | 10446025 | 1586 days ago | IN | 0.0001 ETH | 0.00650007 | ||||
Safe Mint | 10445800 | 1586 days ago | IN | 0.0001 ETH | 0.01069768 | ||||
Set Approval For... | 10418006 | 1590 days ago | IN | 0 ETH | 0.00254182 | ||||
Safe Mint | 10398460 | 1593 days ago | IN | 0.0001 ETH | 0.00958674 | ||||
Safe Mint | 10398418 | 1593 days ago | IN | 0.0001 ETH | 0.00908772 | ||||
Safe Mint | 10398374 | 1593 days ago | IN | 0.0001 ETH | 0.00933252 | ||||
Safe Mint | 10385865 | 1595 days ago | IN | 0.0001 ETH | 0.01067367 | ||||
Safe Mint | 10361313 | 1599 days ago | IN | 0.0001 ETH | 0.01136423 | ||||
Safe Mint | 10322607 | 1605 days ago | IN | 0.0001 ETH | 0.01011709 | ||||
Safe Mint | 10288177 | 1610 days ago | IN | 0.0001 ETH | 0.0120106 | ||||
Set Approval For... | 10176940 | 1627 days ago | IN | 0 ETH | 0.00084573 | ||||
Safe Mint | 10170544 | 1628 days ago | IN | 0.0001 ETH | 0.00492292 | ||||
Safe Mint | 10170532 | 1628 days ago | IN | 0.0001 ETH | 0.00697906 | ||||
Safe Mint | 10163420 | 1630 days ago | IN | 0.0001 ETH | 0.00747772 | ||||
Safe Mint | 10143509 | 1633 days ago | IN | 0.0001 ETH | 0.00953345 | ||||
Safe Mint | 10143495 | 1633 days ago | IN | 0.0001 ETH | 0.00974075 | ||||
Safe Mint | 10143465 | 1633 days ago | IN | 0.0001 ETH | 0.01194995 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
9697933 | 1702 days ago | 0.0003 ETH |
Loading...
Loading
Contract Name:
Microsponsors
Compiler Version
v0.5.11+commit.c082d0b4
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-07-08 */ // File: contracts/IERC165.sol pragma solidity ^0.5.11; /** * @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); } // File: contracts/IERC721.sol pragma solidity ^0.5.11; /** * @dev Required interface of an ERC721 compliant contract. */ contract IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address indexed tokenOwner, address indexed approved, uint256 indexed tokenId); event ApprovalForAll(address indexed tokenOwner, address indexed operator, bool approved); /** * @dev Returns the number of NFTs in `owner`'s account. */ function balanceOf(address tokenOwner) public view returns (uint256 balance); /** * @dev Returns the owner of the NFT specified by `tokenId`. */ function ownerOf(uint256 tokenId) public view returns (address tokenOwner); /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * * * Requirements: * - `from`, `to` cannot be zero. * - `tokenId` must be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this * NFT by either {approve} or {setApprovalForAll}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public; /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * Requirements: * - If the caller is not `from`, it must be approved to move this NFT by * either {approve} or {setApprovalForAll}. */ function transferFrom(address from, address to, uint256 tokenId) public; function approve(address to, uint256 tokenId) public; function getApproved(uint256 tokenId) public view returns (address operator); function setApprovalForAll(address operator, bool _approved) public; function isApprovedForAll(address tokenOwner, address operator) public view returns (bool); function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public; } // File: contracts/IERC721Receiver.sol pragma solidity ^0.5.11; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ contract IERC721Receiver { /** * @notice Handle the receipt of an NFT * @dev The ERC721 smart contract calls this function on the recipient * after a {IERC721-safeTransferFrom}. This function MUST return the function selector, * otherwise the caller will revert the transaction. The selector to be * returned can be obtained as `this.onERC721Received.selector`. This * function MAY throw to revert and reject the transfer. * Note: the ERC721 contract address is always the message sender. * @param operator The address which called `safeTransferFrom` function * @param from The address which previously owned the token * @param tokenId The NFT identifier which is being transferred * @param data Additional data with no specified format * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` */ function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data) public returns (bytes4); } // File: contracts/SafeMath.sol pragma solidity ^0.5.11; /** * @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. * * NOTE: This is a feature of the next version of OpenZeppelin Contracts. * @dev Get it via `npm install @openzeppelin/contracts@next`. */ 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. * NOTE: This is a feature of the next version of OpenZeppelin Contracts. * @dev Get it via `npm install @openzeppelin/contracts@next`. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 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. * * NOTE: This is a feature of the next version of OpenZeppelin Contracts. * @dev Get it via `npm install @openzeppelin/contracts@next`. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: contracts/Address.sol pragma solidity ^0.5.11; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * This test is non-exhaustive, and there may be false-negatives: during the * execution of a contract's constructor, its address will be reported as * not containing 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. */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != 0x0 && codehash != accountHash); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * NOTE: This is a feature of the next version of OpenZeppelin Contracts. * @dev Get it via `npm install @openzeppelin/contracts@next`. */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } } // File: contracts/Counters.sol pragma solidity ^0.5.11; /** * @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 { counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } } // File: contracts/ERC165.sol pragma solidity ^0.5.11; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ 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) external view 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 { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File: contracts/ERC721.sol pragma solidity ^0.5.11; pragma experimental ABIEncoderV2; /** * @title ERC721 Customized for Microsponsors from: * https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721MetadataMintable.sol */ /** * @title Deployed Microsponsors Registry smart contract interface. * @dev We just use the signatures of the parts we need to interact with: */ contract DeployedRegistry { function isContentIdRegisteredToCaller(uint32 federationId, string memory contentId) public view returns(bool); function isMinter(uint32 federationId, address account) public view returns (bool); function isAuthorizedTransferFrom(uint32 federationId, address from, address to, uint256 tokenId, address minter, address owner) public view returns(bool); } /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; /*** Contract data ***/ /// @dev owner1, owner2 Admins of this contract. address public owner1; address public owner2; /// @dev paused Admin only. Set to `true` to stop token minting and transfers. bool public paused = false; /// @dev mintFee Admin only. Set minting fee; default fee is below (in wei). uint256 public mintFee = 100000000000000; /// @dev DeployedRegistry The Microsponsors Registry Contract that verifies participants. /// Admin can update the contract address here to upgrade Registry. DeployedRegistry public registry; /// @title _tokenIds All Token IDs minted, incremented starting at 1 Counters.Counter _tokenIds; /// @dev _tokenOwner mapping from Token ID to Token Owner mapping (uint256 => address) private _tokenOwner; /// @dev _ownedTokensCount mapping from Token Owner to # of owned tokens mapping (address => Counters.Counter) private _ownedTokensCount; /// @dev _mintedTokensCount mapping from Token Minter to # of minted tokens mapping (address => Counters.Counter) private _mintedTokensCount; /// @dev tokenToFederationId see notes on path to federation in Microsponsors Registry contract mapping (uint256 => uint32) public tokenToFederationId; /// @dev TimeSlot metadata struct for each token /// TimeSlots timestamps are stored as uint48: /// https://medium.com/@novablitz/storing-structs-is-costing-you-gas-774da988895e struct TimeSlot { address minter; // the address of the user who mint()'ed this time slot string contentId; // the users' registered contentId containing the Property string propertyName; // describes the Property within the contentId that is tokenized into time slots uint48 startTime; // min timestamp (when time slot begins) uint48 endTime; // max timestamp (when time slot ends) uint48 auctionEndTime; // max timestamp (when auction for time slot ends) uint16 category; // integer that represents the category (see Microsponsors utils.js) bool isSecondaryTradingEnabled; // if true, first buyer can trade to others } /// @dev _tokenToTimeSlot mapping from Token ID to TimeSlot struct /// Use tokenTimeSlot() public method to read mapping(uint256 => TimeSlot) private _tokenToTimeSlot; /// @dev PropertyNameStruct: name of the time slot struct PropertyNameStruct { string propertyName; } /// @dev _tokenMinterToPropertyName mapping from Minter => Content ID => array of Property Names /// Used to display all tokenized Time Slots on a given Property. /// Using struct because there is no mapping to a dynamic array of bytes32 in Solidity at this time. mapping(address => mapping(string => PropertyNameStruct[])) private _tokenMinterToPropertyNames; /// @dev ContentIdStruct The registered Content ID, verified by Registry contract struct ContentIdStruct { string contentId; } /// @dev _tokenMinterToContentIds Mapping from Token Minter to array of Content IDs /// that they have *ever* minted tokens for mapping(address => ContentIdStruct[]) private _tokenMinterToContentIds; /// @dev _tokenURIs Mapping from Token ID to Token URIs mapping(uint256 => string) private _tokenURIs; /// @dev _tokenApprovals Mapping from Token ID to Approved Address mapping (uint256 => address) private _tokenApprovals; /// @dev _operatorApprovals Mapping from Token Owner to Operator Approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /* * 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 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; // @dev 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; constructor () public { // Register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); // Set the contract owners to msg.sender by default owner1 = _msgSender(); owner2 = _msgSender(); } /** * @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 not 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). */ function _msgSender() internal view returns (address) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - // see https://github.com/ethereum/solidity/issues/2691 return msg.data; } /*** Owner (Administrator) functions ***/ /** * @dev Sets the contract's owner (administrator) * Based on 0x's Ownable, but modified here */ modifier onlyOwner() { require( (_msgSender() == owner1) || (_msgSender() == owner2), "ONLY_CONTRACT_OWNER" ); _; } /** * @dev Transfer owner (admin) functions to another address * @param newOwner Address of new owner/ admin of contract */ function transferOwnership1(address newOwner) public onlyOwner { if (newOwner != address(0)) { owner1 = newOwner; } } function transferOwnership2(address newOwner) public onlyOwner { if (newOwner != address(0)) { owner2 = newOwner; } } /** * @dev Update contract address for Microsponsors Registry contract * @param newAddress where the Registry contract lives */ function updateRegistryAddress(address newAddress) public onlyOwner { registry = DeployedRegistry(newAddress); } /** * @dev Update the fee (in wei) charged for minting a single token */ function updateMintFee(uint256 val) public onlyOwner { mintFee = val; } /// @dev Pausable (adapted from OpenZeppelin via Cryptokitties) /// @dev Modifier to allow actions only when the contract IS NOT paused modifier whenNotPaused() { require(!paused); _; } /// @dev Modifier to allow actions only when the contract IS paused modifier whenPaused { require(paused); _; } /// @dev Called by contract owner to pause minting and transfers. function pause() public onlyOwner whenNotPaused { paused = true; } /// @dev Called by contract owner to unpause minting and transfers. function unpause() public onlyOwner whenPaused { paused = false; } /// @dev Admin withdraws entire balance from contract. function withdrawBalance() external onlyOwner { // Ref: https://diligence.consensys.net/blog/2019/09/stop-using-soliditys-transfer-now/ uint balance = address(this).balance; (bool success, ) = msg.sender.call.value(balance)(""); require(success, "WITHDRAW_FAILED"); } /*** Minting tokens ***/ /** * @dev Function to mint tokens. * @return tokenId */ function mint( string memory contentId, string memory propertyName, uint48 startTime, uint48 endTime, uint48 auctionEndTime, uint16 category, bool isSecondaryTradingEnabled, uint32 federationId ) public payable whenNotPaused returns (uint256) { require(msg.value >= mintFee); require(federationId > 0, "INVALID_FEDERATION_ID"); require( registry.isMinter(federationId, _msgSender()), "CALLER_NOT_AUTHORIZED_FOR_MINTER_ROLE" ); require( _isValidTimeSlot(contentId, startTime, endTime, auctionEndTime, federationId), "INVALID_TIME_SLOT" ); uint256 tokenId = _mint(_msgSender()); _setTokenTimeSlot(tokenId, contentId, propertyName, startTime, endTime, auctionEndTime, category, isSecondaryTradingEnabled); tokenToFederationId[tokenId] = federationId; return tokenId; } /** * @dev Function to mint tokens. * @param tokenURI The token URI of the minted token. * @return tokenId */ function mintWithTokenURI( string memory contentId, string memory propertyName, uint48 startTime, uint48 endTime, uint48 auctionEndTime, uint16 category, bool isSecondaryTradingEnabled, uint32 federationId, string memory tokenURI ) public payable whenNotPaused returns (uint256) { require(msg.value >= mintFee); require(federationId > 0, "INVALID_FEDERATION_ID"); require( registry.isMinter(federationId, _msgSender()), "CALLER_NOT_AUTHORIZED_FOR_MINTER_ROLE" ); require( _isValidTimeSlot(contentId, startTime, endTime, auctionEndTime, federationId), "INVALID_TIME_SLOT" ); uint256 tokenId = _mint(_msgSender()); _setTokenTimeSlot(tokenId, contentId, propertyName, startTime, endTime, auctionEndTime, category, isSecondaryTradingEnabled); _setTokenURI(tokenId, tokenURI); tokenToFederationId[tokenId] = federationId; return tokenId; } /** * @dev Function to safely mint tokens. * @return tokenId */ function safeMint( string memory contentId, string memory propertyName, uint48 startTime, uint48 endTime, uint48 auctionEndTime, uint16 category, bool isSecondaryTradingEnabled, uint32 federationId ) public payable whenNotPaused returns (uint256) { require(msg.value >= mintFee); require(federationId > 0, "INVALID_FEDERATION_ID"); require( registry.isMinter(federationId, _msgSender()), "CALLER_NOT_AUTHORIZED_FOR_MINTER_ROLE" ); require( _isValidTimeSlot(contentId, startTime, endTime, auctionEndTime, federationId), "INVALID_TIME_SLOT" ); uint256 tokenId = _safeMint(_msgSender()); _setTokenTimeSlot(tokenId, contentId, propertyName, startTime, endTime, auctionEndTime, category, isSecondaryTradingEnabled); tokenToFederationId[tokenId] = federationId; return tokenId; } /** * @dev Function to safely mint tokens. * @param data bytes data to send along with a safe transfer check. * @return tokenId */ function safeMint( string memory contentId, string memory propertyName, uint48 startTime, uint48 endTime, uint48 auctionEndTime, uint16 category, bool isSecondaryTradingEnabled, uint32 federationId, bytes memory data ) public payable whenNotPaused returns (uint256) { require(msg.value >= mintFee); require(federationId > 0, "INVALID_FEDERATION_ID"); require( registry.isMinter(federationId, _msgSender()), "CALLER_NOT_AUTHORIZED_FOR_MINTER_ROLE" ); require( _isValidTimeSlot(contentId, startTime, endTime, auctionEndTime, federationId), "INVALID_TIME_SLOT" ); uint256 tokenId = _safeMint(_msgSender(), data); _setTokenTimeSlot(tokenId, contentId, propertyName, startTime, endTime, auctionEndTime, category, isSecondaryTradingEnabled); tokenToFederationId[tokenId] = federationId; return tokenId; } /** * @param tokenURI The token URI of the minted token. * @return tokenId */ function safeMintWithTokenURI( string memory contentId, string memory propertyName, uint48 startTime, uint48 endTime, uint48 auctionEndTime, uint16 category, bool isSecondaryTradingEnabled, uint32 federationId, string memory tokenURI ) public payable whenNotPaused returns (uint256) { require(msg.value >= mintFee); require(federationId > 0, "INVALID_FEDERATION_ID"); require( registry.isMinter(federationId, _msgSender()), "CALLER_NOT_AUTHORIZED_FOR_MINTER_ROLE" ); require( _isValidTimeSlot(contentId, startTime, endTime, auctionEndTime, federationId), "INVALID_TIME_SLOT" ); uint256 tokenId = _safeMint(_msgSender()); _setTokenTimeSlot(tokenId, contentId, propertyName, startTime, endTime, auctionEndTime, category, isSecondaryTradingEnabled); _setTokenURI(tokenId, tokenURI); tokenToFederationId[tokenId] = federationId; return tokenId; } /** * @dev Internal function to safely mint a new token. * Reverts if the given token ID already exists. * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * @param to The address that will own the minted token * @return tokenId */ function _safeMint(address to) internal returns (uint256) { uint256 tokenId = _safeMint(to, ""); return tokenId; } /** * @dev Internal function to safely mint a new token. * Reverts if the given token ID already exists. * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * @param to The address that will own the minted token * @param data bytes data to send along with a safe transfer check * @return tokenId */ function _safeMint(address to, bytes memory data) internal returns (uint256) { uint256 tokenId = _mint(to); require( _checkOnERC721Received(address(0), to, tokenId, data), "TRANSFER_TO_NON_ERC721RECEIVER_IMPLEMENTER" ); return tokenId; } /** * @dev Internal function to mint a new token. * Reverts if the given token ID already exists. * @param to The address that will own the minted token */ function _mint(address to) internal returns (uint256) { require(to != address(0), "MINT_TO_ZERO_ADDRESS"); _tokenIds.increment(); uint256 tokenId = _tokenIds.current(); _tokenOwner[tokenId] = to; _ownedTokensCount[to].increment(); _mintedTokensCount[to].increment(); emit Transfer(address(0), to, tokenId); return tokenId; } /*** Token URIs ***/ /** * @dev Internal function to set the token URI for a given token. * Reverts if the token ID does not exist. * @param tokenId uint256 ID of the token to set its URI * @param uri string URI to assign */ function _setTokenURI(uint256 tokenId, string memory uri) internal { require( _exists(tokenId), "NON_EXISTENT_TOKEN" ); _tokenURIs[tokenId] = uri; } /** * Throws if the token ID does not exist. May return an empty string. * @param tokenId uint256 ID of the token to query * @return URI for a given token ID. */ function tokenURI(uint256 tokenId) external view returns (string memory) { require( _exists(tokenId), "NON_EXISTENT_TOKEN" ); return _tokenURIs[tokenId]; } /*** Token TimeSlot data and metadata ***/ function _isValidTimeSlot( string memory contentId, uint48 startTime, uint48 endTime, uint48 auctionEndTime, uint32 federationId ) internal view returns (bool) { require( registry.isContentIdRegisteredToCaller(federationId, contentId), "CONTENT_ID_NOT_REGISTERED_TO_CALLER" ); require( startTime > auctionEndTime, "START_TIME_AFTER_AUCTION_END_TIME" ); require( endTime > startTime, "START_TIME_AFTER_END_TIME" ); return true; } function _isContentIdMappedToMinter( string memory contentId ) internal view returns (bool) { ContentIdStruct[] memory a = _tokenMinterToContentIds[msg.sender]; bool foundMatch = false; for (uint i = 0; i < a.length; i++) { if (stringsMatch(contentId, a[i].contentId)) { foundMatch = true; } } return foundMatch; } function _isPropertyNameMappedToMinter( string memory contentId, string memory propertyName ) internal view returns (bool) { PropertyNameStruct[] memory a = _tokenMinterToPropertyNames[msg.sender][contentId]; bool foundMatch = false; for (uint i = 0; i < a.length; i++) { if (stringsMatch(propertyName, a[i].propertyName)) { foundMatch = true; } } return foundMatch; } function _setTokenTimeSlot( uint256 tokenId, string memory contentId, string memory propertyName, uint48 startTime, uint48 endTime, uint48 auctionEndTime, uint16 category, bool isSecondaryTradingEnabled ) internal { require( _exists(tokenId), "NON_EXISTENT_TOKEN" ); TimeSlot memory _timeSlot = TimeSlot({ minter: address(_msgSender()), contentId: string(contentId), propertyName: string(propertyName), startTime: uint48(startTime), endTime: uint48(endTime), auctionEndTime: uint48(auctionEndTime), category: uint16(category), isSecondaryTradingEnabled: bool(isSecondaryTradingEnabled) }); _tokenToTimeSlot[tokenId] = _timeSlot; if (!_isContentIdMappedToMinter(contentId)) { _tokenMinterToContentIds[_msgSender()].push( ContentIdStruct(contentId) ); } if (!_isPropertyNameMappedToMinter(contentId, propertyName)) { _tokenMinterToPropertyNames[_msgSender()][contentId].push( PropertyNameStruct(propertyName) ); } } function tokenTimeSlot(uint256 tokenId) public view returns ( address minter, address owner, string memory contentId, string memory propertyName, uint48 startTime, uint48 endTime, uint48 auctionEndTime, uint16 category, bool isSecondaryTradingEnabled, uint32 federationId ) { require( _exists(tokenId), "NON_EXISTENT_TOKEN" ); TimeSlot memory _timeSlot = _tokenToTimeSlot[tokenId]; uint32 _federationId = tokenToFederationId[tokenId]; return ( _timeSlot.minter, ownerOf(tokenId), _timeSlot.contentId, _timeSlot.propertyName, _timeSlot.startTime, _timeSlot.endTime, _timeSlot.auctionEndTime, _timeSlot.category, _timeSlot.isSecondaryTradingEnabled, _federationId ); } /*** Token minter queries ***/ /// @dev Look up all Content IDs a Minter has tokenized TimeSlots for. /// We're not getting this from the Registry because we want to keep /// a separate record here of all Content ID's the acct has *ever* /// minted tokens for. The registry is for keeping track of their /// current (not necessarily past) Content ID registrations. function tokenMinterContentIds(address minter) external view returns (string[] memory) { ContentIdStruct[] memory m = _tokenMinterToContentIds[minter]; string[] memory r = new string[](m.length); for (uint i = 0; i < m.length; i++) { r[i] = m[i].contentId; } return r; } /// @dev Look up all Property Names a Minter has created Time Slots for /// with a particular Content ID function tokenMinterPropertyNames( address minter, string calldata contentId ) external view returns (string[] memory) { PropertyNameStruct[] memory m = _tokenMinterToPropertyNames[minter][contentId]; string[] memory r = new string[](m.length); for (uint i = 0; i < m.length; i++) { r[i] = m[i].propertyName; } return r; } /** * Return all the Token IDs minted by a given account. * @dev This method MUST NEVER be called by smart contract code. First, it's fairly * expensive (it walks the entire _tokenIds array looking for tokens belonging to minter), * but it also returns a dynamic array, which is only supported for web3 calls, and * not contract-to-contract calls (at this time). */ function tokensMintedBy(address minter) external view returns (uint256[] memory) { require( minter != address(0), "CANNOT_QUERY_ZERO_ADDRESS" ); uint256 tokenCount = _mintedTokensCount[minter].current(); if (tokenCount == 0) { // Return an empty array return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 totalTokens = totalSupply(); uint256 resultIndex = 0; // All Tokens have IDs starting at 1 and increase // sequentially up to the total supply count. uint256 tokenId; for (tokenId = 1; tokenId <= totalTokens; tokenId++) { if (_tokenToTimeSlot[tokenId].minter == minter) { result[resultIndex] = tokenId; resultIndex++; } } return result; } } /*** Token balance and ownership queries ***/ /** * @dev Gets the total number of tokens ever minted. */ function totalSupply() public view returns (uint256) { return _tokenIds.current(); } /** * @dev Gets the balance of the specified address. * @param tokenOwner address to query the balance of * @return uint256 representing the amount owned by the passed address */ function balanceOf(address tokenOwner) public view returns (uint256) { require( tokenOwner != address(0), "CANNOT_QUERY_ZERO_ADDRESS" ); return _ownedTokensCount[tokenOwner].current(); } /** * @dev Gets the owner of the specified token ID. * @param tokenId uint256 ID of the token to query the owner of * @return address currently marked as the owner of the given token ID */ function ownerOf(uint256 tokenId) public view returns (address) { address tokenOwner = _tokenOwner[tokenId]; return tokenOwner; } /** * @param tokenOwner The owner whose tokens we are interested in. * @dev This method MUST NEVER be called by smart contract code. First, it's fairly * expensive (it walks the entire _tokenIds array looking for tokens belonging to owner), * but it also returns a dynamic array, which is only supported for web3 calls, and * not contract-to-contract calls (at this time). */ function tokensOfOwner(address tokenOwner) external view returns(uint256[] memory) { uint256 tokenCount = balanceOf(tokenOwner); if (tokenCount == 0) { // Return an empty array return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 totalTokens = totalSupply(); uint256 resultIndex = 0; // All Tokens have IDs starting at 1 and increase // sequentially up to the total count. uint256 tokenId; for (tokenId = 1; tokenId <= totalTokens; tokenId++) { if (_tokenOwner[tokenId] == tokenOwner) { result[resultIndex] = tokenId; resultIndex++; } } return result; } } /*** Approvals & Transfers ***/ /** * @dev Approves another address to transfer the given token ID * The zero address indicates there is no approved address. * There can only be one approved address per token at a given time. * Can only be called by the token owner or an approved operator. * @param to address to be approved for the given token ID * @param tokenId uint256 ID of the token to be approved */ function approve(address to, uint256 tokenId) public whenNotPaused { address tokenOwner = ownerOf(tokenId); require( to != tokenOwner, "APPROVAL_IS_REDUNDANT" ); require( _msgSender() == tokenOwner || isApprovedForAll(tokenOwner, _msgSender()), "CALLER_NOT_AUTHORIZED" ); _tokenApprovals[tokenId] = to; emit Approval(tokenOwner, to, tokenId); } /** * @dev Gets the approved address for a token ID, or zero if no address set * Reverts if the token ID does not exist. * @param tokenId uint256 ID of the token to query the approval of * @return address currently approved for the given token ID */ function getApproved(uint256 tokenId) public view returns (address) { require( _exists(tokenId), "NON_EXISTENT_TOKEN" ); return _tokenApprovals[tokenId]; } /** * @dev Sets or unsets the approval of a given operator * An operator is allowed to transfer all tokens of the sender on their behalf. * @param to operator address to set the approval * @param approved representing the status of the approval to be set */ function setApprovalForAll(address to, bool approved) public whenNotPaused { require(to != _msgSender(), "CALLER_CANNOT_APPROVE_SELF"); _operatorApprovals[_msgSender()][to] = approved; emit ApprovalForAll(_msgSender(), to, approved); } /** * @dev Tells whether an operator is approved by a given token owner. * @param tokenOwner token owner address which you want to query the approval of * @param operator operator address which you want to query the approval of * @return bool whether the given operator is approved by the token owner */ function isApprovedForAll(address tokenOwner, address operator) public view returns (bool) { return _operatorApprovals[tokenOwner][operator]; } /** * @dev Transfers the ownership of a given token ID to another address. * Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * Requires the msg.sender to be the owner, approved, or operator. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function transferFrom(address from, address to, uint256 tokenId) public whenNotPaused { require( _isApprovedOrOwner(_msgSender(), tokenId), "UNAUTHORIZED_TRANSFER" ); address minter = _tokenToTimeSlot[tokenId].minter; address owner = ownerOf(tokenId); uint32 federationId = tokenToFederationId[tokenId]; if (_tokenToTimeSlot[tokenId].isSecondaryTradingEnabled == false) { require( isSecondaryTrade(from, to, tokenId) == false, "SECONDARY_TRADING_DISABLED" ); } require( registry.isAuthorizedTransferFrom(federationId, from, to, tokenId, minter, owner), "UNAUTHORIZED_TRANSFER" ); _transferFrom(from, to, tokenId); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the _msgSender() to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param data bytes data to send along with a safe transfer check */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public whenNotPaused { require( _isApprovedOrOwner(_msgSender(), tokenId), "UNAUTHORIZED_TRANSFER" ); address minter = _tokenToTimeSlot[tokenId].minter; address owner = ownerOf(tokenId); uint32 federationId = tokenToFederationId[tokenId]; if (_tokenToTimeSlot[tokenId].isSecondaryTradingEnabled == false) { require( isSecondaryTrade(from, to, tokenId) == false, "SECONDARY_TRADING_DISABLED" ); } require( registry.isAuthorizedTransferFrom(federationId, from, to, tokenId, minter, owner), "UNAUTHORIZED_TRANSFER" ); _safeTransferFrom(from, to, tokenId, data); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param data bytes data to send along with a safe transfer check */ function _safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) internal { _transferFrom(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, data), "TRANSFER_TO_NON_ERC721RECEIVER_IMPLEMENTER" ); } /** * @dev Returns whether the specified token exists. * @param tokenId uint256 ID of the token to query the existence of * @return bool whether the token exists */ function _exists(uint256 tokenId) internal view returns (bool) { address tokenOwner = _tokenOwner[tokenId]; return tokenOwner != address(0); } /** * @dev Returns whether the given spender can transfer a given token ID. * @param spender address of the spender to query * @param tokenId uint256 ID of the token to be transferred * @return bool whether the msg.sender is approved for the given token ID, * is an operator of the owner, or is the owner of the token */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { require( _exists(tokenId), "NON_EXISTENT_TOKEN" ); address tokenOwner = ownerOf(tokenId); return (spender == tokenOwner || getApproved(tokenId) == spender || isApprovedForAll(tokenOwner, spender)); } /** * @dev Internal function to transfer ownership of a given token ID to another address. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function _transferFrom(address from, address to, uint256 tokenId) internal { require( ownerOf(tokenId) == from, "UNAUTHORIZED_TRANSFER" ); require( to != address(0), "TRANSFER_TO_ZERO_ADDRESS" ); _clearApproval(tokenId); _ownedTokensCount[from].decrement(); _ownedTokensCount[to].increment(); _tokenOwner[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * This function is deprecated. * @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) internal returns (bool) { if (!to.isContract()) { return true; } bytes4 retval = IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data); return (retval == _ERC721_RECEIVED); } /** * @dev Private function to clear current approval of a given token ID. * @param tokenId uint256 ID of the token to be transferred */ function _clearApproval(uint256 tokenId) private { if (_tokenApprovals[tokenId] != address(0)) { _tokenApprovals[tokenId] = address(0); } } /*** Burn Tokens ***/ // solhint-disable /** * @dev Customized for Microsponsors * https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721Burnable.sol * @dev Burns a specific ERC721 token. * @param tokenId uint256 id of the ERC721 token to be burned */ // solhint-enable function burn(uint256 tokenId) public whenNotPaused { address minter = _tokenToTimeSlot[tokenId].minter; address tokenOwner = ownerOf(tokenId); uint32 federationId = tokenToFederationId[tokenId]; if (tokenOwner == minter) { require( registry.isMinter(federationId, _msgSender()), "UNAUTHORIZED_BURN" ); } require( _isApprovedOrOwner(_msgSender(), tokenId), "UNAUTHORIZED_BURN" ); _burn(tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use {_burn} instead. * @param tokenOwner owner of the token to burn * @param tokenId uint256 ID of the token being burned */ function _burn(address tokenOwner, uint256 tokenId) internal { require( ownerOf(tokenId) == tokenOwner, "UNAUTHORIZED_BURN" ); _clearApproval(tokenId); _ownedTokensCount[tokenOwner].decrement(); _tokenOwner[tokenId] = address(0); // Clear token URIs (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } // Clear time slot data delete _tokenToTimeSlot[tokenId]; emit Transfer(tokenOwner, address(0), tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * @param tokenId uint256 ID of the token being burned */ function _burn(uint256 tokenId) internal { _burn(ownerOf(tokenId), tokenId); } /*** Helper fns ***/ function stringsMatch ( string memory a, string memory b ) private pure returns (bool) { return (keccak256(abi.encodePacked((a))) == keccak256(abi.encodePacked((b))) ); } function isSecondaryTrade ( address from, address to, uint256 tokenId ) internal view returns (bool) { address minter = _tokenToTimeSlot[tokenId].minter; if (from == minter || to == minter) { return false; } else { return true; } } } // File: contracts/Microsponsors.sol /** * Customized for Microsponsors * from Open Zeppelin's ERC721Metadata contract, which is MIT Licensed: * https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721Metadata.sol Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ contract Microsponsors is ERC721 { // Token name string private _name; // Token symbol string private _symbol; /* * 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; /** * @dev Constructor function */ constructor (string memory name, string memory symbol, address registryAddress) public { _name = name; _symbol = symbol; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721_METADATA); super.updateRegistryAddress(registryAddress); } /** * @dev Gets the token name. * @return string representing the token name */ function name() external view returns (string memory) { return _name; } /** * @dev Gets the token symbol. * @return string representing the token symbol */ function symbol() external view returns (string memory) { return _symbol; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenToFederationId","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"contentId","type":"string"},{"internalType":"string","name":"propertyName","type":"string"},{"internalType":"uint48","name":"startTime","type":"uint48"},{"internalType":"uint48","name":"endTime","type":"uint48"},{"internalType":"uint48","name":"auctionEndTime","type":"uint48"},{"internalType":"uint16","name":"category","type":"uint16"},{"internalType":"bool","name":"isSecondaryTradingEnabled","type":"bool"},{"internalType":"uint32","name":"federationId","type":"uint32"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"safeMintWithTokenURI","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"tokensMintedBy","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"contentId","type":"string"},{"internalType":"string","name":"propertyName","type":"string"},{"internalType":"uint48","name":"startTime","type":"uint48"},{"internalType":"uint48","name":"endTime","type":"uint48"},{"internalType":"uint48","name":"auctionEndTime","type":"uint48"},{"internalType":"uint16","name":"category","type":"uint16"},{"internalType":"bool","name":"isSecondaryTradingEnabled","type":"bool"},{"internalType":"uint32","name":"federationId","type":"uint32"}],"name":"safeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner2","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdrawBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner1","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"string","name":"contentId","type":"string"}],"name":"tokenMinterPropertyNames","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"registry","outputs":[{"internalType":"contract DeployedRegistry","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"updateMintFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"tokenMinterContentIds","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"contentId","type":"string"},{"internalType":"string","name":"propertyName","type":"string"},{"internalType":"uint48","name":"startTime","type":"uint48"},{"internalType":"uint48","name":"endTime","type":"uint48"},{"internalType":"uint48","name":"auctionEndTime","type":"uint48"},{"internalType":"uint16","name":"category","type":"uint16"},{"internalType":"bool","name":"isSecondaryTradingEnabled","type":"bool"},{"internalType":"uint32","name":"federationId","type":"uint32"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"mintWithTokenURI","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateRegistryAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership2","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenTimeSlot","outputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"string","name":"contentId","type":"string"},{"internalType":"string","name":"propertyName","type":"string"},{"internalType":"uint48","name":"startTime","type":"uint48"},{"internalType":"uint48","name":"endTime","type":"uint48"},{"internalType":"uint48","name":"auctionEndTime","type":"uint48"},{"internalType":"uint16","name":"category","type":"uint16"},{"internalType":"bool","name":"isSecondaryTradingEnabled","type":"bool"},{"internalType":"uint32","name":"federationId","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership1","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"contentId","type":"string"},{"internalType":"string","name":"propertyName","type":"string"},{"internalType":"uint48","name":"startTime","type":"uint48"},{"internalType":"uint48","name":"endTime","type":"uint48"},{"internalType":"uint48","name":"auctionEndTime","type":"uint48"},{"internalType":"uint16","name":"category","type":"uint16"},{"internalType":"bool","name":"isSecondaryTradingEnabled","type":"bool"},{"internalType":"uint32","name":"federationId","type":"uint32"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"contentId","type":"string"},{"internalType":"string","name":"propertyName","type":"string"},{"internalType":"uint48","name":"startTime","type":"uint48"},{"internalType":"uint48","name":"endTime","type":"uint48"},{"internalType":"uint48","name":"auctionEndTime","type":"uint48"},{"internalType":"uint16","name":"category","type":"uint16"},{"internalType":"bool","name":"isSecondaryTradingEnabled","type":"bool"},{"internalType":"uint32","name":"federationId","type":"uint32"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"registryAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"tokenOwner","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":"tokenOwner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"}]
Contract Creation Code
60806040526002805460ff60a01b19169055655af3107a40006003553480156200002857600080fd5b50604051620045d9380380620045d98339810160408190526200004b91620003ff565b6200007f7f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b036200018f16565b620000b37f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b036200018f16565b620000c66001600160e01b036200023416565b600180546001600160a01b0319166001600160a01b0392909216919091179055620000f062000234565b600280546001600160a01b0319166001600160a01b0392909216919091179055825162000125906010906020860190620002ee565b5081516200013b906011906020850190620002ee565b50620001707f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b036200018f16565b62000186816200023960201b62001a711760201c565b505050620005d3565b7fffffffff000000000000000000000000000000000000000000000000000000008082161415620001f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001ee90620004f8565b60405180910390fd5b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152602081905260409020805460ff19166001179055565b335b90565b6001546001600160a01b0316620002586001600160e01b036200023416565b6001600160a01b031614806200029357506002546001600160a01b0316620002886001600160e01b036200023416565b6001600160a01b0316145b620002cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001ee906200050a565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200033157805160ff191683800117855562000361565b8280016001018555821562000361579182015b828111156200036157825182559160200191906001019062000344565b506200036f92915062000373565b5090565b6200023691905b808211156200036f57600081556001016200037a565b80516200039d81620005b9565b92915050565b600082601f830112620003b557600080fd5b8151620003cc620003c68262000543565b6200051c565b91508082526020830160208301858383011115620003e957600080fd5b620003f683828462000586565b50505092915050565b6000806000606084860312156200041557600080fd5b83516001600160401b038111156200042c57600080fd5b6200043a86828701620003a3565b93505060208401516001600160401b038111156200045757600080fd5b6200046586828701620003a3565b9250506040620004788682870162000390565b9150509250925092565b600062000491601c836200056b565b7f4552433136353a20696e76616c696420696e7465726661636520696400000000815260200192915050565b6000620004cc6013836200056b565b7f4f4e4c595f434f4e54524143545f4f574e455200000000000000000000000000815260200192915050565b602080825281016200039d8162000482565b602080825281016200039d81620004bd565b6040518181016001600160401b03811182821017156200053b57600080fd5b604052919050565b60006001600160401b038211156200055a57600080fd5b506020601f91909101601f19160190565b90815260200190565b60006001600160a01b0382166200039d565b60005b83811015620005a357818101518382015260200162000589565b83811115620005b3576000848401525b50505050565b620005c48162000574565b8114620005d057600080fd5b50565b613ff680620005e36000396000f3fe6080604052600436106102255760003560e01c80637368891411610123578063b88d4fde116100ab578063e5c249241161006f578063e5c249241461061d578063e982d5a914610653578063e985e9c514610673578063f33efd1e14610693578063fb796bb7146106a657610225565b8063b88d4fde1461058a578063c51e713c146105aa578063c57a8825146105bd578063c87b56dd146105dd578063e2b375a9146105fd57610225565b80638456cb59116100f25780638456cb59146105005780638462151c1461051557806395d89b4114610535578063a22cb4651461054a578063a4ede1281461056a57610225565b8063736889141461047c5780637affcb9a146104915780637b103999146104be57806384017e52146104e057610225565b80632a0c7799116101b1578063527097251161017557806352709725146103fd5780635c975abb146104125780635fd8c710146104275780636352211e1461043c57806370a082311461045c57610225565b80632a0c7799146103685780632e0dccbb146103955780633f4ba83a146103a857806342842e0e146103bd57806342966c68146103dd57610225565b806313966db5116101f857806313966db5146102d1578063180b9e3f146102f357806318160ddd1461032057806323b872dd146103355780632441c7091461035557610225565b806301ffc9a71461022a57806306fdde0314610260578063081812fc14610282578063095ea7b3146102af575b600080fd5b34801561023657600080fd5b5061024a61024536600461331c565b6106b9565b6040516102579190613c68565b60405180910390f35b34801561026c57600080fd5b506102756106dc565b6040516102579190613c84565b34801561028e57600080fd5b506102a261029d366004613542565b610773565b6040516102579190613b51565b3480156102bb57600080fd5b506102cf6102ca3660046132ce565b6107bf565b005b3480156102dd57600080fd5b506102e66108bb565b6040516102579190613dc5565b3480156102ff57600080fd5b5061031361030e366004613542565b6108c1565b6040516102579190613dd3565b34801561032c57600080fd5b506102e66108d9565b34801561034157600080fd5b506102cf610350366004613182565b6108ea565b6102e6610363366004613437565b610a66565b34801561037457600080fd5b5061038861038336600461312a565b610be1565b6040516102579190613c57565b6102e66103a3366004613358565b610ce9565b3480156103b457600080fd5b506102cf610e54565b3480156103c957600080fd5b506102cf6103d8366004613182565b610ed8565b3480156103e957600080fd5b506102cf6103f8366004613542565b610ef8565b34801561040957600080fd5b506102a261103c565b34801561041e57600080fd5b5061024a61104b565b34801561043357600080fd5b506102cf61105b565b34801561044857600080fd5b506102a2610457366004613542565b611137565b34801561046857600080fd5b506102e661047736600461312a565b611152565b34801561048857600080fd5b506102a26111a1565b34801561049d57600080fd5b506104b16104ac366004613278565b6111b0565b6040516102579190613c46565b3480156104ca57600080fd5b506104d3611352565b6040516102579190613c76565b3480156104ec57600080fd5b506102cf6104fb366004613542565b611361565b34801561050c57600080fd5b506102cf6113c5565b34801561052157600080fd5b5061038861053036600461312a565b611450565b34801561054157600080fd5b5061027561150a565b34801561055657600080fd5b506102cf610565366004613248565b61156b565b34801561057657600080fd5b506104b161058536600461312a565b611650565b34801561059657600080fd5b506102cf6105a53660046131cf565b6117c6565b6102e66105b8366004613437565b611944565b3480156105c957600080fd5b506102cf6105d836600461312a565b611a71565b3480156105e957600080fd5b506102756105f8366004613542565b611af2565b34801561060957600080fd5b506102cf61061836600461312a565b611bb8565b34801561062957600080fd5b5061063d610638366004613542565b611c45565b6040516102579a99989796959493929190613b5f565b34801561065f57600080fd5b506102cf61066e36600461312a565b611ea1565b34801561067f57600080fd5b5061024a61068e366004613148565b611f2f565b6102e66106a1366004613358565b611f5d565b6102e66106b4366004613437565b612085565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60108054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107685780601f1061073d57610100808354040283529160200191610768565b820191906000526020600020905b81548152906001019060200180831161074b57829003601f168201915b505050505090505b90565b600061077e826121c5565b6107a35760405162461bcd60e51b815260040161079a90613d85565b60405180910390fd5b506000908152600e60205260409020546001600160a01b031690565b600254600160a01b900460ff16156107d657600080fd5b60006107e182611137565b9050806001600160a01b0316836001600160a01b031614156108155760405162461bcd60e51b815260040161079a90613cf5565b806001600160a01b03166108276121e2565b6001600160a01b0316148061084357506108438161068e6121e2565b61085f5760405162461bcd60e51b815260040161079a90613db5565b6000828152600e602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60035481565b60096020526000908152604090205463ffffffff1681565b60006108e560056121e6565b905090565b600254600160a01b900460ff161561090157600080fd5b61091261090c6121e2565b826121ea565b61092e5760405162461bcd60e51b815260040161079a90613da5565b6000818152600a60205260408120546001600160a01b03169061095083611137565b600084815260096020908152604080832054600a9092529091206003015491925063ffffffff1690600160a01b900460ff166109ae5761099186868661226f565b156109ae5760405162461bcd60e51b815260040161079a90613ca5565b60048054604051630d1e359160e01b81526001600160a01b0390911691630d1e3591916109e79185918b918b918b918b918b9101613dfc565b60206040518083038186803b1580156109ff57600080fd5b505afa158015610a13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610a3791908101906132fe565b610a535760405162461bcd60e51b815260040161079a90613da5565b610a5e8686866122c3565b505050505050565b600254600090600160a01b900460ff1615610a8057600080fd5b600354341015610a8f57600080fd5b60008363ffffffff1611610ab55760405162461bcd60e51b815260040161079a90613d35565b6004546001600160a01b03166312d26ac884610acf6121e2565b6040518363ffffffff1660e01b8152600401610aec929190613de1565b60206040518083038186803b158015610b0457600080fd5b505afa158015610b18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610b3c91908101906132fe565b610b585760405162461bcd60e51b815260040161079a90613d95565b610b658a898989876123c9565b610b815760405162461bcd60e51b815260040161079a90613d75565b6000610b93610b8e6121e2565b6124d3565b9050610ba5818c8c8c8c8c8c8c6124ef565b610baf8184612799565b6000818152600960205260409020805463ffffffff861663ffffffff1990911617905590509998505050505050505050565b60606001600160a01b038216610c095760405162461bcd60e51b815260040161079a90613cd5565b6001600160a01b0382166000908152600860205260408120610c2a906121e6565b905080610c4c5760408051600080825260208201909252905b509150506106d7565b606081604051908082528060200260200182016040528015610c78578160200160208202803883390190505b5090506000610c856108d9565b9050600060015b828111610cdc576000818152600a60205260409020546001600160a01b0388811691161415610cd45780848381518110610cc257fe5b60209081029190910101526001909101905b600101610c8c565b83955050505050506106d7565b600254600090600160a01b900460ff1615610d0357600080fd5b600354341015610d1257600080fd5b60008263ffffffff1611610d385760405162461bcd60e51b815260040161079a90613d35565b6004546001600160a01b03166312d26ac883610d526121e2565b6040518363ffffffff1660e01b8152600401610d6f929190613de1565b60206040518083038186803b158015610d8757600080fd5b505afa158015610d9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610dbf91908101906132fe565b610ddb5760405162461bcd60e51b815260040161079a90613d95565b610de889888888866123c9565b610e045760405162461bcd60e51b815260040161079a90613d75565b6000610e11610b8e6121e2565b9050610e23818b8b8b8b8b8b8b6124ef565b6000818152600960205260409020805463ffffffff851663ffffffff19909116179055905098975050505050505050565b6001546001600160a01b0316610e686121e2565b6001600160a01b03161480610e9757506002546001600160a01b0316610e8c6121e2565b6001600160a01b0316145b610eb35760405162461bcd60e51b815260040161079a90613d45565b600254600160a01b900460ff16610ec957600080fd5b6002805460ff60a01b19169055565b610ef3838383604051806020016040528060008152506117c6565b505050565b600254600160a01b900460ff1615610f0f57600080fd5b6000818152600a60205260408120546001600160a01b031690610f3183611137565b60008481526009602052604090205490915063ffffffff166001600160a01b038083169084161415611000576004546001600160a01b03166312d26ac882610f776121e2565b6040518363ffffffff1660e01b8152600401610f94929190613de1565b60206040518083038186803b158015610fac57600080fd5b505afa158015610fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610fe491908101906132fe565b6110005760405162461bcd60e51b815260040161079a90613ce5565b61101161100b6121e2565b856121ea565b61102d5760405162461bcd60e51b815260040161079a90613ce5565b611036846127dd565b50505050565b6002546001600160a01b031681565b600254600160a01b900460ff1681565b6001546001600160a01b031661106f6121e2565b6001600160a01b0316148061109e57506002546001600160a01b03166110936121e2565b6001600160a01b0316145b6110ba5760405162461bcd60e51b815260040161079a90613d45565b604051303190600090339083906110d090613b46565b60006040518083038185875af1925050503d806000811461110d576040519150601f19603f3d011682016040523d82523d6000602084013e611112565b606091505b50509050806111335760405162461bcd60e51b815260040161079a90613d05565b5050565b6000908152600660205260409020546001600160a01b031690565b60006001600160a01b03821661117a5760405162461bcd60e51b815260040161079a90613cd5565b6001600160a01b038216600090815260076020526040902061119b906121e6565b92915050565b6001546001600160a01b031681565b6001600160a01b0383166000908152600b602052604090819020905160609182916111de9086908690613b2d565b9081526020016040518091039020805480602002602001604051908101604052809291908181526020016000905b828210156112c357600084815260209081902060408051918501805460026001821615610100026000190190911604601f81018590048502840183018352938301848152929390928492909184918401828280156112ab5780601f10611280576101008083540402835291602001916112ab565b820191906000526020600020905b81548152906001019060200180831161128e57829003601f168201915b5050505050815250508152602001906001019061120c565b5050505090506060815160405190808252806020026020018201604052801561130057816020015b60608152602001906001900390816112eb5790505b50905060005b82518110156113465782818151811061131b57fe5b60200260200101516000015182828151811061133357fe5b6020908102919091010152600101611306565b509150505b9392505050565b6004546001600160a01b031681565b6001546001600160a01b03166113756121e2565b6001600160a01b031614806113a457506002546001600160a01b03166113996121e2565b6001600160a01b0316145b6113c05760405162461bcd60e51b815260040161079a90613d45565b600355565b6001546001600160a01b03166113d96121e2565b6001600160a01b0316148061140857506002546001600160a01b03166113fd6121e2565b6001600160a01b0316145b6114245760405162461bcd60e51b815260040161079a90613d45565b600254600160a01b900460ff161561143b57600080fd5b6002805460ff60a01b1916600160a01b179055565b6060600061145d83611152565b90508061147a576040805160008082526020820190925290610c43565b6060816040519080825280602002602001820160405280156114a6578160200160208202803883390190505b50905060006114b36108d9565b9050600060015b828111610cdc576000818152600660205260409020546001600160a01b038881169116141561150257808483815181106114f057fe5b60209081029190910101526001909101905b6001016114ba565b60118054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107685780601f1061073d57610100808354040283529160200191610768565b600254600160a01b900460ff161561158257600080fd5b61158a6121e2565b6001600160a01b0316826001600160a01b031614156115bb5760405162461bcd60e51b815260040161079a90613d25565b80600f60006115c86121e2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561160c6121e2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116449190613c68565b60405180910390a35050565b6001600160a01b0381166000908152600c602090815260408083208054825181850281018501909352808352606094859484015b8282101561173b57600084815260209081902060408051918501805460026001821615610100026000190190911604601f81018590048502840183018352938301848152929390928492909184918401828280156117235780601f106116f857610100808354040283529160200191611723565b820191906000526020600020905b81548152906001019060200180831161170657829003601f168201915b50505050508152505081526020019060010190611684565b5050505090506060815160405190808252806020026020018201604052801561177857816020015b60608152602001906001900390816117635790505b50905060005b82518110156117be5782818151811061179357fe5b6020026020010151600001518282815181106117ab57fe5b602090810291909101015260010161177e565b509392505050565b600254600160a01b900460ff16156117dd57600080fd5b6117ee6117e86121e2565b836121ea565b61180a5760405162461bcd60e51b815260040161079a90613da5565b6000828152600a60205260408120546001600160a01b03169061182c84611137565b600085815260096020908152604080832054600a9092529091206003015491925063ffffffff1690600160a01b900460ff1661188a5761186d87878761226f565b1561188a5760405162461bcd60e51b815260040161079a90613ca5565b60048054604051630d1e359160e01b81526001600160a01b0390911691630d1e3591916118c39185918c918c918c918b918b9101613dfc565b60206040518083038186803b1580156118db57600080fd5b505afa1580156118ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061191391908101906132fe565b61192f5760405162461bcd60e51b815260040161079a90613da5565b61193b878787876127ef565b50505050505050565b600254600090600160a01b900460ff161561195e57600080fd5b60035434101561196d57600080fd5b60008363ffffffff16116119935760405162461bcd60e51b815260040161079a90613d35565b6004546001600160a01b03166312d26ac8846119ad6121e2565b6040518363ffffffff1660e01b81526004016119ca929190613de1565b60206040518083038186803b1580156119e257600080fd5b505afa1580156119f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611a1a91908101906132fe565b611a365760405162461bcd60e51b815260040161079a90613d95565b611a438a898989876123c9565b611a5f5760405162461bcd60e51b815260040161079a90613d75565b6000610b93611a6c6121e2565b612822565b6001546001600160a01b0316611a856121e2565b6001600160a01b03161480611ab457506002546001600160a01b0316611aa96121e2565b6001600160a01b0316145b611ad05760405162461bcd60e51b815260040161079a90613d45565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6060611afd826121c5565b611b195760405162461bcd60e51b815260040161079a90613d85565b6000828152600d602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015611bac5780601f10611b8157610100808354040283529160200191611bac565b820191906000526020600020905b815481529060010190602001808311611b8f57829003601f168201915b50505050509050919050565b6001546001600160a01b0316611bcc6121e2565b6001600160a01b03161480611bfb57506002546001600160a01b0316611bf06121e2565b6001600160a01b0316145b611c175760405162461bcd60e51b815260040161079a90613d45565b6001600160a01b03811615611c4257600280546001600160a01b0319166001600160a01b0383161790555b50565b600080606080600080600080600080611c5d8b6121c5565b611c795760405162461bcd60e51b815260040161079a90613d85565b611c81612f0d565b60008c8152600a60209081526040918290208251610100808201855282546001600160a01b03168252600180840180548751600293821615909402600019011691909104601f8101869004860283018601909652858252919492938581019391929190830182828015611d355780601f10611d0a57610100808354040283529160200191611d35565b820191906000526020600020905b815481529060010190602001808311611d1857829003601f168201915b5050509183525050600282810180546040805160206001841615610100026000190190931694909404601f81018390048302850183019091528084529381019390830182828015611dc75780601f10611d9c57610100808354040283529160200191611dc7565b820191906000526020600020905b815481529060010190602001808311611daa57829003601f168201915b50505091835250506003919091015465ffffffffffff808216602080850191909152660100000000000083048216604080860191909152600160601b84049092166060850152600160901b830461ffff166080850152600160a01b90920460ff16151560a09093019290925260008f815260099091522054815191925063ffffffff1690611e548e611137565b83602001518460400151856060015186608001518760a001518860c001518960e00151898797508696509b509b509b509b509b509b509b509b509b509b5050509193959799509193959799565b6001546001600160a01b0316611eb56121e2565b6001600160a01b03161480611ee457506002546001600160a01b0316611ed96121e2565b6001600160a01b0316145b611f005760405162461bcd60e51b815260040161079a90613d45565b6001600160a01b03811615611c4257600180546001600160a01b0383166001600160a01b031990911617905550565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205460ff1690565b600254600090600160a01b900460ff1615611f7757600080fd5b600354341015611f8657600080fd5b60008263ffffffff1611611fac5760405162461bcd60e51b815260040161079a90613d35565b6004546001600160a01b03166312d26ac883611fc66121e2565b6040518363ffffffff1660e01b8152600401611fe3929190613de1565b60206040518083038186803b158015611ffb57600080fd5b505afa15801561200f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061203391908101906132fe565b61204f5760405162461bcd60e51b815260040161079a90613d95565b61205c89888888866123c9565b6120785760405162461bcd60e51b815260040161079a90613d75565b6000610e11611a6c6121e2565b600254600090600160a01b900460ff161561209f57600080fd5b6003543410156120ae57600080fd5b60008363ffffffff16116120d45760405162461bcd60e51b815260040161079a90613d35565b6004546001600160a01b03166312d26ac8846120ee6121e2565b6040518363ffffffff1660e01b815260040161210b929190613de1565b60206040518083038186803b15801561212357600080fd5b505afa158015612137573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061215b91908101906132fe565b6121775760405162461bcd60e51b815260040161079a90613d95565b6121848a898989876123c9565b6121a05760405162461bcd60e51b815260040161079a90613d75565b60006121b36121ad6121e2565b84612901565b9050610baf818c8c8c8c8c8c8c6124ef565b6000908152600660205260409020546001600160a01b0316151590565b3390565b5490565b60006121f5826121c5565b6122115760405162461bcd60e51b815260040161079a90613d85565b600061221c83611137565b9050806001600160a01b0316846001600160a01b031614806122575750836001600160a01b031661224c84610773565b6001600160a01b0316145b8061226757506122678185611f2f565b949350505050565b6000818152600a60205260408120546001600160a01b039081169085168114806122aa5750806001600160a01b0316846001600160a01b0316145b156122b957600091505061134b565b600191505061134b565b826001600160a01b03166122d682611137565b6001600160a01b0316146122fc5760405162461bcd60e51b815260040161079a90613da5565b6001600160a01b0382166123225760405162461bcd60e51b815260040161079a90613cc5565b61232b81612938565b6001600160a01b038316600090815260076020526040902061234c90612973565b6001600160a01b038216600090815260076020526040902061236d9061298a565b60008181526006602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6004805460405163abe6178360e01b81526000926001600160a01b039092169163abe61783916123fd9186918b9101613e56565b60206040518083038186803b15801561241557600080fd5b505afa158015612429573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061244d91908101906132fe565b6124695760405162461bcd60e51b815260040161079a90613d15565b8265ffffffffffff168565ffffffffffff16116124985760405162461bcd60e51b815260040161079a90613d55565b8465ffffffffffff168465ffffffffffff16116124c75760405162461bcd60e51b815260040161079a90613d65565b50600195945050505050565b60008061134b8360405180602001604052806000815250612901565b6124f8886121c5565b6125145760405162461bcd60e51b815260040161079a90613d85565b61251c612f0d565b6040518061010001604052806125306121e2565b6001600160a01b03908116825260208083018c905260408084018c905265ffffffffffff8b811660608601528a81166080860152891660a085015261ffff881660c085015286151560e09094019390935260008d8152600a825292909220835181546001600160a01b0319169216919091178155828201518051939450849391926125c392600185019290910190612f52565b50604082015180516125df916002840191602090910190612f52565b5060608201516003919091018054608084015160a085015160c086015160e09096015165ffffffffffff1990931665ffffffffffff958616176bffffffffffff00000000000019166601000000000000928616929092029190911765ffffffffffff60601b1916600160601b94909116939093029290921761ffff60901b1916600160901b61ffff909416939093029290921760ff60a01b1916600160a01b9115159190910217905561269188612993565b6126fa57600c60006126a16121e2565b6001600160a01b031681526020808201929092526040908101600090812082518085019093528b83528054600181018083559183529184902083518051929591909301926126f59284929190910190612f52565b505050505b6127048888612abe565b61278e57600b60006127146121e2565b6001600160a01b03166001600160a01b03168152602001908152602001600020886040516127429190613b3a565b908152604080519182900360209081018320838201909252898352815460018101808455600093845292829020845180519495949190920192612789928492910190612f52565b505050505b505050505050505050565b6127a2826121c5565b6127be5760405162461bcd60e51b815260040161079a90613d85565b6000828152600d602090815260409091208251610ef392840190612f52565b611c426127e982611137565b82612c05565b6127fa8484846122c3565b61280684848484612d44565b6110365760405162461bcd60e51b815260040161079a90613cb5565b60006001600160a01b03821661284a5760405162461bcd60e51b815260040161079a90613c95565b612854600561298a565b600061286060056121e6565b600081815260066020908152604080832080546001600160a01b0319166001600160a01b0389169081179091558352600790915290209091506128a29061298a565b6001600160a01b03831660009081526008602052604090206128c39061298a565b60405181906001600160a01b038516906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a492915050565b60008061290d84612822565b905061291c6000858386612d44565b61134b5760405162461bcd60e51b815260040161079a90613cb5565b6000818152600e60205260409020546001600160a01b031615611c42576000908152600e6020526040902080546001600160a01b0319169055565b805461298690600163ffffffff612e0f16565b9055565b80546001019055565b336000908152600c602090815260408083208054825181850281018501909352808352606093859084015b82821015612a7557600084815260209081902060408051918501805460026001821615610100026000190190911604601f8101859004850284018301835293830184815292939092849290918491840182828015612a5d5780601f10612a3257610100808354040283529160200191612a5d565b820191906000526020600020905b815481529060010190602001808311612a4057829003601f168201915b505050505081525050815260200190600101906129be565b5092935060009250829150505b82518110156117be57612aac85848381518110612a9b57fe5b602002602001015160000151612e51565b15612ab657600191505b600101612a82565b336000908152600b6020526040808220905160609190612adf908690613b3a565b9081526020016040518091039020805480602002602001604051908101604052809291908181526020016000905b82821015612bc457600084815260209081902060408051918501805460026001821615610100026000190190911604601f8101859004850284018301835293830184815292939092849290918491840182828015612bac5780601f10612b8157610100808354040283529160200191612bac565b820191906000526020600020905b815481529060010190602001808311612b8f57829003601f168201915b50505050508152505081526020019060010190612b0d565b5092935060009250829150505b8251811015612bfc57612bea85848381518110612a9b57fe5b15612bf457600191505b600101612bd1565b50949350505050565b816001600160a01b0316612c1882611137565b6001600160a01b031614612c3e5760405162461bcd60e51b815260040161079a90613ce5565b612c4781612938565b6001600160a01b0382166000908152600760205260409020612c6890612973565b600081815260066020908152604080832080546001600160a01b0319169055600d9091529020546002600019600183161561010002019091160415612cbe576000818152600d60205260408120612cbe91612fd0565b6000818152600a6020526040812080546001600160a01b031916815590612ce86001830182612fd0565b612cf6600283016000612fd0565b5060030180546001600160a81b031916905560405181906000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000612d58846001600160a01b0316612eaa565b612d6457506001612267565b6000846001600160a01b031663150b7a02612d7d6121e2565b8887876040518563ffffffff1660e01b8152600401612d9f9493929190613c02565b602060405180830381600087803b158015612db957600080fd5b505af1158015612dcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250612df1919081019061333a565b6001600160e01b031916630a85bd0160e11b14915050949350505050565b600061134b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612ee1565b600081604051602001612e649190613b3a565b6040516020818303038152906040528051906020012083604051602001612e8b9190613b3a565b6040516020818303038152906040528051906020012014905092915050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906122675750141592915050565b60008184841115612f055760405162461bcd60e51b815260040161079a9190613c84565b505050900390565b604080516101008101825260008082526060602083018190529282018390529181018290526080810182905260a0810182905260c0810182905260e081019190915290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612f9357805160ff1916838001178555612fc0565b82800160010185558215612fc0579182015b82811115612fc0578251825591602001919060010190612fa5565b50612fcc929150613010565b5090565b50805460018160011615610100020316600290046000825580601f10612ff65750611c42565b601f016020900490600052602060002090810190611c4291905b61077091905b80821115612fcc5760008155600101613016565b803561119b81613f69565b803561119b81613f7d565b805161119b81613f7d565b803561119b81613f86565b805161119b81613f86565b600082601f83011261307257600080fd5b813561308561308082613e9d565b613e76565b915080825260208301602083018583830111156130a157600080fd5b6130ac838284613f27565b50505092915050565b60008083601f8401126130c757600080fd5b50813567ffffffffffffffff8111156130df57600080fd5b6020830191508360018202830111156130f757600080fd5b9250929050565b803561119b81613f8f565b803561119b81613f98565b803561119b81613fa1565b803561119b81613faa565b60006020828403121561313c57600080fd5b6000612267848461302a565b6000806040838503121561315b57600080fd5b6000613167858561302a565b92505060206131788582860161302a565b9150509250929050565b60008060006060848603121561319757600080fd5b60006131a3868661302a565b93505060206131b48682870161302a565b92505060406131c586828701613109565b9150509250925092565b600080600080608085870312156131e557600080fd5b60006131f1878761302a565b94505060206132028782880161302a565b935050604061321387828801613109565b925050606085013567ffffffffffffffff81111561323057600080fd5b61323c87828801613061565b91505092959194509250565b6000806040838503121561325b57600080fd5b6000613267858561302a565b925050602061317885828601613035565b60008060006040848603121561328d57600080fd5b6000613299868661302a565b935050602084013567ffffffffffffffff8111156132b657600080fd5b6132c2868287016130b5565b92509250509250925092565b600080604083850312156132e157600080fd5b60006132ed858561302a565b925050602061317885828601613109565b60006020828403121561331057600080fd5b60006122678484613040565b60006020828403121561332e57600080fd5b6000612267848461304b565b60006020828403121561334c57600080fd5b60006122678484613056565b600080600080600080600080610100898b03121561337557600080fd5b883567ffffffffffffffff81111561338c57600080fd5b6133988b828c01613061565b985050602089013567ffffffffffffffff8111156133b557600080fd5b6133c18b828c01613061565b97505060406133d28b828c0161311f565b96505060606133e38b828c0161311f565b95505060806133f48b828c0161311f565b94505060a06134058b828c016130fe565b93505060c06134168b828c01613035565b92505060e06134278b828c01613114565b9150509295985092959890939650565b60008060008060008060008060006101208a8c03121561345657600080fd5b893567ffffffffffffffff81111561346d57600080fd5b6134798c828d01613061565b99505060208a013567ffffffffffffffff81111561349657600080fd5b6134a28c828d01613061565b98505060406134b38c828d0161311f565b97505060606134c48c828d0161311f565b96505060806134d58c828d0161311f565b95505060a06134e68c828d016130fe565b94505060c06134f78c828d01613035565b93505060e06135088c828d01613114565b9250506101008a013567ffffffffffffffff81111561352657600080fd5b6135328c828d01613061565b9150509295985092959850929598565b60006020828403121561355457600080fd5b60006122678484613109565b600061134b838361365f565b60006135788383613b12565b505060200190565b61358981613ed8565b82525050565b600061359a82613ecb565b6135a48185613ecf565b9350836020820285016135b685613ec5565b8060005b858110156135f057848403895281516135d38582613560565b94506135de83613ec5565b60209a909a01999250506001016135ba565b5091979650505050505050565b600061360882613ecb565b6136128185613ecf565b935061361d83613ec5565b8060005b8381101561364b578151613635888261356c565b975061364083613ec5565b925050600101613621565b509495945050505050565b61358981613ee3565b600061366a82613ecb565b6136748185613ecf565b9350613684818560208601613f33565b61368d81613f5f565b9093019392505050565b61358981613f1c565b60006136ac83856106d7565b93506136b9838584613f27565b50500190565b60006136ca82613ecb565b6136d481856106d7565b93506136e4818560208601613f33565b9290920192915050565b60006136fb601483613ecf565b734d494e545f544f5f5a45524f5f4144445245535360601b815260200192915050565b600061372b601a83613ecf565b7f5345434f4e444152595f54524144494e475f44495341424c4544000000000000815260200192915050565b6000613764602a83613ecf565b7f5452414e534645525f544f5f4e4f4e5f45524337323152454345495645525f4981526926a82622a6a2a72a22a960b11b602082015260400192915050565b60006137b0601883613ecf565b7f5452414e534645525f544f5f5a45524f5f414444524553530000000000000000815260200192915050565b60006137e9601983613ecf565b7f43414e4e4f545f51554552595f5a45524f5f4144445245535300000000000000815260200192915050565b6000613822601183613ecf565b702aa720aaaa2427a924ad22a22fa12aa92760791b815260200192915050565b600061384f601583613ecf565b741054141493d5905317d254d7d49151155391105395605a1b815260200192915050565b6000613880600f83613ecf565b6e15d2551211149055d7d19052531151608a1b815260200192915050565b60006138ab602383613ecf565b7f434f4e54454e545f49445f4e4f545f524547495354455245445f544f5f43414c8152622622a960e91b602082015260400192915050565b60006138f0601a83613ecf565b7f43414c4c45525f43414e4e4f545f415050524f56455f53454c46000000000000815260200192915050565b6000613929601583613ecf565b741253959053125117d19151115490551253d397d251605a1b815260200192915050565b600061395a601383613ecf565b7227a7262cafa1a7a72a2920a1aa2fa7aba722a960691b815260200192915050565b6000613989602183613ecf565b7f53544152545f54494d455f41465445525f41554354494f4e5f454e445f54494d8152604560f81b602082015260400192915050565b60006139cc601983613ecf565b7f53544152545f54494d455f41465445525f454e445f54494d4500000000000000815260200192915050565b600061119b6000836106d7565b6000613a12601183613ecf565b701253959053125117d512535157d4d313d5607a1b815260200192915050565b6000613a3f601283613ecf565b712727a72fa2ac24a9aa22a72a2faa27a5a2a760711b815260200192915050565b6000613a6d602583613ecf565b7f43414c4c45525f4e4f545f415554484f52495a45445f464f525f4d494e5445528152645f524f4c4560d81b602082015260400192915050565b6000613ab4601583613ecf565b742aa720aaaa2427a924ad22a22faa2920a729a322a960591b815260200192915050565b6000613ae5601583613ecf565b7410d05313115497d393d517d055551213d492569151605a1b815260200192915050565b61358981613ef5565b61358981610770565b61358981613f08565b61358981613f11565b60006122678284866136a0565b600061134b82846136bf565b600061119b826139f8565b6020810161119b8284613580565b6101408101613b6e828d613580565b613b7b602083018c613580565b8181036040830152613b8d818b61365f565b90508181036060830152613ba1818a61365f565b9050613bb06080830189613b24565b613bbd60a0830188613b24565b613bca60c0830187613b24565b613bd760e0830186613b09565b613be5610100830185613656565b613bf3610120830184613b1b565b9b9a5050505050505050505050565b60808101613c108287613580565b613c1d6020830186613580565b613c2a6040830185613b12565b8181036060830152613c3c818461365f565b9695505050505050565b6020808252810161134b818461358f565b6020808252810161134b81846135fd565b6020810161119b8284613656565b6020810161119b8284613697565b6020808252810161134b818461365f565b6020808252810161119b816136ee565b6020808252810161119b8161371e565b6020808252810161119b81613757565b6020808252810161119b816137a3565b6020808252810161119b816137dc565b6020808252810161119b81613815565b6020808252810161119b81613842565b6020808252810161119b81613873565b6020808252810161119b8161389e565b6020808252810161119b816138e3565b6020808252810161119b8161391c565b6020808252810161119b8161394d565b6020808252810161119b8161397c565b6020808252810161119b816139bf565b6020808252810161119b81613a05565b6020808252810161119b81613a32565b6020808252810161119b81613a60565b6020808252810161119b81613aa7565b6020808252810161119b81613ad8565b6020810161119b8284613b12565b6020810161119b8284613b1b565b60408101613def8285613b1b565b61134b6020830184613580565b60c08101613e0a8289613b1b565b613e176020830188613580565b613e246040830187613580565b613e316060830186613b12565b613e3e6080830185613580565b613e4b60a0830184613580565b979650505050505050565b60408101613e648285613b1b565b8181036020830152612267818461365f565b60405181810167ffffffffffffffff81118282101715613e9557600080fd5b604052919050565b600067ffffffffffffffff821115613eb457600080fd5b506020601f91909101601f19160190565b60200190565b5190565b90815260200190565b600061119b82613efc565b151590565b6001600160e01b03191690565b61ffff1690565b6001600160a01b031690565b63ffffffff1690565b65ffffffffffff1690565b600061119b82613ed8565b82818337506000910152565b60005b83811015613f4e578181015183820152602001613f36565b838111156110365750506000910152565b601f01601f191690565b613f7281613ed8565b8114611c4257600080fd5b613f7281613ee3565b613f7281613ee8565b613f7281613ef5565b613f7281610770565b613f7281613f08565b613f7281613f1156fea365627a7a72315820cc16874d5e16d1eaeec31cb059b3292afaff9b5a13d15dde38e03ba547ea00276c6578706572696d656e74616cf564736f6c634300050b0040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007668a7d18439fb9779db55c8686ccd7bcf205d1200000000000000000000000000000000000000000000000000000000000000184d6963726f73706f6e736f72732054696d6520536c6f7473000000000000000000000000000000000000000000000000000000000000000000000000000000044d53505400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102255760003560e01c80637368891411610123578063b88d4fde116100ab578063e5c249241161006f578063e5c249241461061d578063e982d5a914610653578063e985e9c514610673578063f33efd1e14610693578063fb796bb7146106a657610225565b8063b88d4fde1461058a578063c51e713c146105aa578063c57a8825146105bd578063c87b56dd146105dd578063e2b375a9146105fd57610225565b80638456cb59116100f25780638456cb59146105005780638462151c1461051557806395d89b4114610535578063a22cb4651461054a578063a4ede1281461056a57610225565b8063736889141461047c5780637affcb9a146104915780637b103999146104be57806384017e52146104e057610225565b80632a0c7799116101b1578063527097251161017557806352709725146103fd5780635c975abb146104125780635fd8c710146104275780636352211e1461043c57806370a082311461045c57610225565b80632a0c7799146103685780632e0dccbb146103955780633f4ba83a146103a857806342842e0e146103bd57806342966c68146103dd57610225565b806313966db5116101f857806313966db5146102d1578063180b9e3f146102f357806318160ddd1461032057806323b872dd146103355780632441c7091461035557610225565b806301ffc9a71461022a57806306fdde0314610260578063081812fc14610282578063095ea7b3146102af575b600080fd5b34801561023657600080fd5b5061024a61024536600461331c565b6106b9565b6040516102579190613c68565b60405180910390f35b34801561026c57600080fd5b506102756106dc565b6040516102579190613c84565b34801561028e57600080fd5b506102a261029d366004613542565b610773565b6040516102579190613b51565b3480156102bb57600080fd5b506102cf6102ca3660046132ce565b6107bf565b005b3480156102dd57600080fd5b506102e66108bb565b6040516102579190613dc5565b3480156102ff57600080fd5b5061031361030e366004613542565b6108c1565b6040516102579190613dd3565b34801561032c57600080fd5b506102e66108d9565b34801561034157600080fd5b506102cf610350366004613182565b6108ea565b6102e6610363366004613437565b610a66565b34801561037457600080fd5b5061038861038336600461312a565b610be1565b6040516102579190613c57565b6102e66103a3366004613358565b610ce9565b3480156103b457600080fd5b506102cf610e54565b3480156103c957600080fd5b506102cf6103d8366004613182565b610ed8565b3480156103e957600080fd5b506102cf6103f8366004613542565b610ef8565b34801561040957600080fd5b506102a261103c565b34801561041e57600080fd5b5061024a61104b565b34801561043357600080fd5b506102cf61105b565b34801561044857600080fd5b506102a2610457366004613542565b611137565b34801561046857600080fd5b506102e661047736600461312a565b611152565b34801561048857600080fd5b506102a26111a1565b34801561049d57600080fd5b506104b16104ac366004613278565b6111b0565b6040516102579190613c46565b3480156104ca57600080fd5b506104d3611352565b6040516102579190613c76565b3480156104ec57600080fd5b506102cf6104fb366004613542565b611361565b34801561050c57600080fd5b506102cf6113c5565b34801561052157600080fd5b5061038861053036600461312a565b611450565b34801561054157600080fd5b5061027561150a565b34801561055657600080fd5b506102cf610565366004613248565b61156b565b34801561057657600080fd5b506104b161058536600461312a565b611650565b34801561059657600080fd5b506102cf6105a53660046131cf565b6117c6565b6102e66105b8366004613437565b611944565b3480156105c957600080fd5b506102cf6105d836600461312a565b611a71565b3480156105e957600080fd5b506102756105f8366004613542565b611af2565b34801561060957600080fd5b506102cf61061836600461312a565b611bb8565b34801561062957600080fd5b5061063d610638366004613542565b611c45565b6040516102579a99989796959493929190613b5f565b34801561065f57600080fd5b506102cf61066e36600461312a565b611ea1565b34801561067f57600080fd5b5061024a61068e366004613148565b611f2f565b6102e66106a1366004613358565b611f5d565b6102e66106b4366004613437565b612085565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60108054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107685780601f1061073d57610100808354040283529160200191610768565b820191906000526020600020905b81548152906001019060200180831161074b57829003601f168201915b505050505090505b90565b600061077e826121c5565b6107a35760405162461bcd60e51b815260040161079a90613d85565b60405180910390fd5b506000908152600e60205260409020546001600160a01b031690565b600254600160a01b900460ff16156107d657600080fd5b60006107e182611137565b9050806001600160a01b0316836001600160a01b031614156108155760405162461bcd60e51b815260040161079a90613cf5565b806001600160a01b03166108276121e2565b6001600160a01b0316148061084357506108438161068e6121e2565b61085f5760405162461bcd60e51b815260040161079a90613db5565b6000828152600e602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60035481565b60096020526000908152604090205463ffffffff1681565b60006108e560056121e6565b905090565b600254600160a01b900460ff161561090157600080fd5b61091261090c6121e2565b826121ea565b61092e5760405162461bcd60e51b815260040161079a90613da5565b6000818152600a60205260408120546001600160a01b03169061095083611137565b600084815260096020908152604080832054600a9092529091206003015491925063ffffffff1690600160a01b900460ff166109ae5761099186868661226f565b156109ae5760405162461bcd60e51b815260040161079a90613ca5565b60048054604051630d1e359160e01b81526001600160a01b0390911691630d1e3591916109e79185918b918b918b918b918b9101613dfc565b60206040518083038186803b1580156109ff57600080fd5b505afa158015610a13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610a3791908101906132fe565b610a535760405162461bcd60e51b815260040161079a90613da5565b610a5e8686866122c3565b505050505050565b600254600090600160a01b900460ff1615610a8057600080fd5b600354341015610a8f57600080fd5b60008363ffffffff1611610ab55760405162461bcd60e51b815260040161079a90613d35565b6004546001600160a01b03166312d26ac884610acf6121e2565b6040518363ffffffff1660e01b8152600401610aec929190613de1565b60206040518083038186803b158015610b0457600080fd5b505afa158015610b18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610b3c91908101906132fe565b610b585760405162461bcd60e51b815260040161079a90613d95565b610b658a898989876123c9565b610b815760405162461bcd60e51b815260040161079a90613d75565b6000610b93610b8e6121e2565b6124d3565b9050610ba5818c8c8c8c8c8c8c6124ef565b610baf8184612799565b6000818152600960205260409020805463ffffffff861663ffffffff1990911617905590509998505050505050505050565b60606001600160a01b038216610c095760405162461bcd60e51b815260040161079a90613cd5565b6001600160a01b0382166000908152600860205260408120610c2a906121e6565b905080610c4c5760408051600080825260208201909252905b509150506106d7565b606081604051908082528060200260200182016040528015610c78578160200160208202803883390190505b5090506000610c856108d9565b9050600060015b828111610cdc576000818152600a60205260409020546001600160a01b0388811691161415610cd45780848381518110610cc257fe5b60209081029190910101526001909101905b600101610c8c565b83955050505050506106d7565b600254600090600160a01b900460ff1615610d0357600080fd5b600354341015610d1257600080fd5b60008263ffffffff1611610d385760405162461bcd60e51b815260040161079a90613d35565b6004546001600160a01b03166312d26ac883610d526121e2565b6040518363ffffffff1660e01b8152600401610d6f929190613de1565b60206040518083038186803b158015610d8757600080fd5b505afa158015610d9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610dbf91908101906132fe565b610ddb5760405162461bcd60e51b815260040161079a90613d95565b610de889888888866123c9565b610e045760405162461bcd60e51b815260040161079a90613d75565b6000610e11610b8e6121e2565b9050610e23818b8b8b8b8b8b8b6124ef565b6000818152600960205260409020805463ffffffff851663ffffffff19909116179055905098975050505050505050565b6001546001600160a01b0316610e686121e2565b6001600160a01b03161480610e9757506002546001600160a01b0316610e8c6121e2565b6001600160a01b0316145b610eb35760405162461bcd60e51b815260040161079a90613d45565b600254600160a01b900460ff16610ec957600080fd5b6002805460ff60a01b19169055565b610ef3838383604051806020016040528060008152506117c6565b505050565b600254600160a01b900460ff1615610f0f57600080fd5b6000818152600a60205260408120546001600160a01b031690610f3183611137565b60008481526009602052604090205490915063ffffffff166001600160a01b038083169084161415611000576004546001600160a01b03166312d26ac882610f776121e2565b6040518363ffffffff1660e01b8152600401610f94929190613de1565b60206040518083038186803b158015610fac57600080fd5b505afa158015610fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610fe491908101906132fe565b6110005760405162461bcd60e51b815260040161079a90613ce5565b61101161100b6121e2565b856121ea565b61102d5760405162461bcd60e51b815260040161079a90613ce5565b611036846127dd565b50505050565b6002546001600160a01b031681565b600254600160a01b900460ff1681565b6001546001600160a01b031661106f6121e2565b6001600160a01b0316148061109e57506002546001600160a01b03166110936121e2565b6001600160a01b0316145b6110ba5760405162461bcd60e51b815260040161079a90613d45565b604051303190600090339083906110d090613b46565b60006040518083038185875af1925050503d806000811461110d576040519150601f19603f3d011682016040523d82523d6000602084013e611112565b606091505b50509050806111335760405162461bcd60e51b815260040161079a90613d05565b5050565b6000908152600660205260409020546001600160a01b031690565b60006001600160a01b03821661117a5760405162461bcd60e51b815260040161079a90613cd5565b6001600160a01b038216600090815260076020526040902061119b906121e6565b92915050565b6001546001600160a01b031681565b6001600160a01b0383166000908152600b602052604090819020905160609182916111de9086908690613b2d565b9081526020016040518091039020805480602002602001604051908101604052809291908181526020016000905b828210156112c357600084815260209081902060408051918501805460026001821615610100026000190190911604601f81018590048502840183018352938301848152929390928492909184918401828280156112ab5780601f10611280576101008083540402835291602001916112ab565b820191906000526020600020905b81548152906001019060200180831161128e57829003601f168201915b5050505050815250508152602001906001019061120c565b5050505090506060815160405190808252806020026020018201604052801561130057816020015b60608152602001906001900390816112eb5790505b50905060005b82518110156113465782818151811061131b57fe5b60200260200101516000015182828151811061133357fe5b6020908102919091010152600101611306565b509150505b9392505050565b6004546001600160a01b031681565b6001546001600160a01b03166113756121e2565b6001600160a01b031614806113a457506002546001600160a01b03166113996121e2565b6001600160a01b0316145b6113c05760405162461bcd60e51b815260040161079a90613d45565b600355565b6001546001600160a01b03166113d96121e2565b6001600160a01b0316148061140857506002546001600160a01b03166113fd6121e2565b6001600160a01b0316145b6114245760405162461bcd60e51b815260040161079a90613d45565b600254600160a01b900460ff161561143b57600080fd5b6002805460ff60a01b1916600160a01b179055565b6060600061145d83611152565b90508061147a576040805160008082526020820190925290610c43565b6060816040519080825280602002602001820160405280156114a6578160200160208202803883390190505b50905060006114b36108d9565b9050600060015b828111610cdc576000818152600660205260409020546001600160a01b038881169116141561150257808483815181106114f057fe5b60209081029190910101526001909101905b6001016114ba565b60118054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107685780601f1061073d57610100808354040283529160200191610768565b600254600160a01b900460ff161561158257600080fd5b61158a6121e2565b6001600160a01b0316826001600160a01b031614156115bb5760405162461bcd60e51b815260040161079a90613d25565b80600f60006115c86121e2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561160c6121e2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116449190613c68565b60405180910390a35050565b6001600160a01b0381166000908152600c602090815260408083208054825181850281018501909352808352606094859484015b8282101561173b57600084815260209081902060408051918501805460026001821615610100026000190190911604601f81018590048502840183018352938301848152929390928492909184918401828280156117235780601f106116f857610100808354040283529160200191611723565b820191906000526020600020905b81548152906001019060200180831161170657829003601f168201915b50505050508152505081526020019060010190611684565b5050505090506060815160405190808252806020026020018201604052801561177857816020015b60608152602001906001900390816117635790505b50905060005b82518110156117be5782818151811061179357fe5b6020026020010151600001518282815181106117ab57fe5b602090810291909101015260010161177e565b509392505050565b600254600160a01b900460ff16156117dd57600080fd5b6117ee6117e86121e2565b836121ea565b61180a5760405162461bcd60e51b815260040161079a90613da5565b6000828152600a60205260408120546001600160a01b03169061182c84611137565b600085815260096020908152604080832054600a9092529091206003015491925063ffffffff1690600160a01b900460ff1661188a5761186d87878761226f565b1561188a5760405162461bcd60e51b815260040161079a90613ca5565b60048054604051630d1e359160e01b81526001600160a01b0390911691630d1e3591916118c39185918c918c918c918b918b9101613dfc565b60206040518083038186803b1580156118db57600080fd5b505afa1580156118ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061191391908101906132fe565b61192f5760405162461bcd60e51b815260040161079a90613da5565b61193b878787876127ef565b50505050505050565b600254600090600160a01b900460ff161561195e57600080fd5b60035434101561196d57600080fd5b60008363ffffffff16116119935760405162461bcd60e51b815260040161079a90613d35565b6004546001600160a01b03166312d26ac8846119ad6121e2565b6040518363ffffffff1660e01b81526004016119ca929190613de1565b60206040518083038186803b1580156119e257600080fd5b505afa1580156119f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611a1a91908101906132fe565b611a365760405162461bcd60e51b815260040161079a90613d95565b611a438a898989876123c9565b611a5f5760405162461bcd60e51b815260040161079a90613d75565b6000610b93611a6c6121e2565b612822565b6001546001600160a01b0316611a856121e2565b6001600160a01b03161480611ab457506002546001600160a01b0316611aa96121e2565b6001600160a01b0316145b611ad05760405162461bcd60e51b815260040161079a90613d45565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6060611afd826121c5565b611b195760405162461bcd60e51b815260040161079a90613d85565b6000828152600d602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015611bac5780601f10611b8157610100808354040283529160200191611bac565b820191906000526020600020905b815481529060010190602001808311611b8f57829003601f168201915b50505050509050919050565b6001546001600160a01b0316611bcc6121e2565b6001600160a01b03161480611bfb57506002546001600160a01b0316611bf06121e2565b6001600160a01b0316145b611c175760405162461bcd60e51b815260040161079a90613d45565b6001600160a01b03811615611c4257600280546001600160a01b0319166001600160a01b0383161790555b50565b600080606080600080600080600080611c5d8b6121c5565b611c795760405162461bcd60e51b815260040161079a90613d85565b611c81612f0d565b60008c8152600a60209081526040918290208251610100808201855282546001600160a01b03168252600180840180548751600293821615909402600019011691909104601f8101869004860283018601909652858252919492938581019391929190830182828015611d355780601f10611d0a57610100808354040283529160200191611d35565b820191906000526020600020905b815481529060010190602001808311611d1857829003601f168201915b5050509183525050600282810180546040805160206001841615610100026000190190931694909404601f81018390048302850183019091528084529381019390830182828015611dc75780601f10611d9c57610100808354040283529160200191611dc7565b820191906000526020600020905b815481529060010190602001808311611daa57829003601f168201915b50505091835250506003919091015465ffffffffffff808216602080850191909152660100000000000083048216604080860191909152600160601b84049092166060850152600160901b830461ffff166080850152600160a01b90920460ff16151560a09093019290925260008f815260099091522054815191925063ffffffff1690611e548e611137565b83602001518460400151856060015186608001518760a001518860c001518960e00151898797508696509b509b509b509b509b509b509b509b509b509b5050509193959799509193959799565b6001546001600160a01b0316611eb56121e2565b6001600160a01b03161480611ee457506002546001600160a01b0316611ed96121e2565b6001600160a01b0316145b611f005760405162461bcd60e51b815260040161079a90613d45565b6001600160a01b03811615611c4257600180546001600160a01b0383166001600160a01b031990911617905550565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205460ff1690565b600254600090600160a01b900460ff1615611f7757600080fd5b600354341015611f8657600080fd5b60008263ffffffff1611611fac5760405162461bcd60e51b815260040161079a90613d35565b6004546001600160a01b03166312d26ac883611fc66121e2565b6040518363ffffffff1660e01b8152600401611fe3929190613de1565b60206040518083038186803b158015611ffb57600080fd5b505afa15801561200f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061203391908101906132fe565b61204f5760405162461bcd60e51b815260040161079a90613d95565b61205c89888888866123c9565b6120785760405162461bcd60e51b815260040161079a90613d75565b6000610e11611a6c6121e2565b600254600090600160a01b900460ff161561209f57600080fd5b6003543410156120ae57600080fd5b60008363ffffffff16116120d45760405162461bcd60e51b815260040161079a90613d35565b6004546001600160a01b03166312d26ac8846120ee6121e2565b6040518363ffffffff1660e01b815260040161210b929190613de1565b60206040518083038186803b15801561212357600080fd5b505afa158015612137573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061215b91908101906132fe565b6121775760405162461bcd60e51b815260040161079a90613d95565b6121848a898989876123c9565b6121a05760405162461bcd60e51b815260040161079a90613d75565b60006121b36121ad6121e2565b84612901565b9050610baf818c8c8c8c8c8c8c6124ef565b6000908152600660205260409020546001600160a01b0316151590565b3390565b5490565b60006121f5826121c5565b6122115760405162461bcd60e51b815260040161079a90613d85565b600061221c83611137565b9050806001600160a01b0316846001600160a01b031614806122575750836001600160a01b031661224c84610773565b6001600160a01b0316145b8061226757506122678185611f2f565b949350505050565b6000818152600a60205260408120546001600160a01b039081169085168114806122aa5750806001600160a01b0316846001600160a01b0316145b156122b957600091505061134b565b600191505061134b565b826001600160a01b03166122d682611137565b6001600160a01b0316146122fc5760405162461bcd60e51b815260040161079a90613da5565b6001600160a01b0382166123225760405162461bcd60e51b815260040161079a90613cc5565b61232b81612938565b6001600160a01b038316600090815260076020526040902061234c90612973565b6001600160a01b038216600090815260076020526040902061236d9061298a565b60008181526006602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6004805460405163abe6178360e01b81526000926001600160a01b039092169163abe61783916123fd9186918b9101613e56565b60206040518083038186803b15801561241557600080fd5b505afa158015612429573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061244d91908101906132fe565b6124695760405162461bcd60e51b815260040161079a90613d15565b8265ffffffffffff168565ffffffffffff16116124985760405162461bcd60e51b815260040161079a90613d55565b8465ffffffffffff168465ffffffffffff16116124c75760405162461bcd60e51b815260040161079a90613d65565b50600195945050505050565b60008061134b8360405180602001604052806000815250612901565b6124f8886121c5565b6125145760405162461bcd60e51b815260040161079a90613d85565b61251c612f0d565b6040518061010001604052806125306121e2565b6001600160a01b03908116825260208083018c905260408084018c905265ffffffffffff8b811660608601528a81166080860152891660a085015261ffff881660c085015286151560e09094019390935260008d8152600a825292909220835181546001600160a01b0319169216919091178155828201518051939450849391926125c392600185019290910190612f52565b50604082015180516125df916002840191602090910190612f52565b5060608201516003919091018054608084015160a085015160c086015160e09096015165ffffffffffff1990931665ffffffffffff958616176bffffffffffff00000000000019166601000000000000928616929092029190911765ffffffffffff60601b1916600160601b94909116939093029290921761ffff60901b1916600160901b61ffff909416939093029290921760ff60a01b1916600160a01b9115159190910217905561269188612993565b6126fa57600c60006126a16121e2565b6001600160a01b031681526020808201929092526040908101600090812082518085019093528b83528054600181018083559183529184902083518051929591909301926126f59284929190910190612f52565b505050505b6127048888612abe565b61278e57600b60006127146121e2565b6001600160a01b03166001600160a01b03168152602001908152602001600020886040516127429190613b3a565b908152604080519182900360209081018320838201909252898352815460018101808455600093845292829020845180519495949190920192612789928492910190612f52565b505050505b505050505050505050565b6127a2826121c5565b6127be5760405162461bcd60e51b815260040161079a90613d85565b6000828152600d602090815260409091208251610ef392840190612f52565b611c426127e982611137565b82612c05565b6127fa8484846122c3565b61280684848484612d44565b6110365760405162461bcd60e51b815260040161079a90613cb5565b60006001600160a01b03821661284a5760405162461bcd60e51b815260040161079a90613c95565b612854600561298a565b600061286060056121e6565b600081815260066020908152604080832080546001600160a01b0319166001600160a01b0389169081179091558352600790915290209091506128a29061298a565b6001600160a01b03831660009081526008602052604090206128c39061298a565b60405181906001600160a01b038516906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a492915050565b60008061290d84612822565b905061291c6000858386612d44565b61134b5760405162461bcd60e51b815260040161079a90613cb5565b6000818152600e60205260409020546001600160a01b031615611c42576000908152600e6020526040902080546001600160a01b0319169055565b805461298690600163ffffffff612e0f16565b9055565b80546001019055565b336000908152600c602090815260408083208054825181850281018501909352808352606093859084015b82821015612a7557600084815260209081902060408051918501805460026001821615610100026000190190911604601f8101859004850284018301835293830184815292939092849290918491840182828015612a5d5780601f10612a3257610100808354040283529160200191612a5d565b820191906000526020600020905b815481529060010190602001808311612a4057829003601f168201915b505050505081525050815260200190600101906129be565b5092935060009250829150505b82518110156117be57612aac85848381518110612a9b57fe5b602002602001015160000151612e51565b15612ab657600191505b600101612a82565b336000908152600b6020526040808220905160609190612adf908690613b3a565b9081526020016040518091039020805480602002602001604051908101604052809291908181526020016000905b82821015612bc457600084815260209081902060408051918501805460026001821615610100026000190190911604601f8101859004850284018301835293830184815292939092849290918491840182828015612bac5780601f10612b8157610100808354040283529160200191612bac565b820191906000526020600020905b815481529060010190602001808311612b8f57829003601f168201915b50505050508152505081526020019060010190612b0d565b5092935060009250829150505b8251811015612bfc57612bea85848381518110612a9b57fe5b15612bf457600191505b600101612bd1565b50949350505050565b816001600160a01b0316612c1882611137565b6001600160a01b031614612c3e5760405162461bcd60e51b815260040161079a90613ce5565b612c4781612938565b6001600160a01b0382166000908152600760205260409020612c6890612973565b600081815260066020908152604080832080546001600160a01b0319169055600d9091529020546002600019600183161561010002019091160415612cbe576000818152600d60205260408120612cbe91612fd0565b6000818152600a6020526040812080546001600160a01b031916815590612ce86001830182612fd0565b612cf6600283016000612fd0565b5060030180546001600160a81b031916905560405181906000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000612d58846001600160a01b0316612eaa565b612d6457506001612267565b6000846001600160a01b031663150b7a02612d7d6121e2565b8887876040518563ffffffff1660e01b8152600401612d9f9493929190613c02565b602060405180830381600087803b158015612db957600080fd5b505af1158015612dcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250612df1919081019061333a565b6001600160e01b031916630a85bd0160e11b14915050949350505050565b600061134b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612ee1565b600081604051602001612e649190613b3a565b6040516020818303038152906040528051906020012083604051602001612e8b9190613b3a565b6040516020818303038152906040528051906020012014905092915050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906122675750141592915050565b60008184841115612f055760405162461bcd60e51b815260040161079a9190613c84565b505050900390565b604080516101008101825260008082526060602083018190529282018390529181018290526080810182905260a0810182905260c0810182905260e081019190915290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612f9357805160ff1916838001178555612fc0565b82800160010185558215612fc0579182015b82811115612fc0578251825591602001919060010190612fa5565b50612fcc929150613010565b5090565b50805460018160011615610100020316600290046000825580601f10612ff65750611c42565b601f016020900490600052602060002090810190611c4291905b61077091905b80821115612fcc5760008155600101613016565b803561119b81613f69565b803561119b81613f7d565b805161119b81613f7d565b803561119b81613f86565b805161119b81613f86565b600082601f83011261307257600080fd5b813561308561308082613e9d565b613e76565b915080825260208301602083018583830111156130a157600080fd5b6130ac838284613f27565b50505092915050565b60008083601f8401126130c757600080fd5b50813567ffffffffffffffff8111156130df57600080fd5b6020830191508360018202830111156130f757600080fd5b9250929050565b803561119b81613f8f565b803561119b81613f98565b803561119b81613fa1565b803561119b81613faa565b60006020828403121561313c57600080fd5b6000612267848461302a565b6000806040838503121561315b57600080fd5b6000613167858561302a565b92505060206131788582860161302a565b9150509250929050565b60008060006060848603121561319757600080fd5b60006131a3868661302a565b93505060206131b48682870161302a565b92505060406131c586828701613109565b9150509250925092565b600080600080608085870312156131e557600080fd5b60006131f1878761302a565b94505060206132028782880161302a565b935050604061321387828801613109565b925050606085013567ffffffffffffffff81111561323057600080fd5b61323c87828801613061565b91505092959194509250565b6000806040838503121561325b57600080fd5b6000613267858561302a565b925050602061317885828601613035565b60008060006040848603121561328d57600080fd5b6000613299868661302a565b935050602084013567ffffffffffffffff8111156132b657600080fd5b6132c2868287016130b5565b92509250509250925092565b600080604083850312156132e157600080fd5b60006132ed858561302a565b925050602061317885828601613109565b60006020828403121561331057600080fd5b60006122678484613040565b60006020828403121561332e57600080fd5b6000612267848461304b565b60006020828403121561334c57600080fd5b60006122678484613056565b600080600080600080600080610100898b03121561337557600080fd5b883567ffffffffffffffff81111561338c57600080fd5b6133988b828c01613061565b985050602089013567ffffffffffffffff8111156133b557600080fd5b6133c18b828c01613061565b97505060406133d28b828c0161311f565b96505060606133e38b828c0161311f565b95505060806133f48b828c0161311f565b94505060a06134058b828c016130fe565b93505060c06134168b828c01613035565b92505060e06134278b828c01613114565b9150509295985092959890939650565b60008060008060008060008060006101208a8c03121561345657600080fd5b893567ffffffffffffffff81111561346d57600080fd5b6134798c828d01613061565b99505060208a013567ffffffffffffffff81111561349657600080fd5b6134a28c828d01613061565b98505060406134b38c828d0161311f565b97505060606134c48c828d0161311f565b96505060806134d58c828d0161311f565b95505060a06134e68c828d016130fe565b94505060c06134f78c828d01613035565b93505060e06135088c828d01613114565b9250506101008a013567ffffffffffffffff81111561352657600080fd5b6135328c828d01613061565b9150509295985092959850929598565b60006020828403121561355457600080fd5b60006122678484613109565b600061134b838361365f565b60006135788383613b12565b505060200190565b61358981613ed8565b82525050565b600061359a82613ecb565b6135a48185613ecf565b9350836020820285016135b685613ec5565b8060005b858110156135f057848403895281516135d38582613560565b94506135de83613ec5565b60209a909a01999250506001016135ba565b5091979650505050505050565b600061360882613ecb565b6136128185613ecf565b935061361d83613ec5565b8060005b8381101561364b578151613635888261356c565b975061364083613ec5565b925050600101613621565b509495945050505050565b61358981613ee3565b600061366a82613ecb565b6136748185613ecf565b9350613684818560208601613f33565b61368d81613f5f565b9093019392505050565b61358981613f1c565b60006136ac83856106d7565b93506136b9838584613f27565b50500190565b60006136ca82613ecb565b6136d481856106d7565b93506136e4818560208601613f33565b9290920192915050565b60006136fb601483613ecf565b734d494e545f544f5f5a45524f5f4144445245535360601b815260200192915050565b600061372b601a83613ecf565b7f5345434f4e444152595f54524144494e475f44495341424c4544000000000000815260200192915050565b6000613764602a83613ecf565b7f5452414e534645525f544f5f4e4f4e5f45524337323152454345495645525f4981526926a82622a6a2a72a22a960b11b602082015260400192915050565b60006137b0601883613ecf565b7f5452414e534645525f544f5f5a45524f5f414444524553530000000000000000815260200192915050565b60006137e9601983613ecf565b7f43414e4e4f545f51554552595f5a45524f5f4144445245535300000000000000815260200192915050565b6000613822601183613ecf565b702aa720aaaa2427a924ad22a22fa12aa92760791b815260200192915050565b600061384f601583613ecf565b741054141493d5905317d254d7d49151155391105395605a1b815260200192915050565b6000613880600f83613ecf565b6e15d2551211149055d7d19052531151608a1b815260200192915050565b60006138ab602383613ecf565b7f434f4e54454e545f49445f4e4f545f524547495354455245445f544f5f43414c8152622622a960e91b602082015260400192915050565b60006138f0601a83613ecf565b7f43414c4c45525f43414e4e4f545f415050524f56455f53454c46000000000000815260200192915050565b6000613929601583613ecf565b741253959053125117d19151115490551253d397d251605a1b815260200192915050565b600061395a601383613ecf565b7227a7262cafa1a7a72a2920a1aa2fa7aba722a960691b815260200192915050565b6000613989602183613ecf565b7f53544152545f54494d455f41465445525f41554354494f4e5f454e445f54494d8152604560f81b602082015260400192915050565b60006139cc601983613ecf565b7f53544152545f54494d455f41465445525f454e445f54494d4500000000000000815260200192915050565b600061119b6000836106d7565b6000613a12601183613ecf565b701253959053125117d512535157d4d313d5607a1b815260200192915050565b6000613a3f601283613ecf565b712727a72fa2ac24a9aa22a72a2faa27a5a2a760711b815260200192915050565b6000613a6d602583613ecf565b7f43414c4c45525f4e4f545f415554484f52495a45445f464f525f4d494e5445528152645f524f4c4560d81b602082015260400192915050565b6000613ab4601583613ecf565b742aa720aaaa2427a924ad22a22faa2920a729a322a960591b815260200192915050565b6000613ae5601583613ecf565b7410d05313115497d393d517d055551213d492569151605a1b815260200192915050565b61358981613ef5565b61358981610770565b61358981613f08565b61358981613f11565b60006122678284866136a0565b600061134b82846136bf565b600061119b826139f8565b6020810161119b8284613580565b6101408101613b6e828d613580565b613b7b602083018c613580565b8181036040830152613b8d818b61365f565b90508181036060830152613ba1818a61365f565b9050613bb06080830189613b24565b613bbd60a0830188613b24565b613bca60c0830187613b24565b613bd760e0830186613b09565b613be5610100830185613656565b613bf3610120830184613b1b565b9b9a5050505050505050505050565b60808101613c108287613580565b613c1d6020830186613580565b613c2a6040830185613b12565b8181036060830152613c3c818461365f565b9695505050505050565b6020808252810161134b818461358f565b6020808252810161134b81846135fd565b6020810161119b8284613656565b6020810161119b8284613697565b6020808252810161134b818461365f565b6020808252810161119b816136ee565b6020808252810161119b8161371e565b6020808252810161119b81613757565b6020808252810161119b816137a3565b6020808252810161119b816137dc565b6020808252810161119b81613815565b6020808252810161119b81613842565b6020808252810161119b81613873565b6020808252810161119b8161389e565b6020808252810161119b816138e3565b6020808252810161119b8161391c565b6020808252810161119b8161394d565b6020808252810161119b8161397c565b6020808252810161119b816139bf565b6020808252810161119b81613a05565b6020808252810161119b81613a32565b6020808252810161119b81613a60565b6020808252810161119b81613aa7565b6020808252810161119b81613ad8565b6020810161119b8284613b12565b6020810161119b8284613b1b565b60408101613def8285613b1b565b61134b6020830184613580565b60c08101613e0a8289613b1b565b613e176020830188613580565b613e246040830187613580565b613e316060830186613b12565b613e3e6080830185613580565b613e4b60a0830184613580565b979650505050505050565b60408101613e648285613b1b565b8181036020830152612267818461365f565b60405181810167ffffffffffffffff81118282101715613e9557600080fd5b604052919050565b600067ffffffffffffffff821115613eb457600080fd5b506020601f91909101601f19160190565b60200190565b5190565b90815260200190565b600061119b82613efc565b151590565b6001600160e01b03191690565b61ffff1690565b6001600160a01b031690565b63ffffffff1690565b65ffffffffffff1690565b600061119b82613ed8565b82818337506000910152565b60005b83811015613f4e578181015183820152602001613f36565b838111156110365750506000910152565b601f01601f191690565b613f7281613ed8565b8114611c4257600080fd5b613f7281613ee3565b613f7281613ee8565b613f7281613ef5565b613f7281610770565b613f7281613f08565b613f7281613f1156fea365627a7a72315820cc16874d5e16d1eaeec31cb059b3292afaff9b5a13d15dde38e03ba547ea00276c6578706572696d656e74616cf564736f6c634300050b0040
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007668a7d18439fb9779db55c8686ccd7bcf205d1200000000000000000000000000000000000000000000000000000000000000184d6963726f73706f6e736f72732054696d6520536c6f7473000000000000000000000000000000000000000000000000000000000000000000000000000000044d53505400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Microsponsors Time Slots
Arg [1] : symbol (string): MSPT
Arg [2] : registryAddress (address): 0x7668a7D18439Fb9779DB55c8686Ccd7BCf205d12
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000007668a7d18439fb9779db55c8686ccd7bcf205d12
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [4] : 4d6963726f73706f6e736f72732054696d6520536c6f74730000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4d53505400000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
57095:1288:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14226:135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14226:135:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;58089:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;58089:85:0;;;:::i;:::-;;;;;;;;44006:219;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;44006:219:0;;;;;;;;:::i;:::-;;;;;;;;43216:497;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;43216:497:0;;;;;;;;:::i;:::-;;16451:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16451:40:0;;;:::i;:::-;;;;;;;;17348:54;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17348:54:0;;;;;;;;:::i;:::-;;;;;;;;40498:102;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40498:102:0;;;:::i;45809:857::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;45809:857:0;;;;;;;;:::i;29541:1139::-;;;;;;;;;:::i;39352:1003::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;39352:1003:0;;;;;;;;:::i;:::-;;;;;;;;27126:1052;;;;;;;;;:::i;24123:80::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24123:80:0;;;:::i;47328:138::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;47328:138:0;;;;;;;;:::i;53867:570::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;53867:570:0;;;;;;;;:::i;16220:21::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16220:21:0;;;:::i;16334:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16334:26:0;;;:::i;24271:312::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24271:312:0;;;:::i;41292:158::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;41292:158:0;;;;;;;;:::i;40816:250::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;40816:250:0;;;;;;;;:::i;16192:21::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16192:21:0;;;:::i;38515:417::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;38515:417:0;;;;;;;;:::i;:::-;;;;;;;;16673:32;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16673:32:0;;;:::i;:::-;;;;;;;;23398:112;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;23398:112:0;;;;;;;;:::i;23962:80::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23962:80:0;;;:::i;41877:863::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;41877:863:0;;;;;;;;:::i;58289:89::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;58289:89:0;;;:::i;44526:296::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;44526:296:0;;;;;;;;:::i;38046:341::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;38046:341:0;;;;;;;;:::i;48202:890::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;48202:890:0;;;;;;;;:::i;25900:1131::-;;;;;;;;;:::i;23151:149::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;23151:149:0;;;;;;;;:::i;33513:219::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;33513:219:0;;;;;;;;:::i;22816:176::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22816:176:0;;;;;;;;:::i;36631:984::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;36631:984:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;22630:176;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22630:176:0;;;;;;;;:::i;45169:193::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;45169:193:0;;;;;;;;:::i;24709:1044::-;;;;;;;;;:::i;28346:1086::-;;;;;;;;;:::i;14226:135::-;-1:-1:-1;;;;;;14320:33:0;;14296:4;14320:33;;;;;;;;;;;;;14226:135;;;;:::o;58089:85::-;58161:5;58154:12;;;;;;;;-1:-1:-1;;58154:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58128:13;;58154:12;;58161:5;;58154:12;;58161:5;58154:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58089:85;;:::o;44006:219::-;44065:7;44109:16;44117:7;44109;:16::i;:::-;44087:84;;;;-1:-1:-1;;;44087:84:0;;;;;;;;;;;;;;;;;-1:-1:-1;44191:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44191:24:0;;44006:219::o;43216:497::-;23709:6;;-1:-1:-1;;;23709:6:0;;;;23708:7;23700:16;;;;;;43319:18;43340:16;43348:7;43340;:16::i;:::-;43319:37;;43397:10;-1:-1:-1;;;;;43391:16:0;:2;-1:-1:-1;;;;;43391:16:0;;;43369:87;;;;-1:-1:-1;;;43369:87:0;;;;;;;;;43507:10;-1:-1:-1;;;;;43491:26:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;43491:26:0;;:72;;;;43521:42;43538:10;43550:12;:10;:12::i;43521:42::-;43469:143;;;;-1:-1:-1;;;43469:143:0;;;;;;;;;43625:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43625:29:0;-1:-1:-1;;;;;43625:29:0;;;;;;;;;43670:33;;43625:24;;43670:33;;;;;;;23727:1;43216:497;;:::o;16451:40::-;;;;:::o;17348:54::-;;;;;;;;;;;;;;;:::o;40498:102::-;40542:7;40571:19;:9;:17;:19::i;:::-;40564:26;;40498:102;:::o;45809:857::-;23709:6;;-1:-1:-1;;;23709:6:0;;;;23708:7;23700:16;;;;;;45953:41;45972:12;:10;:12::i;:::-;45986:7;45953:18;:41::i;:::-;45931:112;;;;-1:-1:-1;;;45931:112:0;;;;;;;;;46056:14;46073:25;;;:16;:25;;;;;:32;-1:-1:-1;;;;;46073:32:0;;46132:16;46090:7;46132;:16::i;:::-;46159:19;46181:28;;;:19;:28;;;;;;;;;46226:16;:25;;;;;;:51;;;46116:32;;-1:-1:-1;46181:28:0;;;-1:-1:-1;;;46226:51:0;;;;46222:225;;46329:35;46346:4;46352:2;46356:7;46329:16;:35::i;:::-;:44;46303:132;;;;-1:-1:-1;;;46303:132:0;;;;;;;;;46481:8;;;:81;;-1:-1:-1;;;46481:81:0;;-1:-1:-1;;;;;46481:8:0;;;;:33;;:81;;46515:12;;46529:4;;46535:2;;46539:7;;46548:6;;46556:5;;46481:81;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46481:81:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46481:81:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;46481:81:0;;;;;;;;;46459:152;;;;-1:-1:-1;;;46459:152:0;;;;;;;;;46624:32;46638:4;46644:2;46648:7;46624:13;:32::i;:::-;23727:1;;;45809:857;;;:::o;29541:1139::-;23709:6;;29937:7;;-1:-1:-1;;;23709:6:0;;;;23708:7;23700:16;;;;;;29985:7;;29972:9;:20;;29964:29;;;;;;30029:1;30014:12;:16;;;30006:50;;;;-1:-1:-1;;;30006:50:0;;;;;;;;;30091:8;;-1:-1:-1;;;;;30091:8:0;:17;30109:12;30123;:10;:12::i;:::-;30091:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30091:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30091:45:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;30091:45:0;;;;;;;;;30069:132;;;;-1:-1:-1;;;30069:132:0;;;;;;;;;30236:77;30253:9;30264;30275:7;30284:14;30300:12;30236:16;:77::i;:::-;30214:144;;;;-1:-1:-1;;;30214:144:0;;;;;;;;;30371:15;30389:23;30399:12;:10;:12::i;:::-;30389:9;:23::i;:::-;30371:41;;30423:124;30441:7;30450:9;30461:12;30475:9;30486:7;30495:14;30511:8;30521:25;30423:17;:124::i;:::-;30558:31;30571:7;30580:8;30558:12;:31::i;:::-;30600:28;;;;:19;:28;;;;;:43;;;;;-1:-1:-1;;30600:43:0;;;;;;30620:7;-1:-1:-1;29541:1139:0;;;;;;;;;;;:::o;39352:1003::-;39415:16;-1:-1:-1;;;;;39468:20:0;;39446:95;;;;-1:-1:-1;;;39446:95:0;;;;;;;;;-1:-1:-1;;;;;39575:26:0;;39554:18;39575:26;;;:18;:26;;;;;:36;;:34;:36::i;:::-;39554:57;-1:-1:-1;39626:15:0;39622:724;;39703:16;;;39717:1;39703:16;;;;;;;;;;;;39696:23;;;;;39622:724;39752:23;39792:10;39778:25;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;39778:25:0;;39752:51;;39818:19;39840:13;:11;:13::i;:::-;39818:35;-1:-1:-1;39868:19:0;40077:1;40062:243;40091:11;40080:7;:22;40062:243;;40138:25;;;;:16;:25;;;;;:32;-1:-1:-1;;;;;40138:42:0;;;:32;;:42;40134:156;;;40227:7;40205:6;40212:11;40205:19;;;;;;;;;;;;;;;;;:29;40257:13;;;;;40134:156;40104:9;;40062:243;;;40328:6;40321:13;;;;;;;;;27126:1052;23709:6;;27477:7;;-1:-1:-1;;;23709:6:0;;;;23708:7;23700:16;;;;;;27525:7;;27512:9;:20;;27504:29;;;;;;27569:1;27554:12;:16;;;27546:50;;;;-1:-1:-1;;;27546:50:0;;;;;;;;;27631:8;;-1:-1:-1;;;;;27631:8:0;:17;27649:12;27663;:10;:12::i;:::-;27631:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27631:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27631:45:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;27631:45:0;;;;;;;;;27609:132;;;;-1:-1:-1;;;27609:132:0;;;;;;;;;27776:77;27793:9;27804;27815:7;27824:14;27840:12;27776:16;:77::i;:::-;27754:144;;;;-1:-1:-1;;;27754:144:0;;;;;;;;;27911:15;27929:23;27939:12;:10;:12::i;27929:23::-;27911:41;;27963:124;27981:7;27990:9;28001:12;28015:9;28026:7;28035:14;28051:8;28061:25;27963:17;:124::i;:::-;28098:28;;;;:19;:28;;;;;:43;;;;;-1:-1:-1;;28098:43:0;;;;;;28118:7;-1:-1:-1;27126:1052:0;;;;;;;;;;:::o;24123:80::-;22373:6;;-1:-1:-1;;;;;22373:6:0;22357:12;:10;:12::i;:::-;-1:-1:-1;;;;;22357:22:0;;22356:52;;;-1:-1:-1;22401:6:0;;-1:-1:-1;;;;;22401:6:0;22385:12;:10;:12::i;:::-;-1:-1:-1;;;;;22385:22:0;;22356:52;22334:121;;;;-1:-1:-1;;;22334:121:0;;;;;;;;;23856:6;;-1:-1:-1;;;23856:6:0;;;;23848:15;;;;;;24181:6;:14;;-1:-1:-1;;;;24181:14:0;;;24123:80::o;47328:138::-;47417:39;47434:4;47440:2;47444:7;47417:39;;;;;;;;;;;;:16;:39::i;:::-;47328:138;;;:::o;53867:570::-;23709:6;;-1:-1:-1;;;23709:6:0;;;;23708:7;23700:16;;;;;;53932:14;53949:25;;;:16;:25;;;;;:32;-1:-1:-1;;;;;53949:32:0;;54013:16;53966:7;54013;:16::i;:::-;54040:19;54062:28;;;:19;:28;;;;;;53992:37;;-1:-1:-1;54062:28:0;;-1:-1:-1;;;;;54107:20:0;;;;;;;54103:177;;;54170:8;;-1:-1:-1;;;;;54170:8:0;:17;54188:12;54202;:10;:12::i;:::-;54170:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54170:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;54170:45:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;54170:45:0;;;;;;;;;54144:124;;;;-1:-1:-1;;;54144:124:0;;;;;;;;;54314:41;54333:12;:10;:12::i;:::-;54347:7;54314:18;:41::i;:::-;54292:108;;;;-1:-1:-1;;;54292:108:0;;;;;;;;;54413:14;54419:7;54413:5;:14::i;:::-;23727:1;;;53867:570;:::o;16220:21::-;;;-1:-1:-1;;;;;16220:21:0;;:::o;16334:26::-;;;-1:-1:-1;;;16334:26:0;;;;;:::o;24271:312::-;22373:6;;-1:-1:-1;;;;;22373:6:0;22357:12;:10;:12::i;:::-;-1:-1:-1;;;;;22357:22:0;;22356:52;;;-1:-1:-1;22401:6:0;;-1:-1:-1;;;;;22401:6:0;22385:12;:10;:12::i;:::-;-1:-1:-1;;;;;22385:22:0;;22356:52;22334:121;;;;-1:-1:-1;;;22334:121:0;;;;;;;;;24493:34;;24450:4;24442:21;;24427:12;;24493:10;;24442:21;;24493:34;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;24474:53:0;;;24546:7;24538:35;;;;-1:-1:-1;;;24538:35:0;;;;;;;;;22466:1;;24271:312::o;41292:158::-;41347:7;41390:20;;;:11;:20;;;;;;-1:-1:-1;;;;;41390:20:0;;41292:158::o;40816:250::-;40876:7;-1:-1:-1;;;;;40920:24:0;;40898:99;;;;-1:-1:-1;;;40898:99:0;;;;;;;;;-1:-1:-1;;;;;41017:29:0;;;;;;:17;:29;;;;;:39;;:37;:39::i;:::-;41010:46;40816:250;-1:-1:-1;;40816:250:0:o;16192:21::-;;;-1:-1:-1;;;;;16192:21:0;;:::o;38515:417::-;-1:-1:-1;;;;;38702:35:0;;;;;;:27;:35;;;;;;;:46;;38640:15;;;;38702:46;;38738:9;;;;38702:46;;;;;;;;;;;;;;;38670:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38670:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38759:17;38792:1;:8;38779:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38759:42:0;-1:-1:-1;38819:6:0;38814:88;38835:1;:8;38831:1;:12;38814:88;;;38873:1;38875;38873:4;;;;;;;;;;;;;;:17;;;38865:1;38867;38865:4;;;;;;;;;;;;;;;;;:25;38845:3;;38814:88;;;-1:-1:-1;38921:1:0;-1:-1:-1;;38515:417:0;;;;;;:::o;16673:32::-;;;-1:-1:-1;;;;;16673:32:0;;:::o;23398:112::-;22373:6;;-1:-1:-1;;;;;22373:6:0;22357:12;:10;:12::i;:::-;-1:-1:-1;;;;;22357:22:0;;22356:52;;;-1:-1:-1;22401:6:0;;-1:-1:-1;;;;;22401:6:0;22385:12;:10;:12::i;:::-;-1:-1:-1;;;;;22385:22:0;;22356:52;22334:121;;;;-1:-1:-1;;;22334:121:0;;;;;;;;;23487:7;:13;23398:112::o;23962:80::-;22373:6;;-1:-1:-1;;;;;22373:6:0;22357:12;:10;:12::i;:::-;-1:-1:-1;;;;;22357:22:0;;22356:52;;;-1:-1:-1;22401:6:0;;-1:-1:-1;;;;;22401:6:0;22385:12;:10;:12::i;:::-;-1:-1:-1;;;;;22385:22:0;;22356:52;22334:121;;;;-1:-1:-1;;;22334:121:0;;;;;;;;;23709:6;;-1:-1:-1;;;23709:6:0;;;;23708:7;23700:16;;;;;;24021:6;:13;;-1:-1:-1;;;;24021:13:0;-1:-1:-1;;;24021:13:0;;;23962:80::o;41877:863::-;41942:16;41971:18;41992:21;42002:10;41992:9;:21::i;:::-;41971:42;-1:-1:-1;42028:15:0;42024:709;;42105:16;;;42119:1;42105:16;;;;;;;;;;;;42024:709;42154:23;42194:10;42180:25;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;42180:25:0;;42154:51;;42220:19;42242:13;:11;:13::i;:::-;42220:35;-1:-1:-1;42270:19:0;42472:1;42457:235;42486:11;42475:7;:22;42457:235;;42533:20;;;;:11;:20;;;;;;-1:-1:-1;;;;;42533:34:0;;;:20;;:34;42529:148;;;42614:7;42592:6;42599:11;42592:19;;;;;;;;;;;;;;;;;:29;42644:13;;;;;42529:148;42499:9;;42457:235;;58289:89;58363:7;58356:14;;;;;;;;-1:-1:-1;;58356:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58330:13;;58356:14;;58363:7;;58356:14;;58363:7;58356:14;;;;;;;;;;;;;;;;;;;;;;;;44526:296;23709:6;;-1:-1:-1;;;23709:6:0;;;;23708:7;23700:16;;;;;;44651:12;:10;:12::i;:::-;-1:-1:-1;;;;;44645:18:0;:2;-1:-1:-1;;;;;44645:18:0;;;44637:57;;;;-1:-1:-1;;;44637:57:0;;;;;;;;;44746:8;44707:18;:32;44726:12;:10;:12::i;:::-;-1:-1:-1;;;;;44707:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;44707:32:0;;;:36;;;;;;;;;;;;:47;;-1:-1:-1;;44707:47:0;;;;;;;;;;;44785:12;:10;:12::i;:::-;-1:-1:-1;;;;;44770:42:0;;44803:8;44770:42;;;;;;;;;;;;;;;44526:296;;:::o;38046:341::-;-1:-1:-1;;;;;38175:32:0;;;;;;:24;:32;;;;;;;;38146:61;;;;;;;;;;;;;;;;;38116:15;;;;38146:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38146:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38218:17;38251:1;:8;38238:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38218:42:0;-1:-1:-1;38278:6:0;38273:84;38294:1;:8;38290:1;:12;38273:84;;;38331:1;38333;38331:4;;;;;;;;;;;;;;:14;;;38324:1;38326;38324:4;;;;;;;;;;;;;;;;;:21;38304:3;;38273:84;;;-1:-1:-1;38376:1:0;38046:341;-1:-1:-1;;;38046:341:0:o;48202:890::-;23709:6;;-1:-1:-1;;;23709:6:0;;;;23708:7;23700:16;;;;;;48369:41;48388:12;:10;:12::i;:::-;48402:7;48369:18;:41::i;:::-;48347:112;;;;-1:-1:-1;;;48347:112:0;;;;;;;;;48472:14;48489:25;;;:16;:25;;;;;:32;-1:-1:-1;;;;;48489:32:0;;48548:16;48506:7;48548;:16::i;:::-;48575:19;48597:28;;;:19;:28;;;;;;;;;48642:16;:25;;;;;;:51;;;48532:32;;-1:-1:-1;48597:28:0;;;-1:-1:-1;;;48642:51:0;;;;48638:225;;48745:35;48762:4;48768:2;48772:7;48745:16;:35::i;:::-;:44;48719:132;;;;-1:-1:-1;;;48719:132:0;;;;;;;;;48897:8;;;:81;;-1:-1:-1;;;48897:81:0;;-1:-1:-1;;;;;48897:8:0;;;;:33;;:81;;48931:12;;48945:4;;48951:2;;48955:7;;48964:6;;48972:5;;48897:81;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48897:81:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48897:81:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;48897:81:0;;;;;;;;;48875:152;;;;-1:-1:-1;;;48875:152:0;;;;;;;;;49040:42;49058:4;49064:2;49068:7;49077:4;49040:17;:42::i;:::-;23727:1;;;48202:890;;;;:::o;25900:1131::-;23709:6;;26292:7;;-1:-1:-1;;;23709:6:0;;;;23708:7;23700:16;;;;;;26340:7;;26327:9;:20;;26319:29;;;;;;26384:1;26369:12;:16;;;26361:50;;;;-1:-1:-1;;;26361:50:0;;;;;;;;;26446:8;;-1:-1:-1;;;;;26446:8:0;:17;26464:12;26478;:10;:12::i;:::-;26446:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26446:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26446:45:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;26446:45:0;;;;;;;;;26424:132;;;;-1:-1:-1;;;26424:132:0;;;;;;;;;26591:77;26608:9;26619;26630:7;26639:14;26655:12;26591:16;:77::i;:::-;26569:144;;;;-1:-1:-1;;;26569:144:0;;;;;;;;;26726:15;26744:19;26750:12;:10;:12::i;:::-;26744:5;:19::i;23151:149::-;22373:6;;-1:-1:-1;;;;;22373:6:0;22357:12;:10;:12::i;:::-;-1:-1:-1;;;;;22357:22:0;;22356:52;;;-1:-1:-1;22401:6:0;;-1:-1:-1;;;;;22401:6:0;22385:12;:10;:12::i;:::-;-1:-1:-1;;;;;22385:22:0;;22356:52;22334:121;;;;-1:-1:-1;;;22334:121:0;;;;;;;;;23253:8;:39;;-1:-1:-1;;;;;;23253:39:0;-1:-1:-1;;;;;23253:39:0;;;;;;;;;;23151:149::o;33513:219::-;33571:13;33621:16;33629:7;33621;:16::i;:::-;33599:84;;;;-1:-1:-1;;;33599:84:0;;;;;;;;;33703:19;;;;:10;:19;;;;;;;;;33696:26;;;;;;-1:-1:-1;;33696:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33703:19;;33696:26;;33703:19;33696:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33513:219;;;:::o;22816:176::-;22373:6;;-1:-1:-1;;;;;22373:6:0;22357:12;:10;:12::i;:::-;-1:-1:-1;;;;;22357:22:0;;22356:52;;;-1:-1:-1;22401:6:0;;-1:-1:-1;;;;;22401:6:0;22385:12;:10;:12::i;:::-;-1:-1:-1;;;;;22385:22:0;;22356:52;22334:121;;;;-1:-1:-1;;;22334:121:0;;;;;;;;;-1:-1:-1;;;;;22917:22:0;;;22913:72;;22956:6;:17;;-1:-1:-1;;;;;;22956:17:0;-1:-1:-1;;;;;22956:17:0;;;;;22913:72;22816:176;:::o;36631:984::-;36702:14;36727:13;36751:23;36785:26;36822:16;36849:14;36874:21;36906:15;36932:30;36973:19;37035:16;37043:7;37035;:16::i;:::-;37013:84;;;;-1:-1:-1;;;37013:84:0;;;;;;;;;37110:25;;:::i;:::-;37138;;;;:16;:25;;;;;;;;;37110:53;;;;;;;;;;-1:-1:-1;;;;;37110:53:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37110:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;37138:25;;37110:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;37110:53:0;;;-1:-1:-1;;37110:53:0;;;;;;;;;;;;;;;;-1:-1:-1;;37110:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;37110:53:0;;;-1:-1:-1;;37110:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;37110:53:0;;;;;;;;;-1:-1:-1;;;37110:53:0;;;;;;;;-1:-1:-1;;;37110:53:0;;;;;;;;;;;;;;;-1:-1:-1;37197:28:0;;;:19;:28;;;;;37260:16;;;;-1:-1:-1;37197:28:0;;;37291:16;37197:28;37291:7;:16::i;:::-;37322:9;:19;;;37356:9;:22;;;37393:9;:19;;;37427:9;:17;;;37459:9;:24;;;37498:9;:18;;;37531:9;:35;;;37581:13;37238:367;;;;;;;;;;;;;;;;;;;;;;;;;;;;36631:984;;;;;;;;;;;:::o;22630:176::-;22373:6;;-1:-1:-1;;;;;22373:6:0;22357:12;:10;:12::i;:::-;-1:-1:-1;;;;;22357:22:0;;22356:52;;;-1:-1:-1;22401:6:0;;-1:-1:-1;;;;;22401:6:0;22385:12;:10;:12::i;:::-;-1:-1:-1;;;;;22385:22:0;;22356:52;22334:121;;;;-1:-1:-1;;;22334:121:0;;;;;;;;;-1:-1:-1;;;;;22731:22:0;;;22727:72;;22770:6;:17;;-1:-1:-1;;;;;22770:17:0;;-1:-1:-1;;;;;;22770:17:0;;;;;;22630:176;:::o;45169:193::-;-1:-1:-1;;;;;45312:30:0;;;45281:4;45312:30;;;:18;:30;;;;;;;;:40;;;;;;;;;;;;;;;45169:193::o;24709:1044::-;23709:6;;25056:7;;-1:-1:-1;;;23709:6:0;;;;23708:7;23700:16;;;;;;25104:7;;25091:9;:20;;25083:29;;;;;;25148:1;25133:12;:16;;;25125:50;;;;-1:-1:-1;;;25125:50:0;;;;;;;;;25210:8;;-1:-1:-1;;;;;25210:8:0;:17;25228:12;25242;:10;:12::i;:::-;25210:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25210:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25210:45:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;25210:45:0;;;;;;;;;25188:132;;;;-1:-1:-1;;;25188:132:0;;;;;;;;;25355:77;25372:9;25383;25394:7;25403:14;25419:12;25355:16;:77::i;:::-;25333:144;;;;-1:-1:-1;;;25333:144:0;;;;;;;;;25490:15;25508:19;25514:12;:10;:12::i;28346:1086::-;23709:6;;28725:7;;-1:-1:-1;;;23709:6:0;;;;23708:7;23700:16;;;;;;28773:7;;28760:9;:20;;28752:29;;;;;;28817:1;28802:12;:16;;;28794:50;;;;-1:-1:-1;;;28794:50:0;;;;;;;;;28879:8;;-1:-1:-1;;;;;28879:8:0;:17;28897:12;28911;:10;:12::i;:::-;28879:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28879:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28879:45:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;28879:45:0;;;;;;;;;28857:132;;;;-1:-1:-1;;;28857:132:0;;;;;;;;;29024:77;29041:9;29052;29063:7;29072:14;29088:12;29024:16;:77::i;:::-;29002:144;;;;-1:-1:-1;;;29002:144:0;;;;;;;;;29159:15;29177:29;29187:12;:10;:12::i;:::-;29201:4;29177:9;:29::i;:::-;29159:47;;29217:124;29235:7;29244:9;29255:12;29269:9;29280:7;29289:14;29305:8;29315:25;29217:17;:124::i;50331:171::-;50388:4;50428:20;;;:11;:20;;;;;;-1:-1:-1;;;;;50428:20:0;50468:24;;;50331:171::o;21768:94::-;21842:10;21768:94;:::o;12932:114::-;13024:14;;12932:114::o;50872:399::-;50984:4;51030:16;51038:7;51030;:16::i;:::-;51008:84;;;;-1:-1:-1;;;51008:84:0;;;;;;;;;51105:18;51126:16;51134:7;51126;:16::i;:::-;51105:37;;51174:10;-1:-1:-1;;;;;51163:21:0;:7;-1:-1:-1;;;;;51163:21:0;;:56;;;;51212:7;-1:-1:-1;;;;;51188:31:0;:20;51200:7;51188:11;:20::i;:::-;-1:-1:-1;;;;;51188:31:0;;51163:56;:97;;;;51223:37;51240:10;51252:7;51223:16;:37::i;:::-;51155:106;50872:399;-1:-1:-1;;;;50872:399:0:o;55891:368::-;56045:4;56086:25;;;:16;:25;;;;;:32;-1:-1:-1;;;;;56086:32:0;;;;56135:14;;;;;:30;;;56159:6;-1:-1:-1;;;;;56153:12:0;:2;-1:-1:-1;;;;;56153:12:0;;56135:30;56131:119;;;56189:5;56182:12;;;;;56131:119;56234:4;56227:11;;;;;51661:507;51791:4;-1:-1:-1;;;;;51771:24:0;:16;51779:7;51771;:16::i;:::-;-1:-1:-1;;;;;51771:24:0;;51749:95;;;;-1:-1:-1;;;51749:95:0;;;;;;;;;-1:-1:-1;;;;;51879:16:0;;51857:90;;;;-1:-1:-1;;;51857:90:0;;;;;;;;;51960:23;51975:7;51960:14;:23::i;:::-;-1:-1:-1;;;;;51996:23:0;;;;;;:17;:23;;;;;:35;;:33;:35::i;:::-;-1:-1:-1;;;;;52042:21:0;;;;;;:17;:21;;;;;:33;;:31;:33::i;:::-;52088:20;;;;:11;:20;;;;;;:25;;-1:-1:-1;;;;;;52088:25:0;-1:-1:-1;;;;;52088:25:0;;;;;;;;;52131:27;;52088:20;;52131:27;;;;;;;51661:507;;;:::o;33796:634::-;34041:8;;;:63;;-1:-1:-1;;;34041:63:0;;34000:4;;-1:-1:-1;;;;;34041:8:0;;;;:38;;:63;;34080:12;;34094:9;;34041:63;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34041:63:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34041:63:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;34041:63:0;;;;;;;;;34019:148;;;;-1:-1:-1;;;34019:148:0;;;;;;;;;34214:14;34202:26;;:9;:26;;;34180:109;;;;-1:-1:-1;;;34180:109:0;;;;;;;;;34334:9;34324:19;;:7;:19;;;34302:94;;;;-1:-1:-1;;;34302:94:0;;;;;;;;;-1:-1:-1;34416:4:0;33796:634;;;;;;;:::o;31185:141::-;31234:7;31256:15;31274:17;31284:2;31274:17;;;;;;;;;;;;:9;:17::i;35375:1246::-;35701:16;35709:7;35701;:16::i;:::-;35679:84;;;;-1:-1:-1;;;35679:84:0;;;;;;;;;35776:25;;:::i;:::-;35804:408;;;;;;;;35844:12;:10;:12::i;:::-;-1:-1:-1;;;;;35804:408:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36225:25:0;;;:16;:25;;;;;;:37;;;;-1:-1:-1;;;;;;36225:37:0;;;;;;;;;;;;;;;;;-1:-1:-1;36225:37:0;;:25;;:37;;-1:-1:-1;36225:37:0;;;;;;;;:::i;:::-;-1:-1:-1;36225:37:0;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;36225:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36225:37:0;;;;;;;;-1:-1:-1;;36225:37:0;;;;;;;;;;;;;-1:-1:-1;;;;36225:37:0;-1:-1:-1;;;36225:37:0;;;;;;;;;;;;-1:-1:-1;;;;36225:37:0;-1:-1:-1;;;36225:37:0;;;;;;;;;;;;-1:-1:-1;;;;36225:37:0;-1:-1:-1;;;36225:37:0;;;;;;;;;;36280;36307:9;36280:26;:37::i;:::-;36275:144;;36334:24;:38;36359:12;:10;:12::i;:::-;-1:-1:-1;;;;;36334:38:0;;;;;;;;;;;;;;;-1:-1:-1;36334:38:0;;;36379:26;;;;;;;;;;;27:10:-1;;39:1;23:18;;45:23;;;36334:73:0;;;;;;;;;;;23:18:-1;;36334:73:0;;;;;;;;;;;;;;;:::i;:::-;;;;;36275:144;36436:54;36466:9;36477:12;36436:29;:54::i;:::-;36431:181;;36507:27;:41;36535:12;:10;:12::i;:::-;-1:-1:-1;;;;;36507:41:0;-1:-1:-1;;;;;36507:41:0;;;;;;;;;;;;36549:9;36507:52;;;;;;;;;;;;;;;;;;;;;;;;36566:32;;;;;;;;;27:10:-1;;39:1;23:18;;45:23;;;-1:-1;36507:93:0;;;;;;;;;;;23:18:-1;;36507:52:0;:93;;;;;;;;;;;;;:::i;:::-;;;;;36431:181;35375:1246;;;;;;;;;:::o;33102:212::-;33204:16;33212:7;33204;:16::i;:::-;33182:84;;;;-1:-1:-1;;;33182:84:0;;;;;;;;;33279:19;;;;:10;:19;;;;;;;;:25;;;;;;;;:::i;55508:96::-;55562:32;55568:16;55576:7;55568;:16::i;:::-;55586:7;55562:5;:32::i;49810:319::-;49935:32;49949:4;49955:2;49959:7;49935:13;:32::i;:::-;50002:47;50025:4;50031:2;50035:7;50044:4;50002:22;:47::i;:::-;49980:139;;;;-1:-1:-1;;;49980:139:0;;;;;;;;32408:413;32453:7;-1:-1:-1;;;;;32483:16:0;;32475:49;;;;-1:-1:-1;;;32475:49:0;;;;;;;;;32537:21;:9;:19;:21::i;:::-;32569:15;32587:19;:9;:17;:19::i;:::-;32619:20;;;;:11;:20;;;;;;;;:25;;-1:-1:-1;;;;;;32619:25:0;-1:-1:-1;;;;;32619:25:0;;;;;;;;32655:21;;:17;:21;;;;;32619:20;;-1:-1:-1;32655:33:0;;:31;:33::i;:::-;-1:-1:-1;;;;;32699:22:0;;;;;;:18;:22;;;;;:34;;:32;:34::i;:::-;32751:33;;32776:7;;-1:-1:-1;;;;;32751:33:0;;;32768:1;;32751:33;;32768:1;;32751:33;32804:7;32408:413;-1:-1:-1;;32408:413:0:o;31903:312::-;31971:7;31993:15;32011:9;32017:2;32011:5;:9::i;:::-;31993:27;;32055:53;32086:1;32090:2;32094:7;32103:4;32055:22;:53::i;:::-;32033:145;;;;-1:-1:-1;;;32033:145:0;;;;;;;;53306:179;53408:1;53372:24;;;:15;:24;;;;;;-1:-1:-1;;;;;53372:24:0;:38;53368:108;;53462:1;53427:24;;;:15;:24;;;;;:37;;-1:-1:-1;;;;;;53427:37:0;;;53306:179::o;13153:110::-;13234:14;;:21;;13253:1;13234:21;:18;:21;:::i;:::-;13217:38;;13153:110::o;13054:91::-;13118:19;;13136:1;13118:19;;;13054:91::o;34440:426::-;34614:10;34541:4;34589:36;;;:24;:36;;;;;;;;34560:65;;;;;;;;;;;;;;;;;:26;;34541:4;;34560:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34560:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34560:65:0;;-1:-1:-1;34636:15:0;;-1:-1:-1;34636:15:0;;-1:-1:-1;;34670:159:0;34691:1;:8;34687:1;:12;34670:159;;;34725:39;34738:9;34749:1;34751;34749:4;;;;;;;;;;;;;;:14;;;34725:12;:39::i;:::-;34721:97;;;34798:4;34785:17;;34721:97;34701:3;;34670:159;;34876:489;35096:10;35017:4;35068:39;;;:27;:39;;;;;;:50;;35036:29;;35068:39;:50;;35108:9;;35068:50;;;;;;;;;;;;;;;35036:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;35036:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35036:82:0;;-1:-1:-1;35129:15:0;;-1:-1:-1;35129:15:0;;-1:-1:-1;;35163:165:0;35184:1;:8;35180:1;:12;35163:165;;;35218:45;35231:12;35245:1;35247;35245:4;;;;;;;35218:45;35214:103;;;35297:4;35284:17;;35214:103;35194:3;;35163:165;;;-1:-1:-1;35347:10:0;34876:489;-1:-1:-1;;;;34876:489:0:o;54721:599::-;54837:10;-1:-1:-1;;;;;54817:30:0;:16;54825:7;54817;:16::i;:::-;-1:-1:-1;;;;;54817:30:0;;54795:97;;;;-1:-1:-1;;;54795:97:0;;;;;;;;;54905:23;54920:7;54905:14;:23::i;:::-;-1:-1:-1;;;;;54941:29:0;;;;;;:17;:29;;;;;:41;;:39;:41::i;:::-;55024:1;54993:20;;;:11;:20;;;;;;;;:33;;-1:-1:-1;;;;;;54993:33:0;;;55087:10;:19;;;;;55081:33;;-1:-1:-1;;54993:33:0;55081;;;54993;55081;;;;;;:38;55077:97;;55143:19;;;;:10;:19;;;;;55136:26;;;:::i;:::-;55226:25;;;;:16;:25;;;;;55219:32;;-1:-1:-1;;;;;;55219:32:0;;;55226:25;55219:32;;;;55226:25;55219:32;:::i;:::-;;;;;;;:::i;:::-;-1:-1:-1;55219:32:0;;;;-1:-1:-1;;;;;;55219:32:0;;;55269:41;;55302:7;;55219:32;;-1:-1:-1;;;;;55269:41:0;;;;;55219:32;;55269:41;54721:599;;:::o;52769:369::-;52899:4;52928:15;:2;-1:-1:-1;;;;;52928:13:0;;:15::i;:::-;52923:60;;-1:-1:-1;52967:4:0;52960:11;;52923:60;52995:13;53027:2;-1:-1:-1;;;;;53011:36:0;;53048:12;:10;:12::i;:::-;53062:4;53068:7;53077:4;53011:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53011:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;53011:71:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;53011:71:0;;;;;;;;;-1:-1:-1;;;;;;53101:26:0;-1:-1:-1;;;53101:26:0;;-1:-1:-1;;52769:369:0;;;;;;:::o;5479:136::-;5537:7;5564:43;5568:1;5571;5564:43;;;;;;;;;;;;;;;;;:3;:43::i;55644:239::-;55775:4;55869:1;55851:21;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;55851:21:0;;;55841:32;;;;;;55833:1;55815:21;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;55815:21:0;;;55805:32;;;;;;:68;55797:78;;55644:239;;;;:::o;10564:810::-;10624:4;11283:20;;11126:66;11323:15;;;;;:42;;-1:-1:-1;11342:23:0;;;11315:51;-1:-1:-1;;10564:810:0:o;6065:192::-;6151:7;6187:12;6179:6;;;;6171:29;;;;-1:-1:-1;;;6171:29:0;;;;;;;;;;-1:-1:-1;;;6223:5:0;;;6065:192::o;57095:1288::-;;;;;;;;;-1:-1:-1;57095:1288:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57095:1288:0;;;-1:-1:-1;57095:1288:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:130:-1;72:20;;97:33;72:20;97:33;;142:124;206:20;;231:30;206:20;231:30;;273:128;348:13;;366:30;348:13;366:30;;408:128;474:20;;499:32;474:20;499:32;;543:132;620:13;;638:32;620:13;638:32;;683:440;;784:3;777:4;769:6;765:17;761:27;751:2;;802:1;799;792:12;751:2;839:6;826:20;861:64;876:48;917:6;876:48;;;861:64;;;852:73;;945:6;938:5;931:21;981:4;973:6;969:17;1014:4;1007:5;1003:16;1049:3;1040:6;1035:3;1031:16;1028:25;1025:2;;;1066:1;1063;1056:12;1025:2;1076:41;1110:6;1105:3;1100;1076:41;;;744:379;;;;;;;;1146:336;;;1261:3;1254:4;1246:6;1242:17;1238:27;1228:2;;1279:1;1276;1269:12;1228:2;-1:-1;1299:20;;1339:18;1328:30;;1325:2;;;1371:1;1368;1361:12;1325:2;1405:4;1397:6;1393:17;1381:29;;1455:3;1448;1440:6;1436:16;1426:8;1422:31;1419:40;1416:2;;;1472:1;1469;1462:12;1416:2;1221:261;;;;;;1941:128;2007:20;;2032:32;2007:20;2032:32;;2076:130;2143:20;;2168:33;2143:20;2168:33;;2213:128;2279:20;;2304:32;2279:20;2304:32;;2348:128;2414:20;;2439:32;2414:20;2439:32;;2483:241;;2587:2;2575:9;2566:7;2562:23;2558:32;2555:2;;;2603:1;2600;2593:12;2555:2;2638:1;2655:53;2700:7;2680:9;2655:53;;2731:366;;;2852:2;2840:9;2831:7;2827:23;2823:32;2820:2;;;2868:1;2865;2858:12;2820:2;2903:1;2920:53;2965:7;2945:9;2920:53;;;2910:63;;2882:97;3010:2;3028:53;3073:7;3064:6;3053:9;3049:22;3028:53;;;3018:63;;2989:98;2814:283;;;;;;3104:491;;;;3242:2;3230:9;3221:7;3217:23;3213:32;3210:2;;;3258:1;3255;3248:12;3210:2;3293:1;3310:53;3355:7;3335:9;3310:53;;;3300:63;;3272:97;3400:2;3418:53;3463:7;3454:6;3443:9;3439:22;3418:53;;;3408:63;;3379:98;3508:2;3526:53;3571:7;3562:6;3551:9;3547:22;3526:53;;;3516:63;;3487:98;3204:391;;;;;;3602:721;;;;;3766:3;3754:9;3745:7;3741:23;3737:33;3734:2;;;3783:1;3780;3773:12;3734:2;3818:1;3835:53;3880:7;3860:9;3835:53;;;3825:63;;3797:97;3925:2;3943:53;3988:7;3979:6;3968:9;3964:22;3943:53;;;3933:63;;3904:98;4033:2;4051:53;4096:7;4087:6;4076:9;4072:22;4051:53;;;4041:63;;4012:98;4169:2;4158:9;4154:18;4141:32;4193:18;4185:6;4182:30;4179:2;;;4225:1;4222;4215:12;4179:2;4245:62;4299:7;4290:6;4279:9;4275:22;4245:62;;;4235:72;;4120:193;3728:595;;;;;;;;4330:360;;;4448:2;4436:9;4427:7;4423:23;4419:32;4416:2;;;4464:1;4461;4454:12;4416:2;4499:1;4516:53;4561:7;4541:9;4516:53;;;4506:63;;4478:97;4606:2;4624:50;4666:7;4657:6;4646:9;4642:22;4624:50;;4697:492;;;;4838:2;4826:9;4817:7;4813:23;4809:32;4806:2;;;4854:1;4851;4844:12;4806:2;4889:1;4906:53;4951:7;4931:9;4906:53;;;4896:63;;4868:97;5024:2;5013:9;5009:18;4996:32;5048:18;5040:6;5037:30;5034:2;;;5080:1;5077;5070:12;5034:2;5108:65;5165:7;5156:6;5145:9;5141:22;5108:65;;;5098:75;;;;4975:204;4800:389;;;;;;5196:366;;;5317:2;5305:9;5296:7;5292:23;5288:32;5285:2;;;5333:1;5330;5323:12;5285:2;5368:1;5385:53;5430:7;5410:9;5385:53;;;5375:63;;5347:97;5475:2;5493:53;5538:7;5529:6;5518:9;5514:22;5493:53;;5569:257;;5681:2;5669:9;5660:7;5656:23;5652:32;5649:2;;;5697:1;5694;5687:12;5649:2;5732:1;5749:61;5802:7;5782:9;5749:61;;5833:239;;5936:2;5924:9;5915:7;5911:23;5907:32;5904:2;;;5952:1;5949;5942:12;5904:2;5987:1;6004:52;6048:7;6028:9;6004:52;;6079:261;;6193:2;6181:9;6172:7;6168:23;6164:32;6161:2;;;6209:1;6206;6199:12;6161:2;6244:1;6261:63;6316:7;6296:9;6261:63;;6347:1317;;;;;;;;;6582:3;6570:9;6561:7;6557:23;6553:33;6550:2;;;6599:1;6596;6589:12;6550:2;6634:31;;6685:18;6674:30;;6671:2;;;6717:1;6714;6707:12;6671:2;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;;;6727:73;;6613:193;6865:2;6854:9;6850:18;6837:32;6889:18;6881:6;6878:30;6875:2;;;6921:1;6918;6911:12;6875:2;6941:63;6996:7;6987:6;6976:9;6972:22;6941:63;;;6931:73;;6816:194;7041:2;7059:52;7103:7;7094:6;7083:9;7079:22;7059:52;;;7049:62;;7020:97;7148:2;7166:52;7210:7;7201:6;7190:9;7186:22;7166:52;;;7156:62;;7127:97;7255:3;7274:52;7318:7;7309:6;7298:9;7294:22;7274:52;;;7264:62;;7234:98;7363:3;7382:52;7426:7;7417:6;7406:9;7402:22;7382:52;;;7372:62;;7342:98;7471:3;7490:50;7532:7;7523:6;7512:9;7508:22;7490:50;;;7480:60;;7450:96;7577:3;7596:52;7640:7;7631:6;7620:9;7616:22;7596:52;;;7586:62;;7556:98;6544:1120;;;;;;;;;;;;7671:1547;;;;;;;;;;7932:3;7920:9;7911:7;7907:23;7903:33;7900:2;;;7949:1;7946;7939:12;7900:2;7984:31;;8035:18;8024:30;;8021:2;;;8067:1;8064;8057:12;8021:2;8087:63;8142:7;8133:6;8122:9;8118:22;8087:63;;;8077:73;;7963:193;8215:2;8204:9;8200:18;8187:32;8239:18;8231:6;8228:30;8225:2;;;8271:1;8268;8261:12;8225:2;8291:63;8346:7;8337:6;8326:9;8322:22;8291:63;;;8281:73;;8166:194;8391:2;8409:52;8453:7;8444:6;8433:9;8429:22;8409:52;;;8399:62;;8370:97;8498:2;8516:52;8560:7;8551:6;8540:9;8536:22;8516:52;;;8506:62;;8477:97;8605:3;8624:52;8668:7;8659:6;8648:9;8644:22;8624:52;;;8614:62;;8584:98;8713:3;8732:52;8776:7;8767:6;8756:9;8752:22;8732:52;;;8722:62;;8692:98;8821:3;8840:50;8882:7;8873:6;8862:9;8858:22;8840:50;;;8830:60;;8800:96;8927:3;8946:52;8990:7;8981:6;8970:9;8966:22;8946:52;;;8936:62;;8906:98;9063:3;9052:9;9048:19;9035:33;9088:18;9080:6;9077:30;9074:2;;;9120:1;9117;9110:12;9074:2;9140:62;9194:7;9185:6;9174:9;9170:22;9140:62;;;9130:72;;9014:194;7894:1324;;;;;;;;;;;;10781:241;;10885:2;10873:9;10864:7;10860:23;10856:32;10853:2;;;10901:1;10898;10891:12;10853:2;10936:1;10953:53;10998:7;10978:9;10953:53;;11030:181;;11143:62;11201:3;11193:6;11143:62;;11220:173;;11307:46;11349:3;11341:6;11307:46;;;-1:-1;;11382:4;11373:14;;11300:93;11401:113;11484:24;11502:5;11484:24;;;11479:3;11472:37;11466:48;;;11550:896;;11707:60;11761:5;11707:60;;;11780:92;11865:6;11860:3;11780:92;;;11773:99;;11895:3;11937:4;11929:6;11925:17;11920:3;11916:27;11964:62;12020:5;11964:62;;;12046:7;12074:1;12059:348;12084:6;12081:1;12078:13;12059:348;;;12146:9;12140:4;12136:20;12131:3;12124:33;12191:6;12185:13;12213:76;12284:4;12269:13;12213:76;;;12205:84;;12306:66;12365:6;12306:66;;;12395:4;12386:14;;;;;12296:76;-1:-1;;12106:1;12099:9;12059:348;;;-1:-1;12420:4;;11686:760;-1:-1;;;;;;;11686:760;12485:690;;12630:54;12678:5;12630:54;;;12697:86;12776:6;12771:3;12697:86;;;12690:93;;12804:56;12854:5;12804:56;;;12880:7;12908:1;12893:260;12918:6;12915:1;12912:13;12893:260;;;12985:6;12979:13;13006:63;13065:3;13050:13;13006:63;;;12999:70;;13086:60;13139:6;13086:60;;;13076:70;-1:-1;;12940:1;12933:9;12893:260;;;-1:-1;13166:3;;12609:566;-1:-1;;;;;12609:566;13183:104;13260:21;13275:5;13260:21;;13294:343;;13404:38;13436:5;13404:38;;;13454:70;13517:6;13512:3;13454:70;;;13447:77;;13529:52;13574:6;13569:3;13562:4;13555:5;13551:16;13529:52;;;13602:29;13624:6;13602:29;;;13593:39;;;;13384:253;-1:-1;;;13384:253;13644:174;13751:61;13806:5;13751:61;;13850:313;;13984:89;14066:6;14061:3;13984:89;;;13977:96;;14085:43;14121:6;14116:3;14109:5;14085:43;;;-1:-1;;14141:16;;13970:193;14525:360;;14655:39;14688:5;14655:39;;;14706:89;14788:6;14783:3;14706:89;;;14699:96;;14800:52;14845:6;14840:3;14833:4;14826:5;14822:16;14800:52;;;14864:16;;;;;14635:250;-1:-1;;14635:250;15219:364;;15379:67;15443:2;15438:3;15379:67;;;-1:-1;;;15459:87;;15574:2;15565:12;;15365:218;-1:-1;;15365:218;15592:364;;15752:67;15816:2;15811:3;15752:67;;;15852:66;15832:87;;15947:2;15938:12;;15738:218;-1:-1;;15738:218;15965:465;;16125:67;16189:2;16184:3;16125:67;;;16225:66;16205:87;;-1:-1;;;16321:2;16312:12;;16305:88;16421:2;16412:12;;16111:319;-1:-1;;16111:319;16439:364;;16599:67;16663:2;16658:3;16599:67;;;16699:66;16679:87;;16794:2;16785:12;;16585:218;-1:-1;;16585:218;16812:364;;16972:67;17036:2;17031:3;16972:67;;;17072:66;17052:87;;17167:2;17158:12;;16958:218;-1:-1;;16958:218;17185:364;;17345:67;17409:2;17404:3;17345:67;;;-1:-1;;;17425:87;;17540:2;17531:12;;17331:218;-1:-1;;17331:218;17558:364;;17718:67;17782:2;17777:3;17718:67;;;-1:-1;;;17798:87;;17913:2;17904:12;;17704:218;-1:-1;;17704:218;17931:364;;18091:67;18155:2;18150:3;18091:67;;;-1:-1;;;18171:87;;18286:2;18277:12;;18077:218;-1:-1;;18077:218;18304:465;;18464:67;18528:2;18523:3;18464:67;;;18564:66;18544:87;;-1:-1;;;18660:2;18651:12;;18644:88;18760:2;18751:12;;18450:319;-1:-1;;18450:319;18778:364;;18938:67;19002:2;18997:3;18938:67;;;19038:66;19018:87;;19133:2;19124:12;;18924:218;-1:-1;;18924:218;19151:364;;19311:67;19375:2;19370:3;19311:67;;;-1:-1;;;19391:87;;19506:2;19497:12;;19297:218;-1:-1;;19297:218;19524:364;;19684:67;19748:2;19743:3;19684:67;;;-1:-1;;;19764:87;;19879:2;19870:12;;19670:218;-1:-1;;19670:218;19897:465;;20057:67;20121:2;20116:3;20057:67;;;20157:66;20137:87;;-1:-1;;;20253:2;20244:12;;20237:88;20353:2;20344:12;;20043:319;-1:-1;;20043:319;20371:364;;20531:67;20595:2;20590:3;20531:67;;;20631:66;20611:87;;20726:2;20717:12;;20517:218;-1:-1;;20517:218;20744:296;;20921:83;21002:1;20997:3;20921:83;;21049:364;;21209:67;21273:2;21268:3;21209:67;;;-1:-1;;;21289:87;;21404:2;21395:12;;21195:218;-1:-1;;21195:218;21422:364;;21582:67;21646:2;21641:3;21582:67;;;-1:-1;;;21662:87;;21777:2;21768:12;;21568:218;-1:-1;;21568:218;21795:465;;21955:67;22019:2;22014:3;21955:67;;;22055:66;22035:87;;-1:-1;;;22151:2;22142:12;;22135:88;22251:2;22242:12;;21941:319;-1:-1;;21941:319;22269:364;;22429:67;22493:2;22488:3;22429:67;;;-1:-1;;;22509:87;;22624:2;22615:12;;22415:218;-1:-1;;22415:218;22642:364;;22802:67;22866:2;22861:3;22802:67;;;-1:-1;;;22882:87;;22997:2;22988:12;;22788:218;-1:-1;;22788:218;23014:110;23095:23;23112:5;23095:23;;23131:103;23204:24;23222:5;23204:24;;23361:110;23442:23;23459:5;23442:23;;23478:110;23559:23;23576:5;23559:23;;23595:286;;23751:105;23852:3;23843:6;23835;23751:105;;23888:266;;24034:95;24125:3;24116:6;24034:95;;24161:370;;24359:147;24502:3;24359:147;;24538:213;24656:2;24641:18;;24670:71;24645:9;24714:6;24670:71;;24758:1363;25152:3;25137:19;;25167:71;25141:9;25211:6;25167:71;;;25249:72;25317:2;25306:9;25302:18;25293:6;25249:72;;;25369:9;25363:4;25359:20;25354:2;25343:9;25339:18;25332:48;25394:78;25467:4;25458:6;25394:78;;;25386:86;;25520:9;25514:4;25510:20;25505:2;25494:9;25490:18;25483:48;25545:78;25618:4;25609:6;25545:78;;;25537:86;;25634:71;25700:3;25689:9;25685:19;25676:6;25634:71;;;25716;25782:3;25771:9;25767:19;25758:6;25716:71;;;25798;25864:3;25853:9;25849:19;25840:6;25798:71;;;25880;25946:3;25935:9;25931:19;25922:6;25880:71;;;25962:67;26024:3;26013:9;26009:19;26000:6;25962:67;;;26040:71;26106:3;26095:9;26091:19;26082:6;26040:71;;;25123:998;;;;;;;;;;;;;;26128:631;26348:3;26333:19;;26363:71;26337:9;26407:6;26363:71;;;26445:72;26513:2;26502:9;26498:18;26489:6;26445:72;;;26528;26596:2;26585:9;26581:18;26572:6;26528:72;;;26648:9;26642:4;26638:20;26633:2;26622:9;26618:18;26611:48;26673:76;26744:4;26735:6;26673:76;;;26665:84;26319:440;-1:-1;;;;;;26319:440;26766:385;26946:2;26960:47;;;26931:18;;27021:120;26931:18;27127:6;27021:120;;27158:361;27326:2;27340:47;;;27311:18;;27401:108;27311:18;27495:6;27401:108;;27526:201;27638:2;27623:18;;27652:65;27627:9;27690:6;27652:65;;27734:261;27876:2;27861:18;;27890:95;27865:9;27958:6;27890:95;;28002:301;28140:2;28154:47;;;28125:18;;28215:78;28125:18;28279:6;28215:78;;28310:407;28501:2;28515:47;;;28486:18;;28576:131;28486:18;28576:131;;28724:407;28915:2;28929:47;;;28900:18;;28990:131;28900:18;28990:131;;29138:407;29329:2;29343:47;;;29314:18;;29404:131;29314:18;29404:131;;29552:407;29743:2;29757:47;;;29728:18;;29818:131;29728:18;29818:131;;29966:407;30157:2;30171:47;;;30142:18;;30232:131;30142:18;30232:131;;30380:407;30571:2;30585:47;;;30556:18;;30646:131;30556:18;30646:131;;30794:407;30985:2;30999:47;;;30970:18;;31060:131;30970:18;31060:131;;31208:407;31399:2;31413:47;;;31384:18;;31474:131;31384:18;31474:131;;31622:407;31813:2;31827:47;;;31798:18;;31888:131;31798:18;31888:131;;32036:407;32227:2;32241:47;;;32212:18;;32302:131;32212:18;32302:131;;32450:407;32641:2;32655:47;;;32626:18;;32716:131;32626:18;32716:131;;32864:407;33055:2;33069:47;;;33040:18;;33130:131;33040:18;33130:131;;33278:407;33469:2;33483:47;;;33454:18;;33544:131;33454:18;33544:131;;33692:407;33883:2;33897:47;;;33868:18;;33958:131;33868:18;33958:131;;34106:407;34297:2;34311:47;;;34282:18;;34372:131;34282:18;34372:131;;34520:407;34711:2;34725:47;;;34696:18;;34786:131;34696:18;34786:131;;34934:407;35125:2;35139:47;;;35110:18;;35200:131;35110:18;35200:131;;35348:407;35539:2;35553:47;;;35524:18;;35614:131;35524:18;35614:131;;35762:407;35953:2;35967:47;;;35938:18;;36028:131;35938:18;36028:131;;36176:213;36294:2;36279:18;;36308:71;36283:9;36352:6;36308:71;;36396:209;36512:2;36497:18;;36526:69;36501:9;36568:6;36526:69;;36612:320;36756:2;36741:18;;36770:69;36745:9;36812:6;36770:69;;;36850:72;36918:2;36907:9;36903:18;36894:6;36850:72;;36939:767;37195:3;37180:19;;37210:69;37184:9;37252:6;37210:69;;;37290:72;37358:2;37347:9;37343:18;37334:6;37290:72;;;37373;37441:2;37430:9;37426:18;37417:6;37373:72;;;37456;37524:2;37513:9;37509:18;37500:6;37456:72;;;37539:73;37607:3;37596:9;37592:19;37583:6;37539:73;;;37623;37691:3;37680:9;37676:19;37667:6;37623:73;;;37166:540;;;;;;;;;;37713:408;37877:2;37862:18;;37891:69;37866:9;37933:6;37891:69;;;38008:9;38002:4;37998:20;37993:2;37982:9;37978:18;37971:48;38033:78;38106:4;38097:6;38033:78;;38128:256;38190:2;38184:9;38216:17;;;38291:18;38276:34;;38312:22;;;38273:62;38270:2;;;38348:1;38345;38338:12;38270:2;38364;38357:22;38168:216;;-1:-1;38168:216;38391:321;;38534:18;38526:6;38523:30;38520:2;;;38566:1;38563;38556:12;38520:2;-1:-1;38697:4;38633;38610:17;;;;-1:-1;;38606:33;38687:15;;38457:255;39048:157;39178:4;39169:14;;39126:79;39370:143;39479:12;;39450:63;40283:184;40407:19;;;40456:4;40447:14;;40400:67;41474:91;;41536:24;41554:5;41536:24;;41572:85;41638:13;41631:21;;41614:43;41664:144;-1:-1;;;;;;41725:78;;41708:100;41815:84;41887:6;41876:18;;41859:40;41906:121;-1:-1;;;;;41968:54;;41951:76;42113:88;42185:10;42174:22;;42157:44;42208:92;42280:14;42269:26;;42252:48;42307:169;;42410:61;42465:5;42410:61;;42623:145;42704:6;42699:3;42694;42681:30;-1:-1;42760:1;42742:16;;42735:27;42674:94;42777:268;42842:1;42849:101;42863:6;42860:1;42857:13;42849:101;;;42930:11;;;42924:18;42911:11;;;42904:39;42885:2;42878:10;42849:101;;;42965:6;42962:1;42959:13;42956:2;;;-1:-1;;43030:1;43012:16;;43005:27;42826:219;43053:97;43141:2;43121:14;-1:-1;;43117:28;;43101:49;43158:117;43227:24;43245:5;43227:24;;;43220:5;43217:35;43207:2;;43266:1;43263;43256:12;43282:111;43348:21;43363:5;43348:21;;43400:115;43468:23;43485:5;43468:23;;43522:115;43590:23;43607:5;43590:23;;43644:117;43713:24;43731:5;43713:24;;43768:115;43836:23;43853:5;43836:23;;43890:115;43958:23;43975:5;43958:23;
Swarm Source
bzzr://cc16874d5e16d1eaeec31cb059b3292afaff9b5a13d15dde38e03ba547ea0027
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,085.28 | 0.0057 | $17.59 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.