Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 15 from a total of 15 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Darklisted_notif... | 11222428 | 1962 days ago | IN | 0 ETH | 0.00393174 | ||||
| Get Reward_For_A... | 11222413 | 1962 days ago | IN | 0 ETH | 0.00283053 | ||||
| Darklisted_updat... | 11222405 | 1962 days ago | IN | 0 ETH | 0.00244335 | ||||
| Darklisted_updat... | 11222387 | 1962 days ago | IN | 0 ETH | 0.00407916 | ||||
| Darklisted_updat... | 11222360 | 1962 days ago | IN | 0 ETH | 0.00322538 | ||||
| Darklisted_notif... | 11222346 | 1962 days ago | IN | 0 ETH | 0.00378054 | ||||
| Set_period_finis... | 11222344 | 1962 days ago | IN | 0 ETH | 0.00101066 | ||||
| Darklisted_notif... | 11222302 | 1962 days ago | IN | 0 ETH | 0.00486054 | ||||
| Set_period_finis... | 11222298 | 1962 days ago | IN | 0 ETH | 0.00155066 | ||||
| Stake | 11222291 | 1962 days ago | IN | 0 ETH | 0.0032104 | ||||
| Darklisted_notif... | 11222285 | 1962 days ago | IN | 0 ETH | 0.0053735 | ||||
| Exit | 11222280 | 1962 days ago | IN | 0 ETH | 0.00295034 | ||||
| Stake | 11222273 | 1962 days ago | IN | 0 ETH | 0.00607183 | ||||
| Approve_dark Lis... | 11222240 | 1962 days ago | IN | 0 ETH | 0.00177595 | ||||
| Approve_dark Lis... | 11222234 | 1962 days ago | IN | 0 ETH | 0.00231595 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
DarkAgentPool
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-11-09
*/
/**
*Submitted for verification at Etherscan.io on 2020-11-08
*/
/**
*Submitted for verification at Etherscan.io on 2020-11-08
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/math/Math.sol
pragma solidity ^0.6.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow, so we distribute
return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
}
}
pragma solidity ^0.6.2;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// 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 != accountHash && codehash != 0x0);
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return _functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
return _functionCallWithValue(target, data, value, errorMessage);
}
function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/math/SafeMath.sol
pragma solidity ^0.6.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File: node_modules\@openzeppelin\contracts\GSN\Context.sol
pragma solidity ^0.6.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// File: @openzeppelin/contracts/ownership/Ownable.sol
pragma solidity ^0.6.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.6.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
pragma solidity ^0.6.0;
contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name, string memory symbol) public {
_name = name;
_symbol = symbol;
_decimals = 18;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal {
_decimals = decimals_;
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}
pragma solidity ^0.6.0;
library SafeERC20 {
using SafeMath for uint256;
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
// solhint-disable-next-line max-line-length
require((value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).add(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// File: staking-audit.sol
pragma solidity ^0.6.12;
contract DarkAgentPool is ERC20("DarkAgentPool", "pDARK"), Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
// ------------ Multi darklisted_ Tokens rewarding ---------------------------------------
IERC20 public DARK = IERC20(0x3108ccFd96816F9E663baA0E8c5951D229E8C6da);
uint256 public darklisted_duration = 100 days;
uint256 public darklisted_period_finish = 0;
uint256 public darklisted_last_update_time;
uint256 public darklisted_newreward;
address[] public darklisted_token;
address[] public darklisted_reward_account_list;
mapping(address => bool) public darklisted_staker_accepted;
mapping(address => uint256) public darklisted_reward_per_token_stored;
mapping(address => uint256) public darklisted_reward_rate;
mapping(address => mapping (address => uint)) public darklisted_each_account_rewards;
mapping(address => mapping (address => uint)) public darklisted_user_reward_per_token_paid;
event RewardAdded(uint256 darklisted_newreward);
event Staked(address indexed user, uint256 amount);
event Withdrawn(address indexed user, uint256 amount);
event RewardPaid(address indexed user, uint256 reward);
// ------------ Listing Tokens ---------------------------------------
function approve_darkListing(address _darklisted_token) external onlyOwner {
require(_darklisted_token != address(0), "Cannot be adddress(0)");
darklisted_token.push(_darklisted_token);
}
function revoke_darkListing(address _darklisted_token) external onlyOwner {
require(_darklisted_token != address(0), "Cannot be adddress(0)");
darklisted_token.pop();
}
// ------------ Pool Duration ---------------------------------------
function set_duration(uint256 _darklisted_duration) external onlyOwner {
require(_darklisted_duration != 0, "Cannot be 0 days");
darklisted_duration = _darklisted_duration;
}
function set_period_finish() external onlyOwner {
darklisted_period_finish = block.timestamp.add(darklisted_duration);
}
// ------------ Modifier and Modifier Function ---------------------------------------
modifier darklisted_updateReward(address account, address token) {
darklisted_reward_per_token_stored[token] = darklisted_rewardPerToken(token);
darklisted_last_update_time = darklisted_lastTimeRewardApplicable();
if (account != address(0)) {
darklisted_each_account_rewards[account][token] = darklisted_earned(account, token);
darklisted_user_reward_per_token_paid[account][token] = darklisted_reward_per_token_stored[token];
}
_;
}
function darklisted_updateReward_function(address account, address token) public {
darklisted_reward_per_token_stored[token] = darklisted_rewardPerToken(token);
darklisted_last_update_time = darklisted_lastTimeRewardApplicable();
if (account != address(0)) {
darklisted_each_account_rewards[account][token] = darklisted_earned(account, token);
darklisted_user_reward_per_token_paid[account][token] = darklisted_reward_per_token_stored[token];
}
}
// ------------ darklisted_ Rewards Logics--------------------------------
function darklisted_lastTimeRewardApplicable() public view returns(uint256) {
return Math.min(block.timestamp, darklisted_period_finish);
}
function darklisted_rewardPerToken(address token) public view returns(uint256) {
if (totalSupply() == 0) {
return darklisted_reward_per_token_stored[token];
}
return darklisted_reward_per_token_stored[token].add(
darklisted_lastTimeRewardApplicable().sub(darklisted_last_update_time).mul(darklisted_reward_rate[token]).mul(1e18).div(totalSupply())
);
}
function darklisted_earned(address account, address token) public view returns(uint256) {
return balanceOf(account).mul(
darklisted_rewardPerToken(token).sub(darklisted_user_reward_per_token_paid[account][token])
).div(1e18).add(darklisted_each_account_rewards[account][token]);
}
function stake(uint256 amount) public darklisted_updateReward(msg.sender, 0x3108ccFd96816F9E663baA0E8c5951D229E8C6da) {
require(amount > 0, "Cannot stake 0");
if (balanceOf(msg.sender) == 0 && !darklisted_staker_accepted[msg.sender]) {
darklisted_staker_accepted[msg.sender] = true;
darklisted_reward_account_list.push(msg.sender);
}
_mint(msg.sender, amount);
DARK.safeTransferFrom(msg.sender, address(this), amount);
}
function withdraw(uint256 _share) public darklisted_updateReward(msg.sender, 0x3108ccFd96816F9E663baA0E8c5951D229E8C6da) {
require(_share > 0, "Cannot withdraw 0");
if (balanceOf(msg.sender) == 0 && darklisted_staker_accepted[msg.sender]) {
darklisted_staker_accepted[msg.sender] = false;
uint256 index = 0;
while (darklisted_reward_account_list[index] != msg.sender) {
index++;
}
darklisted_reward_account_list[index] = darklisted_reward_account_list[darklisted_reward_account_list.length - 1];
darklisted_reward_account_list.pop();
}
_burn(msg.sender, _share);
DARK.safeTransfer(msg.sender, _share);
emit Withdrawn(msg.sender, _share);
}
function exit() public {
withdraw(balanceOf(msg.sender));
getReward();
}
function getReward() public darklisted_updateReward(msg.sender, 0x3108ccFd96816F9E663baA0E8c5951D229E8C6da) {
uint256 reward = darklisted_earned(msg.sender, 0x3108ccFd96816F9E663baA0E8c5951D229E8C6da);
if (reward > 0) {
darklisted_each_account_rewards[msg.sender][0x3108ccFd96816F9E663baA0E8c5951D229E8C6da] = 0;
DARK.safeTransfer(msg.sender, reward);
emit RewardPaid(msg.sender, reward);
}
}
function getReward_For_All(address account, address token) public darklisted_updateReward(account, token) {
uint256 reward = darklisted_earned(account, token);
if (reward > 0) {
darklisted_each_account_rewards[account][token] = 0;
IERC20(token).safeTransfer(account, reward);
emit RewardPaid(account, reward);
}
}
function darklisted_getReward() public {
for(uint d = 0; d< darklisted_token.length; d++){
for(uint i = 0; i< darklisted_reward_account_list.length; i++){
darklisted_updateReward_function(darklisted_reward_account_list[i], darklisted_token[d]);
uint256 reward = darklisted_earned(darklisted_reward_account_list[i], darklisted_token[d]);
if (reward > 0) {
darklisted_each_account_rewards[darklisted_reward_account_list[i]][darklisted_token[d]] = 0;
IERC20(darklisted_token[d]).safeTransfer(darklisted_reward_account_list[i], reward);
}
}
}
}
function darklisted_getReward_For_All() public {
for(uint d = 0; d< darklisted_token.length; d++){
for(uint i = 0; i< darklisted_reward_account_list.length; i++){
getReward_For_All(darklisted_reward_account_list[i], darklisted_token[d]);
}
}
}
function darklisted_notifyRewardAmount() external {
for(uint d = 0; d< darklisted_token.length; d++){
darklisted_updateReward_function(address(0), darklisted_token[d]);
if (darklisted_token[d] == 0x3108ccFd96816F9E663baA0E8c5951D229E8C6da) {
darklisted_newreward = DARK.balanceOf(address(this)).sub(totalSupply());
} else {
darklisted_newreward = IERC20(darklisted_token[d]).balanceOf(address(this));
}
if (block.timestamp >= darklisted_period_finish) {
darklisted_reward_rate[darklisted_token[d]] = darklisted_newreward.div(darklisted_duration);
} else {
uint256 remaining = darklisted_period_finish.sub(block.timestamp);
uint256 leftover = remaining.mul(darklisted_reward_rate[darklisted_token[d]]);
darklisted_reward_rate[darklisted_token[d]] = darklisted_newreward.add(leftover).div(darklisted_duration);
}
darklisted_last_update_time = block.timestamp;
emit RewardAdded(darklisted_newreward);
}
}
function darklisted_lockedDetails() external view returns (bool, uint256) {
return (false, darklisted_period_finish);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"darklisted_newreward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"DARK","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_darklisted_token","type":"address"}],"name":"approve_darkListing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"darklisted_duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"darklisted_each_account_rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"token","type":"address"}],"name":"darklisted_earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"darklisted_getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"darklisted_getReward_For_All","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"darklisted_lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"darklisted_last_update_time","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"darklisted_lockedDetails","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"darklisted_newreward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"darklisted_notifyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"darklisted_period_finish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"darklisted_rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"darklisted_reward_account_list","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"darklisted_reward_per_token_stored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"darklisted_reward_rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"darklisted_staker_accepted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"darklisted_token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"token","type":"address"}],"name":"darklisted_updateReward_function","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"darklisted_user_reward_per_token_paid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"token","type":"address"}],"name":"getReward_For_All","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_darklisted_token","type":"address"}],"name":"revoke_darkListing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_darklisted_duration","type":"uint256"}],"name":"set_duration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"set_period_finish","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052600680546001600160a01b031916733108ccfd96816f9e663baa0e8c5951d229e8c6da1790556283d60060075560006008553480156200004357600080fd5b50604080518082018252600d81526c11185c9ad059d95b9d141bdbdb609a1b602080830191825283518085019094526005845264704441524b60d81b908401528151919291620000969160039162000128565b508051620000ac90600490602084019062000128565b50506005805460ff19166012179055506000620000c862000124565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001c4565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200016b57805160ff19168380011785556200019b565b828001600101855582156200019b579182015b828111156200019b5782518255916020019190600101906200017e565b50620001a9929150620001ad565b5090565b5b80821115620001a95760008155600101620001ae565b6128cb80620001d46000396000f3fe608060405234801561001057600080fd5b50600436106102685760003560e01c806367d9e8bc1161015157806395d89b41116100c3578063cdb8625511610087578063cdb86255146106fa578063d5a8fb2d14610720578063d924b72614610746578063dd62ed3e1461074e578063e9fad8ee1461077c578063f2fde38b1461078457610268565b806395d89b411461065a578063a457c2d714610662578063a694fc3a1461068e578063a9059cbb146106ab578063c093dac4146106d757610268565b806370a082311161011557806370a08231146105b3578063715018a6146105d95780637d27d540146105e1578063873c8c011461060757806389be0807146106245780638da5cb5b1461065257610268565b806367d9e8bc1461052a5780636a2acac1146105325780636a3e42b8146105605780636b3383d71461058e5780636dfbabd41461059657610268565b80632e1a7d4d116101ea57806339509351116101ae57806339509351146104a35780633d18b912146104cf578063405ab6b2146104d757806348d9588f146104df5780634edf5b95146104e757806366e997221461050457610268565b80632e1a7d4d1461040c578063313ce5671461042957806336c6847114610447578063375535c61461046d57806338b655861461047557610268565b806318160ddd1161023157806318160ddd1461038e5780631c09690a146103965780631d92a881146103a057806323327ba9146103ce57806323b872dd146103d657610268565b8062dd495e1461026d57806306fdde03146102a5578063095ea7b3146103225780630a5b9361146103625780631615e11d1461036a575b600080fd5b6102936004803603602081101561028357600080fd5b50356001600160a01b03166107aa565b60408051918252519081900360200190f35b6102ad6107bc565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61034e6004803603604081101561033857600080fd5b506001600160a01b038135169060200135610852565b604080519115158252519081900360200190f35b610293610870565b610372610876565b604080516001600160a01b039092168252519081900360200190f35b610293610885565b61039e61088b565b005b610293600480360360408110156103b657600080fd5b506001600160a01b0381358116916020013516610a2c565b610293610a49565b61034e600480360360608110156103ec57600080fd5b506001600160a01b03813581169160208101359091169060400135610a5c565b61039e6004803603602081101561042257600080fd5b5035610ae3565b610431610d3e565b6040805160ff9092168252519081900360200190f35b61039e6004803603602081101561045d57600080fd5b50356001600160a01b0316610d47565b610293610e27565b6102936004803603604081101561048b57600080fd5b506001600160a01b0381358116916020013516610e2d565b61034e600480360360408110156104b957600080fd5b506001600160a01b038135169060200135610eb6565b61039e610f04565b61039e611056565b6102936110d1565b61039e600480360360208110156104fd57600080fd5b50356110d7565b6102936004803603602081101561051a57600080fd5b50356001600160a01b031661117e565b61039e611190565b61039e6004803603604081101561054857600080fd5b506001600160a01b0381358116916020013516611446565b6102936004803603604081101561057657600080fd5b506001600160a01b0381358116916020013516611567565b610293611584565b610372600480360360208110156105ac57600080fd5b503561158a565b610293600480360360208110156105c957600080fd5b50356001600160a01b03166115b1565b61039e6115d0565b610293600480360360208110156105f757600080fd5b50356001600160a01b031661167d565b6103726004803603602081101561061d57600080fd5b503561171a565b61039e6004803603604081101561063a57600080fd5b506001600160a01b0381358116916020013516611727565b6103726117bb565b6102ad6117cf565b61034e6004803603604081101561067857600080fd5b506001600160a01b038135169060200135611830565b61039e600480360360208110156106a457600080fd5b5035611898565b61034e600480360360408110156106c157600080fd5b506001600160a01b038135169060200135611a2e565b6106df611a42565b60408051921515835260208301919091528051918290030190f35b61034e6004803603602081101561071057600080fd5b50356001600160a01b0316611a4a565b61039e6004803603602081101561073657600080fd5b50356001600160a01b0316611a5f565b61039e611b61565b6102936004803603604081101561076457600080fd5b506001600160a01b0381358116916020013516611bd1565b61039e611bfc565b61039e6004803603602081101561079a57600080fd5b50356001600160a01b0316611c17565b600f6020526000908152604090205481565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108485780601f1061081d57610100808354040283529160200191610848565b820191906000526020600020905b81548152906001019060200180831161082b57829003601f168201915b5050505050905090565b600061086661085f611d20565b8484611d24565b5060015b92915050565b60075481565b6006546001600160a01b031681565b60025490565b60005b600b54811015610a295760005b600c54811015610a20576108f5600c82815481106108b557fe5b600091825260209091200154600b80546001600160a01b0390921691859081106108db57fe5b6000918252602090912001546001600160a01b0316611727565b6000610947600c838154811061090757fe5b600091825260209091200154600b80546001600160a01b03909216918690811061092d57fe5b6000918252602090912001546001600160a01b0316610e2d565b90508015610a1757600060106000600c858154811061096257fe5b60009182526020808320909101546001600160a01b031683528201929092526040018120600b80549192918790811061099757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902055600c8054610a179190849081106109cf57fe5b9060005260206000200160009054906101000a90046001600160a01b031682600b86815481106109fb57fe5b6000918252602090912001546001600160a01b03169190611e10565b5060010161089b565b5060010161088e565b50565b601060209081526000928352604080842090915290825290205481565b6000610a5742600854611e62565b905090565b6000610a69848484611e78565b610ad984610a75611d20565b610ad485604051806060016040528060288152602001612795602891396001600160a01b038a16600090815260016020526040812090610ab3611d20565b6001600160a01b031681526020810191909152604001600020549190611fd3565b611d24565b5060019392505050565b33733108ccfd96816f9e663baa0e8c5951d229e8c6da610b028161167d565b6001600160a01b0382166000908152600e6020526040902055610b23610a49565b6009556001600160a01b03821615610b8957610b3f8282610e2d565b6001600160a01b03808416600081815260106020908152604080832094871680845294825280832095909555600e8152848220549282526011815284822093825292909252919020555b60008311610bd2576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b610bdb336115b1565b158015610bf75750336000908152600d602052604090205460ff165b15610ce257336000908152600d60205260408120805460ff191690555b336001600160a01b0316600c8281548110610c2b57fe5b6000918252602090912001546001600160a01b031614610c4d57600101610c14565b600c80546000198101908110610c5f57fe5b600091825260209091200154600c80546001600160a01b039092169183908110610c8557fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600c805480610cbe57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055505b610cec338461206a565b600654610d03906001600160a01b03163385611e10565b60408051848152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a2505050565b60055460ff1690565b610d4f611d20565b60055461010090046001600160a01b03908116911614610da4576040805162461bcd60e51b815260206004820181905260248201526000805160206127bd833981519152604482015290519081900360640190fd5b6001600160a01b038116610df7576040805162461bcd60e51b815260206004820152601560248201527443616e6e6f7420626520616464647265737328302960581b604482015290519081900360640190fd5b600b805480610e0257fe5b600082815260209020810160001990810180546001600160a01b031916905501905550565b60095481565b6001600160a01b038083166000818152601060209081526040808320948616808452948252808320549383526011825280832094835293905291822054610eaf9190610ea990670de0b6b3a764000090610ea390610e9490610e8e8961167d565b90612166565b610e9d896115b1565b906121a8565b90612201565b90612243565b9392505050565b6000610866610ec3611d20565b84610ad48560016000610ed4611d20565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612243565b33733108ccfd96816f9e663baa0e8c5951d229e8c6da610f238161167d565b6001600160a01b0382166000908152600e6020526040902055610f44610a49565b6009556001600160a01b03821615610faa57610f608282610e2d565b6001600160a01b03808416600081815260106020908152604080832094871680845294825280832095909555600e8152848220549282526011815284822093825292909252919020555b6000610fca33733108ccfd96816f9e663baa0e8c5951d229e8c6da610e2d565b9050801561105157336000818152601060209081526040808320733108ccfd96816f9e663baa0e8c5951d229e8c6da845290915281205560065461101a916001600160a01b039091169083611e10565b60408051828152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b505050565b60005b600b54811015610a295760005b600c548110156110c8576110c0600c828154811061108057fe5b600091825260209091200154600b80546001600160a01b0390921691859081106110a657fe5b6000918252602090912001546001600160a01b0316611446565b600101611066565b50600101611059565b600a5481565b6110df611d20565b60055461010090046001600160a01b03908116911614611134576040805162461bcd60e51b815260206004820181905260248201526000805160206127bd833981519152604482015290519081900360640190fd5b80611179576040805162461bcd60e51b815260206004820152601060248201526f43616e6e6f742062652030206461797360801b604482015290519081900360640190fd5b600755565b600e6020526000908152604090205481565b60005b600b54811015610a29576111af6000600b83815481106108db57fe5b600b81815481106111bc57fe5b6000918252602090912001546001600160a01b0316733108ccfd96816f9e663baa0e8c5951d229e8c6da141561127c576112746111f7610885565b600654604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561124257600080fd5b505afa158015611256573d6000803e3d6000fd5b505050506040513d602081101561126c57600080fd5b505190612166565b600a55611308565b600b818154811061128957fe5b60009182526020918290200154604080516370a0823160e01b815230600482015290516001600160a01b03909216926370a0823192602480840193829003018186803b1580156112d857600080fd5b505afa1580156112ec573d6000803e3d6000fd5b505050506040513d602081101561130257600080fd5b5051600a555b600854421061135b57600754600a5461132091612201565b600f6000600b848154811061133157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902055611405565b60085460009061136b9042612166565b905060006113af600f6000600b868154811061138357fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906121a8565b90506113cc600754610ea383600a5461224390919063ffffffff16565b600f6000600b86815481106113dd57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205550505b42600955600a5460408051918252517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9181900360200190a1600101611193565b81816114518161167d565b6001600160a01b0382166000908152600e6020526040902055611472610a49565b6009556001600160a01b038216156114d85761148e8282610e2d565b6001600160a01b03808416600081815260106020908152604080832094871680845294825280832095909555600e8152848220549282526011815284822093825292909252919020555b60006114e48585610e2d565b90508015611560576001600160a01b03808616600090815260106020908152604080832093881680845293909152812055611520908683611e10565b6040805182815290516001600160a01b038716917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b5050505050565b601160209081526000928352604080842090915290825290205481565b60085481565b600c818154811061159757fe5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b0381166000908152602081905260409020545b919050565b6115d8611d20565b60055461010090046001600160a01b0390811691161461162d576040805162461bcd60e51b815260206004820181905260248201526000805160206127bd833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6000611687610885565b6116aa57506001600160a01b0381166000908152600e60205260409020546115cb565b61086a6116fb6116b8610885565b610ea3670de0b6b3a7640000610e9d600f6000896001600160a01b03166001600160a01b0316815260200190815260200160002054610e9d600954610e8e610a49565b6001600160a01b0384166000908152600e602052604090205490612243565b600b818154811061159757fe5b6117308161167d565b6001600160a01b0382166000908152600e6020526040902055611751610a49565b6009556001600160a01b038216156117b75761176d8282610e2d565b6001600160a01b03808416600081815260106020908152604080832094871680845294825280832095909555600e8152848220549282526011815284822093825292909252919020555b5050565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108485780601f1061081d57610100808354040283529160200191610848565b600061086661183d611d20565b84610ad4856040518060600160405280602581526020016128716025913960016000611867611d20565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611fd3565b33733108ccfd96816f9e663baa0e8c5951d229e8c6da6118b78161167d565b6001600160a01b0382166000908152600e60205260409020556118d8610a49565b6009556001600160a01b0382161561193e576118f48282610e2d565b6001600160a01b03808416600081815260106020908152604080832094871680845294825280832095909555600e8152848220549282526011815284822093825292909252919020555b60008311611984576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b61198d336115b1565b1580156119aa5750336000908152600d602052604090205460ff16155b15611a0c57336000818152600d60205260408120805460ff19166001908117909155600c805491820181559091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b03191690911790555b611a16338461229d565b600654611051906001600160a01b031633308661238d565b6000610866611a3b611d20565b8484611e78565b600854600091565b600d6020526000908152604090205460ff1681565b611a67611d20565b60055461010090046001600160a01b03908116911614611abc576040805162461bcd60e51b815260206004820181905260248201526000805160206127bd833981519152604482015290519081900360640190fd5b6001600160a01b038116611b0f576040805162461bcd60e51b815260206004820152601560248201527443616e6e6f7420626520616464647265737328302960581b604482015290519081900360640190fd5b600b80546001810182556000919091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b0392909216919091179055565b611b69611d20565b60055461010090046001600160a01b03908116911614611bbe576040805162461bcd60e51b815260206004820181905260248201526000805160206127bd833981519152604482015290519081900360640190fd5b600754611bcc904290612243565b600855565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611c0d611c08336115b1565b610ae3565b611c15610f04565b565b611c1f611d20565b60055461010090046001600160a01b03908116911614611c74576040805162461bcd60e51b815260206004820181905260248201526000805160206127bd833981519152604482015290519081900360640190fd5b6001600160a01b038116611cb95760405162461bcd60e51b81526004018080602001828103825260268152602001806127066026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b038316611d695760405162461bcd60e51b81526004018080602001828103825260248152602001806128236024913960400191505060405180910390fd5b6001600160a01b038216611dae5760405162461bcd60e51b815260040180806020018281038252602281526020018061272c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526110519084906123ed565b6000818310611e715781610eaf565b5090919050565b6001600160a01b038316611ebd5760405162461bcd60e51b81526004018080602001828103825260258152602001806127fe6025913960400191505060405180910390fd5b6001600160a01b038216611f025760405162461bcd60e51b81526004018080602001828103825260238152602001806126c16023913960400191505060405180910390fd5b611f0d838383611051565b611f4a8160405180606001604052806026815260200161274e602691396001600160a01b0386166000908152602081905260409020549190611fd3565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611f799082612243565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156120625760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561202757818101518382015260200161200f565b50505050905090810190601f1680156120545780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166120af5760405162461bcd60e51b81526004018080602001828103825260218152602001806127dd6021913960400191505060405180910390fd5b6120bb82600083611051565b6120f8816040518060600160405280602281526020016126e4602291396001600160a01b0385166000908152602081905260409020549190611fd3565b6001600160a01b03831660009081526020819052604090205560025461211e9082612166565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610eaf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611fd3565b6000826121b75750600061086a565b828202828482816121c457fe5b0414610eaf5760405162461bcd60e51b81526004018080602001828103825260218152602001806127746021913960400191505060405180910390fd5b6000610eaf83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061249e565b600082820183811015610eaf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166122f8576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61230460008383611051565b6002546123119082612243565b6002556001600160a01b0382166000908152602081905260409020546123379082612243565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526123e79085906123ed565b50505050565b6060612442826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125039092919063ffffffff16565b8051909150156110515780806020019051602081101561246157600080fd5b50516110515760405162461bcd60e51b815260040180806020018281038252602a815260200180612847602a913960400191505060405180910390fd5b600081836124ed5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561202757818101518382015260200161200f565b5060008385816124f957fe5b0495945050505050565b6060612512848460008561251a565b949350505050565b606061252585612687565b612576576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106125b55780518252601f199092019160209182019101612596565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612617576040519150601f19603f3d011682016040523d82523d6000602084013e61261c565b606091505b509150915081156126305791506125129050565b8051156126405780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561202757818101518382015260200161200f565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061251257505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220189643d8cb7947bce3efa3913c5a2c533b2099f34b9007c9d7df8323fb8cb50664736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102685760003560e01c806367d9e8bc1161015157806395d89b41116100c3578063cdb8625511610087578063cdb86255146106fa578063d5a8fb2d14610720578063d924b72614610746578063dd62ed3e1461074e578063e9fad8ee1461077c578063f2fde38b1461078457610268565b806395d89b411461065a578063a457c2d714610662578063a694fc3a1461068e578063a9059cbb146106ab578063c093dac4146106d757610268565b806370a082311161011557806370a08231146105b3578063715018a6146105d95780637d27d540146105e1578063873c8c011461060757806389be0807146106245780638da5cb5b1461065257610268565b806367d9e8bc1461052a5780636a2acac1146105325780636a3e42b8146105605780636b3383d71461058e5780636dfbabd41461059657610268565b80632e1a7d4d116101ea57806339509351116101ae57806339509351146104a35780633d18b912146104cf578063405ab6b2146104d757806348d9588f146104df5780634edf5b95146104e757806366e997221461050457610268565b80632e1a7d4d1461040c578063313ce5671461042957806336c6847114610447578063375535c61461046d57806338b655861461047557610268565b806318160ddd1161023157806318160ddd1461038e5780631c09690a146103965780631d92a881146103a057806323327ba9146103ce57806323b872dd146103d657610268565b8062dd495e1461026d57806306fdde03146102a5578063095ea7b3146103225780630a5b9361146103625780631615e11d1461036a575b600080fd5b6102936004803603602081101561028357600080fd5b50356001600160a01b03166107aa565b60408051918252519081900360200190f35b6102ad6107bc565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61034e6004803603604081101561033857600080fd5b506001600160a01b038135169060200135610852565b604080519115158252519081900360200190f35b610293610870565b610372610876565b604080516001600160a01b039092168252519081900360200190f35b610293610885565b61039e61088b565b005b610293600480360360408110156103b657600080fd5b506001600160a01b0381358116916020013516610a2c565b610293610a49565b61034e600480360360608110156103ec57600080fd5b506001600160a01b03813581169160208101359091169060400135610a5c565b61039e6004803603602081101561042257600080fd5b5035610ae3565b610431610d3e565b6040805160ff9092168252519081900360200190f35b61039e6004803603602081101561045d57600080fd5b50356001600160a01b0316610d47565b610293610e27565b6102936004803603604081101561048b57600080fd5b506001600160a01b0381358116916020013516610e2d565b61034e600480360360408110156104b957600080fd5b506001600160a01b038135169060200135610eb6565b61039e610f04565b61039e611056565b6102936110d1565b61039e600480360360208110156104fd57600080fd5b50356110d7565b6102936004803603602081101561051a57600080fd5b50356001600160a01b031661117e565b61039e611190565b61039e6004803603604081101561054857600080fd5b506001600160a01b0381358116916020013516611446565b6102936004803603604081101561057657600080fd5b506001600160a01b0381358116916020013516611567565b610293611584565b610372600480360360208110156105ac57600080fd5b503561158a565b610293600480360360208110156105c957600080fd5b50356001600160a01b03166115b1565b61039e6115d0565b610293600480360360208110156105f757600080fd5b50356001600160a01b031661167d565b6103726004803603602081101561061d57600080fd5b503561171a565b61039e6004803603604081101561063a57600080fd5b506001600160a01b0381358116916020013516611727565b6103726117bb565b6102ad6117cf565b61034e6004803603604081101561067857600080fd5b506001600160a01b038135169060200135611830565b61039e600480360360208110156106a457600080fd5b5035611898565b61034e600480360360408110156106c157600080fd5b506001600160a01b038135169060200135611a2e565b6106df611a42565b60408051921515835260208301919091528051918290030190f35b61034e6004803603602081101561071057600080fd5b50356001600160a01b0316611a4a565b61039e6004803603602081101561073657600080fd5b50356001600160a01b0316611a5f565b61039e611b61565b6102936004803603604081101561076457600080fd5b506001600160a01b0381358116916020013516611bd1565b61039e611bfc565b61039e6004803603602081101561079a57600080fd5b50356001600160a01b0316611c17565b600f6020526000908152604090205481565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108485780601f1061081d57610100808354040283529160200191610848565b820191906000526020600020905b81548152906001019060200180831161082b57829003601f168201915b5050505050905090565b600061086661085f611d20565b8484611d24565b5060015b92915050565b60075481565b6006546001600160a01b031681565b60025490565b60005b600b54811015610a295760005b600c54811015610a20576108f5600c82815481106108b557fe5b600091825260209091200154600b80546001600160a01b0390921691859081106108db57fe5b6000918252602090912001546001600160a01b0316611727565b6000610947600c838154811061090757fe5b600091825260209091200154600b80546001600160a01b03909216918690811061092d57fe5b6000918252602090912001546001600160a01b0316610e2d565b90508015610a1757600060106000600c858154811061096257fe5b60009182526020808320909101546001600160a01b031683528201929092526040018120600b80549192918790811061099757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902055600c8054610a179190849081106109cf57fe5b9060005260206000200160009054906101000a90046001600160a01b031682600b86815481106109fb57fe5b6000918252602090912001546001600160a01b03169190611e10565b5060010161089b565b5060010161088e565b50565b601060209081526000928352604080842090915290825290205481565b6000610a5742600854611e62565b905090565b6000610a69848484611e78565b610ad984610a75611d20565b610ad485604051806060016040528060288152602001612795602891396001600160a01b038a16600090815260016020526040812090610ab3611d20565b6001600160a01b031681526020810191909152604001600020549190611fd3565b611d24565b5060019392505050565b33733108ccfd96816f9e663baa0e8c5951d229e8c6da610b028161167d565b6001600160a01b0382166000908152600e6020526040902055610b23610a49565b6009556001600160a01b03821615610b8957610b3f8282610e2d565b6001600160a01b03808416600081815260106020908152604080832094871680845294825280832095909555600e8152848220549282526011815284822093825292909252919020555b60008311610bd2576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b610bdb336115b1565b158015610bf75750336000908152600d602052604090205460ff165b15610ce257336000908152600d60205260408120805460ff191690555b336001600160a01b0316600c8281548110610c2b57fe5b6000918252602090912001546001600160a01b031614610c4d57600101610c14565b600c80546000198101908110610c5f57fe5b600091825260209091200154600c80546001600160a01b039092169183908110610c8557fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600c805480610cbe57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055505b610cec338461206a565b600654610d03906001600160a01b03163385611e10565b60408051848152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a2505050565b60055460ff1690565b610d4f611d20565b60055461010090046001600160a01b03908116911614610da4576040805162461bcd60e51b815260206004820181905260248201526000805160206127bd833981519152604482015290519081900360640190fd5b6001600160a01b038116610df7576040805162461bcd60e51b815260206004820152601560248201527443616e6e6f7420626520616464647265737328302960581b604482015290519081900360640190fd5b600b805480610e0257fe5b600082815260209020810160001990810180546001600160a01b031916905501905550565b60095481565b6001600160a01b038083166000818152601060209081526040808320948616808452948252808320549383526011825280832094835293905291822054610eaf9190610ea990670de0b6b3a764000090610ea390610e9490610e8e8961167d565b90612166565b610e9d896115b1565b906121a8565b90612201565b90612243565b9392505050565b6000610866610ec3611d20565b84610ad48560016000610ed4611d20565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612243565b33733108ccfd96816f9e663baa0e8c5951d229e8c6da610f238161167d565b6001600160a01b0382166000908152600e6020526040902055610f44610a49565b6009556001600160a01b03821615610faa57610f608282610e2d565b6001600160a01b03808416600081815260106020908152604080832094871680845294825280832095909555600e8152848220549282526011815284822093825292909252919020555b6000610fca33733108ccfd96816f9e663baa0e8c5951d229e8c6da610e2d565b9050801561105157336000818152601060209081526040808320733108ccfd96816f9e663baa0e8c5951d229e8c6da845290915281205560065461101a916001600160a01b039091169083611e10565b60408051828152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b505050565b60005b600b54811015610a295760005b600c548110156110c8576110c0600c828154811061108057fe5b600091825260209091200154600b80546001600160a01b0390921691859081106110a657fe5b6000918252602090912001546001600160a01b0316611446565b600101611066565b50600101611059565b600a5481565b6110df611d20565b60055461010090046001600160a01b03908116911614611134576040805162461bcd60e51b815260206004820181905260248201526000805160206127bd833981519152604482015290519081900360640190fd5b80611179576040805162461bcd60e51b815260206004820152601060248201526f43616e6e6f742062652030206461797360801b604482015290519081900360640190fd5b600755565b600e6020526000908152604090205481565b60005b600b54811015610a29576111af6000600b83815481106108db57fe5b600b81815481106111bc57fe5b6000918252602090912001546001600160a01b0316733108ccfd96816f9e663baa0e8c5951d229e8c6da141561127c576112746111f7610885565b600654604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561124257600080fd5b505afa158015611256573d6000803e3d6000fd5b505050506040513d602081101561126c57600080fd5b505190612166565b600a55611308565b600b818154811061128957fe5b60009182526020918290200154604080516370a0823160e01b815230600482015290516001600160a01b03909216926370a0823192602480840193829003018186803b1580156112d857600080fd5b505afa1580156112ec573d6000803e3d6000fd5b505050506040513d602081101561130257600080fd5b5051600a555b600854421061135b57600754600a5461132091612201565b600f6000600b848154811061133157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902055611405565b60085460009061136b9042612166565b905060006113af600f6000600b868154811061138357fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906121a8565b90506113cc600754610ea383600a5461224390919063ffffffff16565b600f6000600b86815481106113dd57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205550505b42600955600a5460408051918252517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9181900360200190a1600101611193565b81816114518161167d565b6001600160a01b0382166000908152600e6020526040902055611472610a49565b6009556001600160a01b038216156114d85761148e8282610e2d565b6001600160a01b03808416600081815260106020908152604080832094871680845294825280832095909555600e8152848220549282526011815284822093825292909252919020555b60006114e48585610e2d565b90508015611560576001600160a01b03808616600090815260106020908152604080832093881680845293909152812055611520908683611e10565b6040805182815290516001600160a01b038716917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b5050505050565b601160209081526000928352604080842090915290825290205481565b60085481565b600c818154811061159757fe5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b0381166000908152602081905260409020545b919050565b6115d8611d20565b60055461010090046001600160a01b0390811691161461162d576040805162461bcd60e51b815260206004820181905260248201526000805160206127bd833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6000611687610885565b6116aa57506001600160a01b0381166000908152600e60205260409020546115cb565b61086a6116fb6116b8610885565b610ea3670de0b6b3a7640000610e9d600f6000896001600160a01b03166001600160a01b0316815260200190815260200160002054610e9d600954610e8e610a49565b6001600160a01b0384166000908152600e602052604090205490612243565b600b818154811061159757fe5b6117308161167d565b6001600160a01b0382166000908152600e6020526040902055611751610a49565b6009556001600160a01b038216156117b75761176d8282610e2d565b6001600160a01b03808416600081815260106020908152604080832094871680845294825280832095909555600e8152848220549282526011815284822093825292909252919020555b5050565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108485780601f1061081d57610100808354040283529160200191610848565b600061086661183d611d20565b84610ad4856040518060600160405280602581526020016128716025913960016000611867611d20565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611fd3565b33733108ccfd96816f9e663baa0e8c5951d229e8c6da6118b78161167d565b6001600160a01b0382166000908152600e60205260409020556118d8610a49565b6009556001600160a01b0382161561193e576118f48282610e2d565b6001600160a01b03808416600081815260106020908152604080832094871680845294825280832095909555600e8152848220549282526011815284822093825292909252919020555b60008311611984576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b61198d336115b1565b1580156119aa5750336000908152600d602052604090205460ff16155b15611a0c57336000818152600d60205260408120805460ff19166001908117909155600c805491820181559091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b03191690911790555b611a16338461229d565b600654611051906001600160a01b031633308661238d565b6000610866611a3b611d20565b8484611e78565b600854600091565b600d6020526000908152604090205460ff1681565b611a67611d20565b60055461010090046001600160a01b03908116911614611abc576040805162461bcd60e51b815260206004820181905260248201526000805160206127bd833981519152604482015290519081900360640190fd5b6001600160a01b038116611b0f576040805162461bcd60e51b815260206004820152601560248201527443616e6e6f7420626520616464647265737328302960581b604482015290519081900360640190fd5b600b80546001810182556000919091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b0392909216919091179055565b611b69611d20565b60055461010090046001600160a01b03908116911614611bbe576040805162461bcd60e51b815260206004820181905260248201526000805160206127bd833981519152604482015290519081900360640190fd5b600754611bcc904290612243565b600855565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611c0d611c08336115b1565b610ae3565b611c15610f04565b565b611c1f611d20565b60055461010090046001600160a01b03908116911614611c74576040805162461bcd60e51b815260206004820181905260248201526000805160206127bd833981519152604482015290519081900360640190fd5b6001600160a01b038116611cb95760405162461bcd60e51b81526004018080602001828103825260268152602001806127066026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b038316611d695760405162461bcd60e51b81526004018080602001828103825260248152602001806128236024913960400191505060405180910390fd5b6001600160a01b038216611dae5760405162461bcd60e51b815260040180806020018281038252602281526020018061272c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526110519084906123ed565b6000818310611e715781610eaf565b5090919050565b6001600160a01b038316611ebd5760405162461bcd60e51b81526004018080602001828103825260258152602001806127fe6025913960400191505060405180910390fd5b6001600160a01b038216611f025760405162461bcd60e51b81526004018080602001828103825260238152602001806126c16023913960400191505060405180910390fd5b611f0d838383611051565b611f4a8160405180606001604052806026815260200161274e602691396001600160a01b0386166000908152602081905260409020549190611fd3565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611f799082612243565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156120625760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561202757818101518382015260200161200f565b50505050905090810190601f1680156120545780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166120af5760405162461bcd60e51b81526004018080602001828103825260218152602001806127dd6021913960400191505060405180910390fd5b6120bb82600083611051565b6120f8816040518060600160405280602281526020016126e4602291396001600160a01b0385166000908152602081905260409020549190611fd3565b6001600160a01b03831660009081526020819052604090205560025461211e9082612166565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610eaf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611fd3565b6000826121b75750600061086a565b828202828482816121c457fe5b0414610eaf5760405162461bcd60e51b81526004018080602001828103825260218152602001806127746021913960400191505060405180910390fd5b6000610eaf83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061249e565b600082820183811015610eaf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166122f8576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61230460008383611051565b6002546123119082612243565b6002556001600160a01b0382166000908152602081905260409020546123379082612243565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526123e79085906123ed565b50505050565b6060612442826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125039092919063ffffffff16565b8051909150156110515780806020019051602081101561246157600080fd5b50516110515760405162461bcd60e51b815260040180806020018281038252602a815260200180612847602a913960400191505060405180910390fd5b600081836124ed5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561202757818101518382015260200161200f565b5060008385816124f957fe5b0495945050505050565b6060612512848460008561251a565b949350505050565b606061252585612687565b612576576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106125b55780518252601f199092019160209182019101612596565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612617576040519150601f19603f3d011682016040523d82523d6000602084013e61261c565b606091505b509150915081156126305791506125129050565b8051156126405780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561202757818101518382015260200161200f565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061251257505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220189643d8cb7947bce3efa3913c5a2c533b2099f34b9007c9d7df8323fb8cb50664736f6c634300060c0033
Deployed Bytecode Sourcemap
31650:8909:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32404:57;;;;;;;;;;;;;;;;-1:-1:-1;32404:57:0;-1:-1:-1;;;;;32404:57:0;;:::i;:::-;;;;;;;;;;;;;;;;19573:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21679:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21679:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;31966:45;;;:::i;31886:71::-;;;:::i;:::-;;;;-1:-1:-1;;;;;31886:71:0;;;;;;;;;;;;;;20648:100;;;:::i;38238:699::-;;;:::i;:::-;;32470:84;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32470:84:0;;;;;;;;;;:::i;35019:153::-;;;:::i;22330:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22330:321:0;;;;;;;;;;;;;;;;;:::i;36459:797::-;;;;;;;;;;;;;;;;-1:-1:-1;36459:797:0;;:::i;20500:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33188:193;;;;;;;;;;;;;;;;-1:-1:-1;33188:193:0;-1:-1:-1;;;;;33188:193:0;;:::i;32068:42::-;;;:::i;35627:314::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35627:314:0;;;;;;;;;;:::i;23060:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23060:218:0;;;;;;;;:::i;37367:465::-;;;:::i;38949:309::-;;;:::i;32117:35::-;;;:::i;33462:199::-;;;;;;;;;;;;;;;;-1:-1:-1;33462:199:0;;:::i;32328:69::-;;;;;;;;;;;;;;;;-1:-1:-1;32328:69:0;-1:-1:-1;;;;;32328:69:0;;:::i;39270:1145::-;;;:::i;37844:386::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37844:386:0;;;;;;;;;;:::i;32561:90::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32561:90:0;;;;;;;;;;:::i;32018:43::-;;;:::i;32201:47::-;;;;;;;;;;;;;;;;-1:-1:-1;32201:47:0;;:::i;20811:119::-;;;;;;;;;;;;;;;;-1:-1:-1;20811:119:0;-1:-1:-1;;;;;20811:119:0;;:::i;15317:148::-;;;:::i;35180:433::-;;;;;;;;;;;;;;;;-1:-1:-1;35180:433:0;-1:-1:-1;;;;;35180:433:0;;:::i;32161:33::-;;;;;;;;;;;;;;;;-1:-1:-1;32161:33:0;;:::i;34420:513::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34420:513:0;;;;;;;;;;:::i;14675:79::-;;;:::i;19775:87::-;;;:::i;23781:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23781:269:0;;;;;;;;:::i;35949:502::-;;;;;;;;;;;;;;;;-1:-1:-1;35949:502:0;;:::i;21143:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21143:175:0;;;;;;;;:::i;40423:133::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;32261:58;;;;;;;;;;;;;;;;-1:-1:-1;32261:58:0;-1:-1:-1;;;;;32261:58:0;;:::i;32968:212::-;;;;;;;;;;;;;;;;-1:-1:-1;32968:212:0;-1:-1:-1;;;;;32968:212:0;;:::i;33669:136::-;;;:::i;21381:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21381:151:0;;;;;;;;;;:::i;37264:95::-;;;:::i;15620:244::-;;;;;;;;;;;;;;;;-1:-1:-1;15620:244:0;-1:-1:-1;;;;;15620:244:0;;:::i;32404:57::-;;;;;;;;;;;;;:::o;19573:83::-;19643:5;19636:12;;;;;;;;-1:-1:-1;;19636:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19610:13;;19636:12;;19643:5;;19636:12;;19643:5;19636:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19573:83;:::o;21679:169::-;21762:4;21779:39;21788:12;:10;:12::i;:::-;21802:7;21811:6;21779:8;:39::i;:::-;-1:-1:-1;21836:4:0;21679:169;;;;;:::o;31966:45::-;;;;:::o;31886:71::-;;;-1:-1:-1;;;;;31886:71:0;;:::o;20648:100::-;20728:12;;20648:100;:::o;38238:699::-;38292:6;38288:642;38307:16;:23;38304:26;;38288:642;;;38355:6;38351:568;38370:30;:37;38367:40;;38351:568;;;38432:88;38465:30;38496:1;38465:33;;;;;;;;;;;;;;;;;;38500:16;:19;;-1:-1:-1;;;;;38465:33:0;;;;38517:1;;38500:19;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38500:19:0;38432:32;:88::i;:::-;38539:14;38556:73;38574:30;38605:1;38574:33;;;;;;;;;;;;;;;;;;38609:16;:19;;-1:-1:-1;;;;;38574:33:0;;;;38626:1;;38609:19;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38609:19:0;38556:17;:73::i;:::-;38539:90;-1:-1:-1;38652:10:0;;38648:256;;38777:1;38687:31;:66;38719:30;38750:1;38719:33;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38719:33:0;38687:66;;;;;;;;;;;;38754:16;:19;;38687:66;;38719:33;38771:1;;38754:19;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38754:19:0;38687:87;;;;;;;;;;;;:91;38842:30;:33;;38801:83;;38842:30;38873:1;;38842:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38842:33:0;38877:6;38808:16;38825:1;38808:19;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38808:19:0;;38801:83;:40;:83::i;:::-;-1:-1:-1;38409:3:0;;38351:568;;;-1:-1:-1;38332:3:0;;38288:642;;;;38238:699::o;32470:84::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;35019:153::-;35086:7;35113:51;35122:15;35139:24;;35113:8;:51::i;:::-;35106:58;;35019:153;:::o;22330:321::-;22436:4;22453:36;22463:6;22471:9;22482:6;22453:9;:36::i;:::-;22500:121;22509:6;22517:12;:10;:12::i;:::-;22531:89;22569:6;22531:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22531:19:0;;;;;;:11;:19;;;;;;22551:12;:10;:12::i;:::-;-1:-1:-1;;;;;22531:33:0;;;;;;;;;;;;-1:-1:-1;22531:33:0;;;:89;:37;:89::i;:::-;22500:8;:121::i;:::-;-1:-1:-1;22639:4:0;22330:321;;;;;:::o;36459:797::-;36524:10;36536:42;34023:32;34049:5;34023:25;:32::i;:::-;-1:-1:-1;;;;;33979:41:0;;;;;;:34;:41;;;;;:76;34096:37;:35;:37::i;:::-;34066:27;:67;-1:-1:-1;;;;;34148:21:0;;;34144:249;;34236:33;34254:7;34263:5;34236:17;:33::i;:::-;-1:-1:-1;;;;;34186:40:0;;;;;;;:31;:40;;;;;;;;:47;;;;;;;;;;;;:83;;;;34340:34;:41;;;;;;34284:46;;;:37;:46;;;;;:53;;;;;;;;;;:97;34144:249;36608:1:::1;36599:6;:10;36591:40;;;::::0;;-1:-1:-1;;;36591:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;36591:40:0;;;;;;;;;;;;;::::1;;36648:21;36658:10;36648:9;:21::i;:::-;:26:::0;:68;::::1;;;-1:-1:-1::0;36705:10:0::1;36678:38;::::0;;;:26:::1;:38;::::0;;;;;::::1;;36648:68;36644:474;;;36760:10;36774:5;36733:38:::0;;;:26:::1;:38;::::0;;;;:46;;-1:-1:-1;;36733:46:0::1;::::0;;36826:102:::1;36874:10;-1:-1:-1::0;;;;;36833:51:0::1;:30;36864:5;36833:37;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;36833:37:0::1;:51;36826:102;;36905:7;;36826:102;;;36982:30;37013:37:::0;;-1:-1:-1;;37013:41:0;;;36982:73;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;36942:30:::1;:37:::0;;-1:-1:-1;;;;;36982:73:0;;::::1;::::0;36973:5;;36942:37;::::1;;;;;;;;;;;;;:113;;;;;-1:-1:-1::0;;;;;36942:113:0::1;;;;;-1:-1:-1::0;;;;;36942:113:0::1;;;;;;37070:30;:36;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;37070:36:0;;;;;-1:-1:-1;;;;;;37070:36:0::1;::::0;;;;;-1:-1:-1;36644:474:0::1;37130:25;37136:10;37148:6;37130:5;:25::i;:::-;37166:4;::::0;:37:::1;::::0;-1:-1:-1;;;;;37166:4:0::1;37184:10;37196:6:::0;37166:17:::1;:37::i;:::-;37219:29;::::0;;;;;;;37229:10:::1;::::0;37219:29:::1;::::0;;;;;::::1;::::0;;::::1;36459:797:::0;;;:::o;20500:83::-;20566:9;;;;20500:83;:::o;33188:193::-;14897:12;:10;:12::i;:::-;14887:6;;;;;-1:-1:-1;;;;;14887:6:0;;;:22;;;14879:67;;;;;-1:-1:-1;;;14879:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14879:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33281:31:0;::::1;33273:65;;;::::0;;-1:-1:-1;;;33273:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;33273:65:0;;;;;;;;;;;;;::::1;;33351:16;:22;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33351:22:0;;;;;-1:-1:-1;;;;;;33351:22:0::1;::::0;;;;;-1:-1:-1;33188:193:0:o;32068:42::-;;;;:::o;35627:314::-;-1:-1:-1;;;;;35883:40:0;;;35706:7;35883:40;;;:31;:40;;;;;;;;:47;;;;;;;;;;;;;35803:46;;;:37;:46;;;;;:53;;;;;;;;;;35733:198;;35883:47;35733:145;;35873:4;;35733:135;;35766:91;;:32;35924:5;35766:25;:32::i;:::-;:36;;:91::i;:::-;35733:18;35743:7;35733:9;:18::i;:::-;:22;;:135::i;:::-;:139;;:145::i;:::-;:149;;:198::i;:::-;35726:205;35627:314;-1:-1:-1;;;35627:314:0:o;23060:218::-;23148:4;23165:83;23174:12;:10;:12::i;:::-;23188:7;23197:50;23236:10;23197:11;:25;23209:12;:10;:12::i;:::-;-1:-1:-1;;;;;23197:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23197:25:0;;;:34;;;;;;;;;;;:38;:50::i;37367:465::-;37419:10;37431:42;34023:32;34049:5;34023:25;:32::i;:::-;-1:-1:-1;;;;;33979:41:0;;;;;;:34;:41;;;;;:76;34096:37;:35;:37::i;:::-;34066:27;:67;-1:-1:-1;;;;;34148:21:0;;;34144:249;;34236:33;34254:7;34263:5;34236:17;:33::i;:::-;-1:-1:-1;;;;;34186:40:0;;;;;;;:31;:40;;;;;;;;:47;;;;;;;;;;;;:83;;;;34340:34;:41;;;;;;34284:46;;;:37;:46;;;;;:53;;;;;;;;;;:97;34144:249;37488:14:::1;37505:73;37523:10;37535:42;37505:17;:73::i;:::-;37488:90:::0;-1:-1:-1;37593:10:0;;37589:236:::1;;37652:10;37710:1;37620:43:::0;;;:31:::1;:43;::::0;;;;;;;37664:42:::1;37620:87:::0;;;;;;;:91;37726:4:::1;::::0;:37:::1;::::0;-1:-1:-1;;;;;37726:4:0;;::::1;::::0;37756:6;37726:17:::1;:37::i;:::-;37783:30;::::0;;;;;;;37794:10:::1;::::0;37783:30:::1;::::0;;;;;::::1;::::0;;::::1;37589:236;34403:1;37367:465:::0;;:::o;38949:309::-;39011:6;39007:244;39026:16;:23;39023:26;;39007:244;;;39074:6;39070:170;39089:30;:37;39086:40;;39070:170;;;39151:73;39169:30;39200:1;39169:33;;;;;;;;;;;;;;;;;;39204:16;:19;;-1:-1:-1;;;;;39169:33:0;;;;39221:1;;39204:19;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39204:19:0;39151:17;:73::i;:::-;39128:3;;39070:170;;;-1:-1:-1;39051:3:0;;39007:244;;32117:35;;;;:::o;33462:199::-;14897:12;:10;:12::i;:::-;14887:6;;;;;-1:-1:-1;;;;;14887:6:0;;;:22;;;14879:67;;;;;-1:-1:-1;;;14879:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14879:67:0;;;;;;;;;;;;;;;33552:25;33544:54:::1;;;::::0;;-1:-1:-1;;;33544:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;33544:54:0;;;;;;;;;;;;;::::1;;33611:19;:42:::0;33462:199::o;32328:69::-;;;;;;;;;;;;;:::o;39270:1145::-;39337:6;39333:1075;39352:16;:23;39349:26;;39333:1075;;;39396:65;39437:1;39441:16;39458:1;39441:19;;;;;;;39396:65;39480:16;39497:1;39480:19;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39480:19:0;39503:42;39480:65;39476:293;;;39589:48;39623:13;:11;:13::i;:::-;39589:4;;:29;;;-1:-1:-1;;;39589:29:0;;39612:4;39589:29;;;;;;-1:-1:-1;;;;;39589:4:0;;;;:14;;:29;;;;;;;;;;;;;;;:4;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39589:29:0;;:33;:48::i;:::-;39566:20;:71;39476:293;;;39708:16;39725:1;39708:19;;;;;;;;;;;;;;;;;;;39701:52;;;-1:-1:-1;;;39701:52:0;;39747:4;39701:52;;;;;;-1:-1:-1;;;;;39708:19:0;;;;39701:37;;:52;;;;;;;;;;39708:19;39701:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39701:52:0;39678:20;:75;39476:293;39806:24;;39787:15;:43;39783:501;;39922:19;;39897:20;;:45;;:24;:45::i;:::-;39851:22;:43;39874:16;39891:1;39874:19;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39874:19:0;39851:43;;;;;;;;;;;;:91;39783:501;;;40003:24;;39983:17;;40003:45;;40032:15;40003:28;:45::i;:::-;39983:65;;40067:16;40086:58;40100:22;:43;40123:16;40140:1;40123:19;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40123:19:0;40100:43;;;;;;;;;;;;;40086:9;;:13;:58::i;:::-;40067:77;;40209:59;40248:19;;40209:34;40234:8;40209:20;;:24;;:34;;;;:::i;:59::-;40163:22;:43;40186:16;40203:1;40186:19;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40186:19:0;40163:43;;;;;;;;;;;;:105;-1:-1:-1;;39783:501:0;40328:15;40298:27;:45;40375:20;;40363:33;;;;;;;;;;;;;;;;39377:3;;39333:1075;;37844:386;37934:7;37943:5;34023:32;34049:5;34023:25;:32::i;:::-;-1:-1:-1;;;;;33979:41:0;;;;;;:34;:41;;;;;:76;34096:37;:35;:37::i;:::-;34066:27;:67;-1:-1:-1;;;;;34148:21:0;;;34144:249;;34236:33;34254:7;34263:5;34236:17;:33::i;:::-;-1:-1:-1;;;;;34186:40:0;;;;;;;:31;:40;;;;;;;;:47;;;;;;;;;;;;:83;;;;34340:34;:41;;;;;;34284:46;;;:37;:46;;;;;:53;;;;;;;;;;:97;34144:249;37963:14:::1;37980:33;37998:7;38007:5;37980:17;:33::i;:::-;37963:50:::0;-1:-1:-1;38028:10:0;;38024:199:::1;;-1:-1:-1::0;;;;;38055:40:0;;::::1;38105:1;38055:40:::0;;;:31:::1;:40;::::0;;;;;;;:47;;::::1;::::0;;;;;;;;;:51;38121:43:::1;::::0;38087:7;38157:6;38121:26:::1;:43::i;:::-;38184:27;::::0;;;;;;;-1:-1:-1;;;;;38184:27:0;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;38024:199;34403:1;37844:386:::0;;;;:::o;32561:90::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;32018:43::-;;;;:::o;32201:47::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32201:47:0;;-1:-1:-1;32201:47:0;:::o;20811:119::-;-1:-1:-1;;;;;20904:18:0;;20877:7;20904:18;;;;;;;;;;;20811:119;;;;:::o;15317:148::-;14897:12;:10;:12::i;:::-;14887:6;;;;;-1:-1:-1;;;;;14887:6:0;;;:22;;;14879:67;;;;;-1:-1:-1;;;14879:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14879:67:0;;;;;;;;;;;;;;;15408:6:::1;::::0;15387:40:::1;::::0;15424:1:::1;::::0;15408:6:::1;::::0;::::1;-1:-1:-1::0;;;;;15408:6:0::1;::::0;15387:40:::1;::::0;15424:1;;15387:40:::1;15438:6;:19:::0;;-1:-1:-1;;;;;;15438:19:0::1;::::0;;15317:148::o;35180:433::-;35250:7;35276:13;:11;:13::i;:::-;35272:99;;-1:-1:-1;;;;;;35318:41:0;;;;;;:34;:41;;;;;;35311:48;;35272:99;35390:201;35446:134;35566:13;:11;:13::i;:::-;35446:115;35556:4;35446:105;35521:22;:29;35544:5;-1:-1:-1;;;;;35521:29:0;-1:-1:-1;;;;;35521:29:0;;;;;;;;;;;;;35446:70;35488:27;;35446:37;:35;:37::i;:134::-;-1:-1:-1;;;;;35390:41:0;;;;;;:34;:41;;;;;;;:45;:201::i;32161:33::-;;;;;;;;;;34420:513;34556:32;34582:5;34556:25;:32::i;:::-;-1:-1:-1;;;;;34512:41:0;;;;;;:34;:41;;;;;:76;34629:37;:35;:37::i;:::-;34599:27;:67;-1:-1:-1;;;;;34681:21:0;;;34677:249;;34769:33;34787:7;34796:5;34769:17;:33::i;:::-;-1:-1:-1;;;;;34719:40:0;;;;;;;:31;:40;;;;;;;;:47;;;;;;;;;;;;:83;;;;34873:34;:41;;;;;;34817:46;;;:37;:46;;;;;:53;;;;;;;;;;:97;34677:249;34420:513;;:::o;14675:79::-;14740:6;;;;;-1:-1:-1;;;;;14740:6:0;;14675:79::o;19775:87::-;19847:7;19840:14;;;;;;;;-1:-1:-1;;19840:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19814:13;;19840:14;;19847:7;;19840:14;;19847:7;19840:14;;;;;;;;;;;;;;;;;;;;;;;;23781:269;23874:4;23891:129;23900:12;:10;:12::i;:::-;23914:7;23923:96;23962:15;23923:96;;;;;;;;;;;;;;;;;:11;:25;23935:12;:10;:12::i;:::-;-1:-1:-1;;;;;23923:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23923:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;35949:502::-;36011:10;36023:42;34023:32;34049:5;34023:25;:32::i;:::-;-1:-1:-1;;;;;33979:41:0;;;;;;:34;:41;;;;;:76;34096:37;:35;:37::i;:::-;34066:27;:67;-1:-1:-1;;;;;34148:21:0;;;34144:249;;34236:33;34254:7;34263:5;34236:17;:33::i;:::-;-1:-1:-1;;;;;34186:40:0;;;;;;;:31;:40;;;;;;;;:47;;;;;;;;;;;;:83;;;;34340:34;:41;;;;;;34284:46;;;:37;:46;;;;;:53;;;;;;;;;;:97;34144:249;36095:1:::1;36086:6;:10;36078:37;;;::::0;;-1:-1:-1;;;36078:37:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;36078:37:0;;;;;;;;;;;;;::::1;;36132:21;36142:10;36132:9;:21::i;:::-;:26:::0;:69;::::1;;;-1:-1:-1::0;36190:10:0::1;36163:38;::::0;;;:26:::1;:38;::::0;;;;;::::1;;36162:39;36132:69;36128:209;;;36245:10;36218:38;::::0;;;:26:::1;:38;::::0;;;;:45;;-1:-1:-1;;36218:45:0::1;36259:4;36218:45:::0;;::::1;::::0;;;36278:30:::1;:47:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;36278:47:0::1;::::0;;::::1;::::0;;36128:209:::1;36349:25;36355:10;36367:6;36349:5;:25::i;:::-;36385:4;::::0;:56:::1;::::0;-1:-1:-1;;;;;36385:4:0::1;36407:10;36427:4;36434:6:::0;36385:21:::1;:56::i;21143:175::-:0;21229:4;21246:42;21256:12;:10;:12::i;:::-;21270:9;21281:6;21246:9;:42::i;40423:133::-;40523:24;;40482:4;40423:133;:::o;32261:58::-;;;;;;;;;;;;;;;:::o;32968:212::-;14897:12;:10;:12::i;:::-;14887:6;;;;;-1:-1:-1;;;;;14887:6:0;;;:22;;;14879:67;;;;;-1:-1:-1;;;14879:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14879:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33062:31:0;::::1;33054:65;;;::::0;;-1:-1:-1;;;33054:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;33054:65:0;;;;;;;;;;;;;::::1;;33132:16;:40:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;33132:40:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;33132:40:0::1;-1:-1:-1::0;;;;;33132:40:0;;;::::1;::::0;;;::::1;::::0;;32968:212::o;33669:136::-;14897:12;:10;:12::i;:::-;14887:6;;;;;-1:-1:-1;;;;;14887:6:0;;;:22;;;14879:67;;;;;-1:-1:-1;;;14879:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14879:67:0;;;;;;;;;;;;;;;33777:19:::1;::::0;33757:40:::1;::::0;:15:::1;::::0;:19:::1;:40::i;:::-;33730:24;:67:::0;33669:136::o;21381:151::-;-1:-1:-1;;;;;21497:18:0;;;21470:7;21497:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21381:151::o;37264:95::-;37298:31;37307:21;37317:10;37307:9;:21::i;:::-;37298:8;:31::i;:::-;37340:11;:9;:11::i;:::-;37264:95::o;15620:244::-;14897:12;:10;:12::i;:::-;14887:6;;;;;-1:-1:-1;;;;;14887:6:0;;;:22;;;14879:67;;;;;-1:-1:-1;;;14879:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14879:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15709:22:0;::::1;15701:73;;;;-1:-1:-1::0;;;15701:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15811:6;::::0;15790:38:::1;::::0;-1:-1:-1;;;;;15790:38:0;;::::1;::::0;15811:6:::1;::::0;::::1;;::::0;15790:38:::1;::::0;;;::::1;15839:6;:17:::0;;-1:-1:-1;;;;;15839:17:0;;::::1;;;-1:-1:-1::0;;;;;;15839:17:0;;::::1;::::0;;;::::1;::::0;;15620:244::o;13228:106::-;13316:10;13228:106;:::o;26928:346::-;-1:-1:-1;;;;;27030:19:0;;27022:68;;;;-1:-1:-1;;;27022:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27109:21:0;;27101:68;;;;-1:-1:-1;;;27101:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27182:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;27234:32;;;;;;;;;;;;;;;;;26928:346;;;:::o;28517:177::-;28627:58;;;-1:-1:-1;;;;;28627:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28627:58:0;-1:-1:-1;;;28627:58:0;;;28600:86;;28620:5;;28600:19;:86::i;601:106::-;659:7;690:1;686;:5;:13;;698:1;686:13;;;-1:-1:-1;694:1:0;;601:106;-1:-1:-1;601:106:0:o;24540:539::-;-1:-1:-1;;;;;24646:20:0;;24638:70;;;;-1:-1:-1;;;24638:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24727:23:0;;24719:71;;;;-1:-1:-1;;;24719:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24803:47;24824:6;24832:9;24843:6;24803:20;:47::i;:::-;24883:71;24905:6;24883:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24883:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;24863:17:0;;;:9;:17;;;;;;;;;;;:91;;;;24988:20;;;;;;;:32;;25013:6;24988:24;:32::i;:::-;-1:-1:-1;;;;;24965:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;25036:35;;;;;;;24965:20;;25036:35;;;;;;;;;;;;;24540:539;;;:::o;9036:192::-;9122:7;9158:12;9150:6;;;;9142:29;;;;-1:-1:-1;;;9142:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9194:5:0;;;9036:192::o;26072:418::-;-1:-1:-1;;;;;26156:21:0;;26148:67;;;;-1:-1:-1;;;26148:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26228:49;26249:7;26266:1;26270:6;26228:20;:49::i;:::-;26311:68;26334:6;26311:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26311:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;26290:18:0;;:9;:18;;;;;;;;;;:89;26405:12;;:24;;26422:6;26405:16;:24::i;:::-;26390:12;:39;26445:37;;;;;;;;26471:1;;-1:-1:-1;;;;;26445:37:0;;;;;;;;;;;;26072:418;;:::o;8597:136::-;8655:7;8682:43;8686:1;8689;8682:43;;;;;;;;;;;;;;;;;:3;:43::i;9487:471::-;9545:7;9790:6;9786:47;;-1:-1:-1;9820:1:0;9813:8;;9786:47;9857:5;;;9861:1;9857;:5;:1;9881:5;;;;;:10;9873:56;;;;-1:-1:-1;;;9873:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10434:132;10492:7;10519:39;10523:1;10526;10519:39;;;;;;;;;;;;;;;;;:3;:39::i;8133:181::-;8191:7;8223:5;;;8247:6;;;;8239:46;;;;;-1:-1:-1;;;8239:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;25361:378;-1:-1:-1;;;;;25445:21:0;;25437:65;;;;;-1:-1:-1;;;25437:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25515:49;25544:1;25548:7;25557:6;25515:20;:49::i;:::-;25592:12;;:24;;25609:6;25592:16;:24::i;:::-;25577:12;:39;-1:-1:-1;;;;;25648:18:0;;:9;:18;;;;;;;;;;;:30;;25671:6;25648:22;:30::i;:::-;-1:-1:-1;;;;;25627:18:0;;:9;:18;;;;;;;;;;;:51;;;;25694:37;;;;;;;25627:18;;:9;;25694:37;;;;;;;;;;25361:378;;:::o;28702:205::-;28830:68;;;-1:-1:-1;;;;;28830:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28830:68:0;-1:-1:-1;;;28830:68:0;;;28803:96;;28823:5;;28803:19;:96::i;:::-;28702:205;;;;:::o;30822:761::-;31246:23;31272:69;31300:4;31272:69;;;;;;;;;;;;;;;;;31280:5;-1:-1:-1;;;;;31272:27:0;;;:69;;;;;:::i;:::-;31356:17;;31246:95;;-1:-1:-1;31356:21:0;31352:224;;31498:10;31487:30;;;;;;;;;;;;;;;-1:-1:-1;31487:30:0;31479:85;;;;-1:-1:-1;;;31479:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11062:278;11148:7;11183:12;11176:5;11168:28;;;;-1:-1:-1;;;11168:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11207:9;11223:1;11219;:5;;;;;;;11062:278;-1:-1:-1;;;;;11062:278:0:o;4849:196::-;4952:12;4984:53;5007:6;5015:4;5021:1;5024:12;4984:22;:53::i;:::-;4977:60;4849:196;-1:-1:-1;;;;4849:196:0:o;6226:979::-;6356:12;6389:18;6400:6;6389:10;:18::i;:::-;6381:60;;;;;-1:-1:-1;;;6381:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6515:12;6529:23;6556:6;-1:-1:-1;;;;;6556:11:0;6576:8;6587:4;6556:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6556:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6514:78;;;;6607:7;6603:595;;;6638:10;-1:-1:-1;6631:17:0;;-1:-1:-1;6631:17:0;6603:595;6752:17;;:21;6748:439;;7015:10;7009:17;7076:15;7063:10;7059:2;7055:19;7048:44;6963:148;7151:20;;-1:-1:-1;;;7151:20:0;;;;;;;;;;;;;;;;;7158:12;;7151:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1734:619;1794:4;2262:20;;2105:66;2302:23;;;;;;:42;;-1:-1:-1;;2329:15:0;;;2294:51;-1:-1:-1;;1734:619:0:o
Swarm Source
ipfs://189643d8cb7947bce3efa3913c5a2c533b2099f34b9007c9d7df8323fb8cb506
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.65
Net Worth in ETH
0.000301
Token Allocations
DARK
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $0.00 | 2.6317 | $0.00 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.